123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <template>
- <a-modal
- centered
- class="chooseBillModal-modal"
- :footer="null"
- :maskClosable="false"
- title="全部单据"
- v-model="isShow"
- @cancel="isShow=false"
- width="70%">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="7" :sm="24">
- <a-form-item label="单据号">
- <a-input id="chooseBillModal-bizNo" v-model.trim="queryParam.bizNo" allowClear placeholder="请输入单据号"/>
- </a-form-item>
- </a-col>
- <a-col :md="7" :sm="24">
- <a-form-item label="单据类型">
- <v-select
- v-model="queryParam.bizType"
- ref="bizType"
- id="chooseBillModal-bizType"
- code="SETTLE_BIZ_TYPE"
- placeholder="请选择单据类型"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="10" :sm="24">
- <a-form-item label="关联单据创建时间">
- <rangeDate id="chooseBillModal-createDate" ref="createDate" @change="createDateChange" />
- </a-form-item>
- </a-col>
- <a-col :md="7" :sm="24">
- <a-form-item label="审核时间">
- <rangeDate id="chooseBillModal-auditTime" ref="rangeDate" @change="dateChange" />
- </a-form-item>
- </a-col>
- <a-col :md="5" :sm="24">
- <a-button style="margin-bottom: 18px;" type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="chooseBillModal-refresh">查询</a-button>
- <a-button style="margin: 0 0 18px 8px" @click="resetSearchForm" :disabled="disabled" id="chooseBillModal-reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="small"
- :rowKey="(record) => record.id"
- :row-selection="{ columnWidth: 40 }"
- @rowSelection="rowSelectionFun"
- :columns="columns"
- :data="loadData"
- :showPagination="false"
- :scroll="{ y: 400 }"
- :defaultLoadData="false"
- bordered>
- </s-table>
- <div class="btn-cont">
- <a-button type="primary" id="chooseBillModal-modal-save" @click="handleSave">确定</a-button>
- <a-button id="chooseBillModal-modal-back" @click="isShow = false" style="margin-left: 15px;">取消</a-button>
- </div>
- </a-spin>
- </a-modal>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { STable, VSelect } from '@/components'
- import rangeDate from '@/views/common/rangeDate.vue'
- import { settleInfoAllList } from '@/api/settle'
- export default {
- name: 'ChooseBillModal',
- components: { STable, VSelect, rangeDate },
- mixins: [commonMixin],
- props: {
- openModal: { // 弹框显示状态
- type: Boolean,
- default: false
- },
- nowChoose: { // 已选数据
- type: Array,
- default: () => {
- return []
- }
- },
- settleClientSn: { // 结算客户sn
- type: String,
- default: ''
- },
- settleClientType: { // 结算客户类型
- type: String,
- default: ''
- }
- },
- data () {
- const _this = this
- return {
- spinning: false,
- isShow: this.openModal, // 是否打开弹框
- disabled: false,
- queryParam: {
- auditBeginDate: '', // 审核时间开始
- auditEndDate: '', // 审核时间结束
- bizNo: '', // 单据号
- bizType: undefined, // 单据类型
- bizCreateBeginDate: undefined, // 创建时间开始
- bizCreateEndDate: undefined // 创建时间结束
- },
- allData: [],
- // 表头
- columns: [
- { title: '序号', dataIndex: 'no', width: '6%', align: 'center' },
- { title: '单据号', dataIndex: 'bizNo', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '单据类型', dataIndex: 'bizTypeDictValue', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '关联单据创建时间', dataIndex: 'bizCreateDate', width: '25%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '审核时间', dataIndex: 'auditTime', width: '18%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '金额', dataIndex: 'totalAmount', width: '12%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
- { title: '余额', dataIndex: 'unsettleAmount', width: '12%', align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- return settleInfoAllList(Object.assign(this.queryParam, { settleClientType: this.settleClientType, settleClientSn: this.settleClientSn, notEqZero: 1 })).then(res => {
- let data
- if (res.status == 200) {
- data = res.data
- const selectedRowKeys = []
- const selectedRows = []
- for (var i = 0; i < data.length; i++) {
- data[i].no = i + 1
- data[i].settleAmount = data[i].unsettleAmount
- // 格式化已选数据
- const ind = this.nowChoose.findIndex(item => item.id == data[i].id)
- if (ind != -1) {
- selectedRowKeys.push(data[i].id)
- selectedRows.push(data[i])
- }
- }
- // 设置表格已选中项
- this.$refs.table.setTableSelected(selectedRowKeys, selectedRows)
- this.disabled = false
- }
- this.spinning = false
- return data
- })
- },
- rowSelectionInfo: null // 选择的数据
- }
- },
- methods: {
- // 表格选中项
- rowSelectionFun (obj) {
- this.rowSelectionInfo = obj || null
- },
- // 关联单据创建时间
- createDateChange (date) {
- this.queryParam.bizCreateBeginDate = date[0]
- this.queryParam.bizCreateEndDate = date[1]
- },
- // 审核时间 change
- dateChange (date) {
- this.queryParam.auditBeginDate = date[0]
- this.queryParam.auditEndDate = date[1]
- },
- // 确定
- handleSave () {
- this.$emit('ok', this.rowSelectionInfo && this.rowSelectionInfo.selectedRows)
- this.isShow = false
- },
- // 重置
- resetSearchForm () {
- this.$refs.rangeDate.resetDate()
- this.$refs.createDate.resetDate()
- this.queryParam.auditBeginDate = ''
- this.queryParam.auditEndDate = ''
- this.queryParam.bizCreateBeginDate = ''
- this.queryParam.bizCreateEndDate = ''
- this.queryParam.bizNo = ''
- this.queryParam.bizType = undefined
- this.$refs.table.refresh(true)
- }
- },
- watch: {
- // 父页面传过来的弹框状态
- openModal (newValue, oldValue) {
- this.isShow = newValue
- },
- // 重定义的弹框状态
- isShow (newValue, oldValue) {
- const _this = this
- if (!newValue) {
- _this.$emit('close')
- _this.$refs.table.clearSelected() // 清空表格选中项
- _this.resetSearchForm()
- } else {
- setTimeout(() => {
- _this.$refs.table.refresh(true)
- }, 200)
- }
- }
- }
- }
- </script>
- <style lang="less">
- .chooseBillModal-modal{
- .btn-cont {
- text-align: center;
- margin: 35px 0 10px;
- }
- }
- </style>
|