123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629 |
- <template>
- <div class="jg-page-wrap salesManagementList-wrap">
- <a-card size="small" :bordered="false" class="table-page-search-wrapper">
- <!-- 搜索条件 -->
- <div ref="tableSearch">
- <a-form layout="inline" @keyup.enter.native="searchForm">
- <a-row type="flex" justify="start" :gutter="15">
- <a-col :span="6">
- <a-form-item label="创建时间">
- <rangeDate :allowClear="isByCustQuery" :hasDisabledAreaTime="false" ref="rangeDate" :value="time" @change="dateChange" />
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="客户名称" :label-col="{ span:7 }" :wrapper-col="{ span:17}" :required="isByCustQuery">
- <custList ref="custList" @change="custChange"></custList>
- </a-form-item>
- </a-col>
- <a-col :span="6" v-if="advanced">
- <a-form-item label="收款方式">
- <v-select
- code="SETTLE_STYLE"
- id="salesManagementList-settleStyleSn"
- v-model="queryParam.settleStyleSn"
- allowClear
- placeholder="请选择收款方式"
- ></v-select>
- </a-form-item>
- </a-col>
- <a-col :span="6" v-if="advanced">
- <a-form-item label="业务状态">
- <v-select
- v-model="queryParam.billStatus"
- ref="billStatus"
- id="salesManagementList-billStatus"
- code="SALES_BILL_STATUS"
- placeholder="请选择业务状态"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="审核时间">
- <rangeDate ref="auditRangeDate" v-model="auditTime" @change="auditDateChange" />
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="销售单号">
- <a-input id="salesManagementList-salesBillNo" v-model.trim="queryParam.salesBillNo" allowClear placeholder="请输入销售单号"/>
- </a-form-item>
- </a-col>
- <a-col :span="6" v-if="advanced">
- <a-form-item label="单据来源">
- <v-select
- v-model="queryParam.sourceType"
- ref="sourceType"
- id="salesManagementList-sourceType"
- code="SALES_SOURCE"
- placeholder="请选择单据来源"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col :span="6" v-if="advanced">
- <a-form-item label="财务状态">
- <v-select
- v-model="queryParam.financialStatus"
- ref="financialStatus"
- id="salesManagementList-financialStatus"
- code="FINANCIAL_RECEIVE_STATUS"
- placeholder="请选择财务状态"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col :span="6" v-if="advanced">
- <a-form-item label="出库时间">
- <rangeDate ref="outWareRangeDate" v-model="outWareTime" @change="outWareDateChange" />
- </a-form-item>
- </a-col>
- <a-col :span="6" v-if="advanced">
- <a-form-item label="采购单号">
- <a-input id="salesManagementList-purchaseBillNo" v-model.trim="queryParam.purchaseBillNo" allowClear placeholder="请输入采购单号"/>
- </a-form-item>
- </a-col>
- <a-col :span="6" v-if="advanced">
- <a-form-model-item label="铺货出库">
- <v-select code="FLAG" id="salesManagementList-distributionFlag" v-model="queryParam.distributionFlag" allowClear placeholder="请选择是否铺货出库"></v-select>
- </a-form-model-item>
- </a-col>
- <a-col :span="24" style="display:flex;align-items: center;">
- <div style="text-align:left;width:50%;">
- <a-checkbox v-model="isByCustQuery" id="sales-byCustQuery">按客户查询</a-checkbox>
- <a-popover placement="right">
- <template slot="content">
- 使用此查询时,时间可清空,必须选择一个客户
- </template>
- <a-icon type="question-circle" />
- </a-popover>
- </div>
- <div style="text-align:left;margin-left: -120px;width:50%;">
- <a-button type="primary" :disabled="disabled" @click="searchForm">查询</a-button>
- <a-button style="margin-left: 5px" :disabled="disabled" @click="resetSearchForm()">重置</a-button>
- <a-button
- type="primary"
- v-if="$hasPermissions('B_salesExport')"
- class="button-warning"
- @click="handleExport"
- :disabled="disabled"
- :loading="exportLoading"
- id="salesManagementList-export">导出</a-button>
- <a @click="advanced=!advanced" style="margin-left: 5px">
- {{ advanced ? '收起' : '展开' }}
- <a-icon :type="advanced ? 'up' : 'down'"/>
- </a>
- </div>
- </a-col>
- </a-row>
- </a-form>
- </div>
- </a-card>
- <a-card size="small" :bordered="false">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 操作按钮 -->
- <div class="table-operator" style="display:flex;align-items:center;justify-content: space-between;">
- <div class="alert-message">
- 销售单数合计:<strong>{{ totalData&&(totalData.totalRecord || totalData.totalRecord==0) ? totalData.totalRecord : '--' }}</strong>;
- 销售款数合计:<strong>{{ totalData&&(totalData.totalCategory || totalData.totalCategory==0) ? totalData.totalCategory : '--' }}</strong>;
- 销售数量合计:<strong>{{ totalData&&(totalData.totalQty || totalData.totalQty==0) ? totalData.totalQty : '--' }}</strong>;
- 销售金额合计:<strong>{{ totalData&&(totalData.totalAmount || totalData.totalAmount==0) ? toThousands(totalData.totalAmount) : '--' }}</strong>;
- </div>
- <div class="action-buttons">
- <a-button type="primary" class="button-error" v-if="$hasPermissions('B_salesNews')" @click="handleAdd(0)"><a-icon type="plus" /> 新增(零售)</a-button>
- <a-button type="primary" class="button-error" v-if="$hasPermissions('B_salesNews')" @click="handleAdd(1)"><a-icon type="plus" /> 新增(铺货)</a-button>
- <a-dropdown v-model="showCell">
- <a-button type="link" class="button-default"> <a-icon type="setting" /> 显示</a-button>
- <a-menu slot="overlay">
- <a-menu-item>
- <a-checkbox v-model="showDiscount" id="salesQuery-edit-discount">折后总售价</a-checkbox>
- </a-menu-item>
- </a-menu>
- </a-dropdown>
- </div>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable fixPagination"
- ref="table"
- :style="{ height: tableHeight+84+'px' }"
- size="small"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ y:tableHeight }"
- :defaultLoadData="false"
- bordered>
- <!-- 销售单号 -->
- <template slot="salesBillNo" slot-scope="text, record">
- <span class="table-td-link" v-if="$hasPermissions('B_salesDetail')" @click="handleDetail(record)">{{ record.salesBillNo }}</span>
- <span v-else>{{ record.salesBillNo }}</span>
- <a-badge count="改" :number-style="{ zoom:'80%',marginLeft:'5px' }" v-if="record.billStatus=='SUPERIOR_CHANGE'"></a-badge>
- </template>
- <!-- 审核 -->
- <template slot="audit" slot-scope="text, record">
- <stateIcon :title="record.billStatusDictValue" v-if="record.billStatus!='AUDIT_REJECT'" :state="record.billStatus == 'WAIT_OUT_WAREHOUSE'||record.billStatus == 'FINISH'?'1':'2'"></stateIcon>
- <stateIcon :title="record.billStatusDictValue" v-else :state="0"></stateIcon>
- </template>
- <!-- 急件 -->
- <template slot="oosFlag" slot-scope="text, record">
- <stateIcon :state="record.oosFlag==1?'1':'2'"></stateIcon>
- </template>
- <!-- 出库 -->
- <template slot="waitOut" slot-scope="text, record">
- <stateIcon :state="record.billStatus == 'FINISH'?'1':'2'"></stateIcon>
- </template>
- <!-- 收款 -->
- <template slot="financial" slot-scope="text, record">
- <stateIcon :title="record.financialStatusDictValue" :state="record.financialStatus == 'FINISH'?'1':'2'"></stateIcon>
- </template>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- size="small"
- type="link"
- class="button-primary"
- v-if="record.billStatus == 'WAIT_AUDIT' && $hasPermissions('B_salesAudit')"
- @click="handleEexamine(record)"
- >审核</a-button>
- <a-button
- size="small"
- type="link"
- v-if="record.billStatus == 'WAIT_OUT_WAREHOUSE' && $hasPermissions('B_salesStockOut')"
- class="button-primary"
- @click="handleSend(record)"
- >出库</a-button>
- <a-button
- size="small"
- type="link"
- class="button-primary"
- v-if="((record.sourceType == 'SATELLITE' || record.sourceType == 'SALES' || record.sourceType == 'TEMPORARY_DISPATCHING') && (record.billStatus == 'WAIT_AUDIT' || record.billStatus == 'WAIT_SUBMIT' || record.billStatus == 'AUDIT_REJECT')) && $hasPermissions('B_salesEdit')"
- @click="handleEdit(record)"
- >
- 编辑
- </a-button>
- <a-button
- size="small"
- type="link"
- class="button-error"
- v-if="((record.sourceType == 'SATELLITE' || record.sourceType == 'SALES' || record.sourceType == 'TEMPORARY_DISPATCHING') && record.billStatus != 'FINISH') && $hasPermissions('B_salesDel')"
- @click="handleDel(record)"
- >
- 删除
- </a-button>
- <a-button
- size="small"
- type="link"
- class="button-primary"
- v-if="((record.sourceType == 'CHILD_PURCHASE'||record.sourceType == 'DEALER_PURCHASE') && (record.billStatus == 'WAIT_AUDIT' || record.billStatus == 'SUPERIOR_CHANGE')) && $hasPermissions('B_salesEdit')"
- @click="handleEdit(record)"
- >
- 改单
- </a-button>
- <a-button
- size="small"
- type="link"
- class="button-error"
- v-if="((record.sourceType == 'CHILD_PURCHASE'||record.sourceType == 'DEALER_PURCHASE') && (record.billStatus == 'WAIT_AUDIT' || record.billStatus == 'SUPERIOR_CHANGE')) && $hasPermissions('B_salesDel')"
- @click="handleDel(record, 'cancel')"
- >
- 取消
- </a-button>
- <span v-if="!(record.billStatus == 'WAIT_AUDIT' && $hasPermissions('B_salesAudit')) && !(record.billStatus == 'WAIT_OUT_WAREHOUSE' && $hasPermissions('B_salesStockOut')) && !(((record.sourceType == 'SATELLITE' || record.sourceType == 'SALES' || record.sourceType == 'TEMPORARY_DISPATCHING') && (record.billStatus == 'WAIT_AUDIT' || record.billStatus == 'WAIT_SUBMIT' || record.billStatus == 'AUDIT_REJECT')) && $hasPermissions('B_salesEdit')) && !(((record.sourceType == 'SATELLITE' || record.sourceType == 'SALES' || record.sourceType == 'TEMPORARY_DISPATCHING') && record.billStatus != 'FINISH') && $hasPermissions('B_salesDel'))">
- <span v-if="!(((record.sourceType == 'CHILD_PURCHASE'||record.sourceType == 'DEALER_PURCHASE') && (record.billStatus == 'WAIT_AUDIT' || record.billStatus == 'SUPERIOR_CHANGE')) &&$hasPermissions('B_salesEdit')) && !(((record.sourceType == 'CHILD_PURCHASE'||record.sourceType == 'DEALER_PURCHASE') && (record.billStatus == 'WAIT_AUDIT' || record.billStatus == 'SUPERIOR_CHANGE')) && $hasPermissions('B_salesDel'))">--</span>
- </span>
- </template>
- </s-table>
- </a-spin>
- <!-- 选择客户弹框 -->
- <choose-custom-modal :show="openModal" :distributionFlag="distributionFlag" @ok="chooseCustomOk" @cancel="openModal=false"></choose-custom-modal>
- <!-- 审核 -->
- <auditModal :openModal="visibleAudit" :spinning="spinningAudit" @close="visibleAudit=false" @ok="auditOrder('WAIT_OUT_WAREHOUSE')" @fail="auditOrder('AUDIT_REJECT')" />
- </a-card>
- </div>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import getDate from '@/libs/getDate.js'
- import { STable, VSelect } from '@/components'
- import chooseCustomModal from './chooseCustomModal.vue'
- import auditModal from '@/views/common/auditModal.vue'
- import { salesList, salesDel, salesWriteAudit, salesWriteStockOut, salesCount, salesExport } from '@/api/sales'
- import rangeDate from '@/views/common/rangeDate.vue'
- import custList from '@/views/common/custList.vue'
- import { downloadExcel } from '@/libs/JGPrint.js'
- import stateIcon from '@/views/common/stateIcon'
- import moment from 'moment'
- export default {
- name: 'SalesList',
- components: { STable, VSelect, chooseCustomModal, rangeDate, auditModal, custList, stateIcon },
- mixins: [commonMixin],
- data () {
- const _this = this
- return {
- spinning: false,
- tableHeight: 0,
- advanced: true, // 高级搜索 展开/关闭
- disabled: false, // 查询、重置按钮是否可操作
- exportLoading: false, // 导出loading
- openModal: false, // 选择客户弹框是否显示
- isByCustQuery: false, // 是否按客户查询
- showDiscount: false,
- showCell: false,
- time: [
- getDate.getMonthDays(3).starttime,
- getDate.getMonthDays(3).endtime
- ],
- auditTime: [],
- outWareTime: [],
- // 查询参数
- queryParam: {
- beginDate: getDate.getMonthDays(3).starttime,
- endDate: getDate.getMonthDays(3).endtime,
- auditBeginDate: '',
- auditEndDate: '',
- outWarehouseBeginDate: '',
- outWarehouseEndDate: '',
- buyerNameCurrent: undefined, // 客户名称
- buyerSn: undefined,
- salesBillNo: '', // 销售单号
- purchaseBillNo: '', // 采购单号
- payType: undefined, // 支付方式
- settleStyleSn: undefined, // 收款方式
- billStatus: undefined, // 业务状态
- financialStatus: undefined, // 财务状态
- sourceType: undefined,
- distributionFlag: undefined
- },
- totalData: {
- totalAmount: 0,
- totalCategory: 0,
- totalQty: 0,
- totalRecord: 0
- },
- selType: '0', // 0零售 1铺货
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- // 查询总计
- salesCount(Object.assign(parameter, this.queryParam)).then(res => {
- console.log(res, 'res')
- this.totalData = Object.assign(this.totalData, res.data || {})
- })
- return salesList(Object.assign(parameter, this.queryParam)).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.disabled = false
- }
- console.log(res, 'res')
- this.spinning = false
- return data
- })
- },
- visibleAudit: false,
- auditInfo: null,
- spinningAudit: false,
- distributionFlag: '0'
- }
- },
- computed: {
- columns () {
- const _this = this
- const arr = [
- { title: '序号', dataIndex: 'no', align: 'center', width: '4%' },
- { title: '来源', dataIndex: 'sourceTypeDictValue', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '销售单号', scopedSlots: { customRender: 'salesBillNo' }, width: '9%', align: 'center' },
- { title: '客户名称', dataIndex: 'buyerNameCurrent', align: 'center', width: '15%', customRender: function (text) { return text || '--' } },
- { title: '总款数', dataIndex: 'totalCategory', align: 'center', width: '5%', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '总数量', dataIndex: 'totalQty', align: 'center', width: '5%', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '总售价', dataIndex: 'totalAmount', align: 'right', width: '5%', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
- // { title: '折扣金额', dataIndex: 'discountAmount', align: 'right', width: '5%', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
- // { title: '折后总售价', dataIndex: 'discountedAmount', align: 'right', width: '5%', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
- { title: '收款方式', dataIndex: 'settleStyleSnDictValue', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '创建时间', dataIndex: 'createDate', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '审核时间', dataIndex: 'auditDate', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '业务状态', dataIndex: 'billStatusDictValue', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '审核', scopedSlots: { customRender: 'audit' }, width: '2%', align: 'center' },
- { title: '急件', scopedSlots: { customRender: 'oosFlag' }, width: '2%', align: 'center' },
- { title: '出库', scopedSlots: { customRender: 'waitOut' }, width: '2%', align: 'center' },
- { title: '收款', scopedSlots: { customRender: 'financial' }, width: '2%', align: 'center' },
- // { title: '财务状态', dataIndex: 'financialStatusDictValue', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }
- ]
- // 显示折扣
- if (this.showDiscount) {
- arr.splice(7, 0, { title: '折扣金额', dataIndex: 'discountAmount', align: 'right', width: '5%', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } })
- arr.splice(8, 0, { title: '折后总售价', dataIndex: 'discountedAmount', align: 'right', width: '5%', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } })
- }
- return arr
- }
- },
- methods: {
- // 时间 change
- dateChange (date) {
- this.queryParam.beginDate = date[0]
- this.queryParam.endDate = date[1]
- },
- auditDateChange (date) {
- this.auditTime = date
- this.queryParam.auditBeginDate = date[0]
- this.queryParam.auditEndDate = date[1]
- },
- outWareDateChange (date) {
- this.outWareTime = date
- this.queryParam.outWarehouseBeginDate = date[0]
- this.queryParam.outWarehouseEndDate = date[1]
- },
- custChange (v, row) {
- console.log(v, row)
- if (row && row.customerSn) {
- this.queryParam.buyerSn = row.customerSn
- this.queryParam.buyerNameCurrent = undefined
- } else {
- this.queryParam.buyerNameCurrent = v
- this.queryParam.buyerSn = undefined
- }
- },
- // 新增
- handleAdd (flag) {
- this.openModal = true
- this.distributionFlag = flag
- },
- // 审核
- handleEexamine (row) {
- this.auditInfo = row
- this.visibleAudit = true
- },
- auditOrder (billStatus) {
- this.spinningAudit = true
- salesWriteAudit({
- id: this.auditInfo.id,
- billStatus: billStatus
- }).then(res => {
- if (res.status == 200) {
- this.visibleAudit = false
- this.$message.success(res.message)
- this.$refs.table.refresh()
- this.spinningAudit = false
- } else {
- this.visibleAudit = false
- this.spinningAudit = false
- }
- })
- },
- // 出库
- handleSend (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '确认要出库吗?',
- centered: true,
- closable: true,
- onOk () {
- _this.spinning = true
- salesWriteStockOut({
- salesBillSn: row.salesBillSn
- }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- },
- // 详情
- handleDetail (row) {
- this.$router.push({ name: 'salesNewDetail', params: { sn: row.salesBillSn } })
- },
- // 编辑
- handleEdit (row) {
- this.$router.push({ name: 'salesNewEdit', params: { id: row.id, sn: row.salesBillSn, priceType: row.priceType } })
- },
- // 选择客户成功
- chooseCustomOk (data) {
- this.$router.push({ name: 'salesNewAdd', params: { id: data.id, sn: data.salesBillSn, priceType: data.priceType } })
- },
- // 删除
- handleDel (row, type) {
- const _this = this
- let content = '确认要删除吗?'
- if (type == 'cancel') {
- content = '确认要取消吗?'
- }
- this.$confirm({
- title: '提示',
- content: <div><div style='font-size:16px;margin-bottom:10px;'>{content}</div><div>销售单号:{row.salesBillNo}</div><div>客户名称:{row.buyerNameCurrent}</div></div>,
- centered: true,
- closable: true,
- onOk () {
- _this.spinning = true
- salesDel({ id: row.id, mainFlag: 1 }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- },
- searchForm (flag) {
- if (!this.isByCustQuery) {
- const a = moment(this.queryParam.beginDate)
- const b = moment(this.queryParam.endDate)
- if (b.diff(a, 'days') > 730) {
- this.$message.info('最多只能选择2年的时间区间')
- return false
- }
- this.$refs.table.refresh(!flag)
- } else {
- if (this.queryParam.buyerSn) {
- this.$refs.table.refresh(!flag)
- } else {
- this.$message.info('请选择客户')
- return false
- }
- }
- },
- // 重置
- resetSearchForm () {
- this.resetData()
- this.$refs.table.refresh(true)
- },
- // 重置数据
- resetData (flag) {
- this.$refs.rangeDate.resetDate(flag ? '' : this.time)
- this.queryParam.beginDate = flag ? '' : getDate.getMonthDays(3).starttime
- this.queryParam.endDate = flag ? '' : getDate.getMonthDays(3).endtime
- this.queryParam.auditBeginDate = ''
- this.queryParam.auditEndDate = ''
- this.queryParam.outWarehouseBeginDate = ''
- this.queryParam.outWarehouseEndDate = ''
- this.auditTime = []
- this.outWareTime = []
- if (this.advanced) {
- this.$refs.auditRangeDate.resetDate('')
- this.$refs.outWareRangeDate.resetDate('')
- }
- this.queryParam.buyerNameCurrent = undefined
- this.queryParam.buyerSn = undefined
- this.queryParam.salesBillNo = ''
- this.queryParam.purchaseBillNo = ''
- this.queryParam.payType = undefined
- this.queryParam.settleStyleSn = undefined
- this.queryParam.billStatus = undefined
- this.queryParam.financialStatus = undefined
- this.queryParam.sourceType = undefined
- this.queryParam.distributionFlag = undefined
- this.$refs.custList.resetForm()
- if (!flag) {
- this.setIsHomeNav(this.$route.name, null)
- }
- },
- // 导出
- handleExport () {
- const _this = this
- const params = this.queryParam
- params.showDiscountAmountFlag = this.showDiscount ? 1 : 0
- this.exportLoading = true
- _this.spinning = true
- salesExport(params).then(res => {
- this.exportLoading = false
- _this.spinning = false
- if (res.type == 'application/json') {
- var reader = new FileReader()
- reader.addEventListener('loadend', function () {
- const obj = JSON.parse(reader.result)
- _this.$notification.error({
- message: '提示',
- description: obj.message
- })
- })
- reader.readAsText(res)
- } else {
- downloadExcel(res, '销售列表')
- }
- })
- },
- setTableH () {
- const tableSearchH = this.$refs.tableSearch.offsetHeight
- this.tableHeight = window.innerHeight - tableSearchH - 267
- },
- pageInit () {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- // 是否打开的页签
- const a = this.$store.state.app.isNewTab
- // 是否要刷新列表
- const b = this.$store.state.app.updateList
- // 是否从首页点击进入
- const isHomeNav = this.getIsHomeNav()[this.$route.name]
- console.log(a, b)
- // 从首页进入,判断式新建还式待办查询
- if (isHomeNav) {
- // 新增
- if (isHomeNav.type == 'new') {
- this.resetSearchForm()
- this.openModal = true
- }
- // 待办
- if (isHomeNav.type == 'todo') {
- this.resetData(true)
- this.queryParam = Object.assign(this.queryParam, isHomeNav.pageParams)
- this.$refs.rangeDate.resetDate([this.queryParam.beginDate, this.queryParam.endDate])
- this.$refs.table.refresh(true)
- }
- } else {
- // 如果是新页签打开,则重置当前页面
- if (a && !b) {
- this.resetSearchForm()
- }
- }
- // 仅刷新列表,不重置页面
- if (b || a == b) {
- this.$refs.table.refresh()
- }
- }
- },
- watch: {
- advanced (newValue, oldValue) {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- },
- '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
- this.setTableH()
- },
- isByCustQuery (newValue, oldValue) {
- if (!newValue) {
- this.resetSearchForm()
- }
- }
- },
- activated () {
- this.pageInit()
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- })
- }
- }
- </script>
|