123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- <template>
- <div>
- <a-card size="small" :bordered="false" class="searchBoxNormal">
- <!-- 搜索条件 -->
- <div ref="tableSearch" class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="经销商名称/商户别名">
- <a-input id="accountStatementBill-dealerName" v-model.trim="queryParam.nameLike" allowClear placeholder="请输入经销商名称/商户别名"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="区域">
- <subarea id="accountStatementBill-subarea" ref="subarea" @change="subareaChange"></subarea>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="商户级别">
- <v-select code="DEALER_LEVEL" id="accountStatementBill-dealerLevel" v-model="queryParam.dealerLevel" allowClear placeholder="请选择商户级别"></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="商户类型">
- <dealerType id="accountStatementBill-dealerType" changeOnSelect v-model="dealerType" @change="getDealerType" allowClear></dealertype>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="客服">
- <customerService ref="customerName" id="matchSendOutOrderList-bizUserSn" v-model="queryParam.bizUserSn"></customerService>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="财务编码">
- <a-input id="accountStatementBill-bookNo" v-model.trim="queryParam.kdMidCustomerFnumber" allowClear placeholder="请输入财务编码"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
- <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="accountStatementBill-refresh">查询</a-button>
- <a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="accountStatementBill-reset">重置</a-button>
- <a-button
- style="margin-left: 10px"
- type="primary"
- id="conFrontModal-export"
- class="button-warning"
- @click="handleExport"
- :disabled="disabled"
- :loading="exportLoading"
- >导出</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- </a-card>
- <a-card size="small" :bordered="false" class="accountStatementBill-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 列表 -->
- <s-table
- class="sTable fixPagination"
- ref="table"
- :style="{ height: tableHeight+80+'px' }"
- size="small"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ y: tableHeight }"
- :pageSize="30"
- :defaultLoadData="false"
- bordered>
- <template slot="totalAmount" slot-scope="text, record">
- <span v-if="$hasPermissions('B_fc_detail')" class="link-bule" @click="handleDetail(record)">{{ record.totalAmount }}</span>
- <span v-else>{{ record.totalAmount }}</span>
- </template>
- <template slot="dealerType" slot-scope="text, record">
- {{ record.dealerTypeName1 }}>{{ record.dealerTypeName2 }}
- </template>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <div>
- <a-button
- size="small"
- type="link"
- class="button-info"
- @click="handleAdd(record)"
- >
- 创建对账单
- </a-button>
- </div>
- </template>
- </s-table>
- </a-spin>
- </a-card>
- <baseModal v-drag ref="baseModal" :show="openModal" @cancel="openModal=false" @refashData="$refs.table.refresh()"></baseModal>
- </div>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import moment from 'moment'
- import { STable, VSelect } from '@/components'
- import { hdExportExcel } from '@/libs/exportExcel'
- import subarea from '@/views/common/subarea.js'
- import dealerType from '@/views/common/dealerType.js'
- import customerService from '@/views/common/customerService.vue'
- import baseModal from './baseModal.vue'
- import { verifyAccountBalanceQueryPage, verifyAccountBalanceExport } from '@/api/verifyAccountChange.js'
- export default {
- name: 'AccountStatementBillList',
- mixins: [commonMixin],
- components: { STable, VSelect, subarea, dealerType, customerService, baseModal },
- data () {
- return {
- spinning: false,
- exportLoading: false,
- tableHeight: 0,
- openModal: false,
- dealerType: [], // 商户类型
- queryParam: { // 查询条件
- nameLike: '', // 经销商名称/别名
- dealerType1: undefined, // 商户类型
- dealerType2: undefined, // 商户类型
- dealerLevel: null, // 商户级别
- subareaSn: undefined, // 区域
- subareaAreaSn: undefined, // 分区
- bizUserSn: undefined, // 客服
- kdMidCustomerFnumber: '' // 财务编码
- },
- disabled: false, // 查询、重置按钮是否可操作
- advanced: true,
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- const params = Object.assign(parameter, this.queryParam)
- return verifyAccountBalanceQueryPage(params).then(res => {
- let data
- if (res.status == 200) {
- data = res.data
- const no = (data.pageNo - 1) * data.pageSize
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = no + i + 1
- }
- this.total = data.count || 0
- this.disabled = false
- }
- this.spinning = false
- return data
- })
- },
- total: 0 // 合计
- }
- },
- // 根据权限显示列表字段
- computed: {
- columns () {
- const arr = [
- { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
- { title: '财务编码', dataIndex: 'kdMidCustomerFnumber', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '经销商名称', dataIndex: 'dealerName', width: '15%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '商户别名', dataIndex: 'dealerAlias', width: '15%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '总余额', scopedSlots: { customRender: 'totalAmount' }, width: '6%', align: 'center' },
- { title: '待选余额', dataIndex: 'waitAmount', width: '6%', align: 'center', customRender: text => ((text || text == 0) ? this.toThousands(text) : '--') },
- { title: '待选单数', dataIndex: 'waitCount', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '客服', dataIndex: 'auditDate', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '区域', dataIndex: 'subareaArea.subareaName', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '分区', dataIndex: 'subareaArea.subareaAreaName', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '商户级别', dataIndex: 'dealerLevelDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '商户类型', scopedSlots: { customRender: 'dealerType' }, width: '15%', align: 'center' },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }
- ]
- return arr
- }
- },
- methods: {
- // 区域分区
- subareaChange (val) {
- this.queryParam.subareaSn = val[0] ? val[0] : undefined
- this.queryParam.subareaAreaSn = val[1] ? val[1] : undefined
- },
- // 商户类型 change
- getDealerType (v, o) {
- this.queryParam.dealerType1 = v[0]
- this.queryParam.dealerType2 = v[1]
- },
- // 重置
- resetSearchForm () {
- this.queryParam.beginDate = ''
- this.queryParam.endDate = ''
- this.queryParam.nameLike = ''
- this.queryParam.dealerType1 = undefined
- this.queryParam.dealerType2 = undefined
- this.queryParam.dealerLevel = undefined
- this.queryParam.subareaAreaSn = undefined
- this.queryParam.subareaSn = undefined
- this.queryParam.bizUserSn = undefined
- this.queryParam.kdMidCustomerFnumber = ''
- this.$refs.table.refresh(true)
- },
- // 导出
- handleExport () {
- const _this = this
- _this.exportLoading = true
- const timeStr = moment().format('YYYYMMDDHHmmss')
- hdExportExcel(verifyAccountBalanceExport, _this.queryParam, '经销商对账单据余额-' + timeStr, function () {
- _this.exportLoading = false
- })
- },
- // 新增
- handleAdd (row) {
- this.openModal = true
- this.$refs.baseModal.pageInit(row)
- },
- // 详情
- handleDetail (row) {
- this.$router.push({ name: 'accountStatementBillDetail', params: { sn: row.dealerSn, name: row.dealerName } })
- },
- pageInit () {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- },
- setTableH () {
- const tableSearchH = this.$refs.tableSearch.offsetHeight
- this.tableHeight = window.innerHeight - tableSearchH - 250
- }
- },
- watch: {
- advanced (newValue, oldValue) {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- },
- '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
- this.setTableH()
- }
- },
- mounted () {
- if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
- this.pageInit()
- this.resetSearchForm()
- }
- },
- activated () {
- // 如果是新页签打开,则重置当前页面
- if (this.$store.state.app.isNewTab) {
- this.pageInit()
- this.resetSearchForm()
- }
- // 仅刷新列表,不重置页面
- if (this.$store.state.app.updateList) {
- this.pageInit()
- this.$refs.table.refresh()
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {})
- }
- }
- </script>
- <style lang="less">
- .accountStatementBill-wrap{
- .active{
- color: #ed1c24;
- cursor: pointer;
- }
- .common{
- color: rgba(0, 0, 0);
- }
- }
- </style>
|