123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- <template>
- <div>
- <div class="sty">
- <el-page-header @back="goBack" content="对账历史记录"> </el-page-header>
- </div>
- <el-divider></el-divider>
- <!-- 筛选条件 -->
- <div>
- <el-form
- ref="searchForm"
- :model="searchForm"
- label-width="100px"
- size="small"
- label-position="left"
- >
- <el-row :gutter="20">
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="经销商名称" prop="customerId">
- <el-select
- v-model="searchForm.customerId"
- class="selectStyle"
- placeholder="请选择"
- filterable
- @change="changeFn"
- >
- <el-option
- v-for="(v, i) in customerList"
- :key="i"
- :label="v.name"
- :value="v.id"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="钱包" prop="customerWalletId">
- <el-select
- v-model="searchForm.customerWalletId"
- class="selectStyle"
- placeholder="请选择"
- >
- <el-option
- v-for="(v, i) in walletList"
- :key="i"
- :label="v.customerWalletName"
- :value="v.customerWalletId"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="单据号" prop="billNo">
- <el-input
- v-model="searchForm.billNo"
- placeholder="请输入"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="开始时间" prop="startTime">
- <el-date-picker
- class="selectStyle"
- v-model="searchForm.startTime"
- placeholder="选择日期"
- type="datetime"
- default-time="00:00:00"
- value-format="yyyy-MM-dd HH:mm:ss"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="结束时间" prop="endTime">
- <el-date-picker
- class="selectStyle"
- v-model="searchForm.endTime"
- placeholder="选择日期"
- type="datetime"
- default-time="23:59:59"
- value-format="yyyy-MM-dd HH:mm:ss"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :lg="18">
- <el-form-item label="" class="fr">
- <el-button size="small" @click="clearFn">清空</el-button>
- <el-button size="small" type="primary" @click="searchFn"
- >搜索</el-button
- >
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </div>
- <!-- 按钮 -->
- <div class="btn-group clearfix">
- <div class="fr">
- <el-button type="primary" size="small">导出</el-button>
- </div>
- </div>
- <!-- 列表 -->
- <div class="mymain-container">
- <div class="table">
- <el-table
- v-loading="listLoading"
- :data="dataList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- >
- <el-table-column
- align="center"
- label="序号"
- type="index"
- width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="月份"
- prop="month"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="对账状态"
- prop="isReconciliation"
- min-width="160"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <el-tag type="success" v-if="scope.row.isReconciliation == true"
- >已对账</el-tag
- >
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="客户编码"
- prop="customerCode"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="客户名称"
- prop="customerName"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="部门"
- prop=""
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="现金钱包类型"
- prop="walletName"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="单据类型"
- prop="billType"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="单据号"
- prop="billNo"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="单据日期"
- prop="theTime"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="收付款金额"
- prop="amount"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="发货金额"
- prop=""
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="备注"
- prop="remark"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- </el-table>
- </div>
- <!-- 分页 -->
- <div class="fr">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-sizes="[10, 20, 30, 50]"
- :page-size="10"
- layout="total, sizes, prev, pager, next, jumper"
- :total="listTotal"
- >
- </el-pagination>
- </div>
- </div>
- </div>
- </template>
- <script>
- import {
- getFinanceStandingBookList,
- getCustomerList,
- getWalletCustomerList,
- } from "@/api/finance/account_list";
- export default {
- data() {
- return {
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- dataList: [], // 列表数据
- searchForm: {
- customerId: "",
- customerWalletId: "",
- billNo: "",
- startTime: "",
- endTime: "",
- }, //搜索表单
- listLoading: false, // 列表加载loading
- customerList: [],
- walletList: [],
- };
- },
- created() {
- this.getDataList({
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- isReconciliation: true,
- });
- this.getCustomerDataList({
- pageSize: -1,
- pageNum: 1,
- });
- },
- methods: {
- //清空
- clearFn() {
- this.$refs.searchForm.resetFields();
- },
- //搜索
- searchFn() {
- this.getDataList({
- ...this.searchForm,
- pageSize: this.pageSize,
- pageNum: this.currentPage,
- isReconciliation: false,
- });
- },
- //改变经销商
- async changeFn(v) {
- this.searchForm.customerWalletId = "";
- let res = await getWalletCustomerList({ customerId: v });
- this.walletList = res.data;
- },
- //获取经销商数据
- async getCustomerDataList(data) {
- const res = await getCustomerList(data);
- this.customerList = res.data.records;
- },
- // 更改每页数量
- handleSizeChange(val) {
- this.pageSize = val;
- this.currentPage = 1;
- this.getDataList({
- pageNum: this.currentPage,
- pageSize: this.pageSize,
- isReconciliation: true,
- });
- },
- // 更改当前页
- handleCurrentChange(val) {
- this.currentPage = val;
- this.getDataList({
- pageNum: this.currentPage,
- pageSize: this.pageSize,
- isReconciliation: true,
- });
- },
- //获取列表
- async getDataList(data) {
- let res = await getFinanceStandingBookList(data);
- this.dataList = res.data.records;
- this.listTotal = res.data.total;
- },
- goBack() {
- this.$parent.showReconciliation = true;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .selectStyle {
- width: 100%;
- }
- </style>
|