|
@@ -12,7 +12,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
<a-form-item label="单位名称">
|
|
<a-form-item label="单位名称">
|
|
- <custList ref="custList" @change="custChange" v-model="queryParam.buyerSn"></custList>
|
|
|
|
|
|
+ <custList ref="custList" v-model="queryParam.buyerName"></custList>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
@@ -121,7 +121,7 @@ export default {
|
|
queryParam: { // 查询条件
|
|
queryParam: { // 查询条件
|
|
beginDate: getDate.getCurrMonthDays().starttime,
|
|
beginDate: getDate.getCurrMonthDays().starttime,
|
|
endDate: getDate.getCurrMonthDays().endtime,
|
|
endDate: getDate.getCurrMonthDays().endtime,
|
|
- buyerSn: undefined, // 客户名称
|
|
|
|
|
|
+ buyerName: undefined, // 客户名称
|
|
bizBillNo: '', // 关联单号
|
|
bizBillNo: '', // 关联单号
|
|
urgentBillNo: '', // 急件单号
|
|
urgentBillNo: '', // 急件单号
|
|
status: undefined, // 状态
|
|
status: undefined, // 状态
|
|
@@ -193,7 +193,7 @@ export default {
|
|
this.$refs.rangeDate.resetDate(this.time)
|
|
this.$refs.rangeDate.resetDate(this.time)
|
|
this.queryParam.beginDate = getDate.getCurrMonthDays().starttime
|
|
this.queryParam.beginDate = getDate.getCurrMonthDays().starttime
|
|
this.queryParam.endDate = getDate.getCurrMonthDays().endtime
|
|
this.queryParam.endDate = getDate.getCurrMonthDays().endtime
|
|
- this.queryParam.buyerSn = undefined
|
|
|
|
|
|
+ this.queryParam.buyerName = undefined
|
|
this.queryParam.bizBillNo = ''
|
|
this.queryParam.bizBillNo = ''
|
|
this.queryParam.urgentBillNo = ''
|
|
this.queryParam.urgentBillNo = ''
|
|
this.queryParam.status = undefined
|
|
this.queryParam.status = undefined
|
|
@@ -205,10 +205,6 @@ export default {
|
|
handleDetail (row) {
|
|
handleDetail (row) {
|
|
this.$router.push({ path: `/salesManagement/urgentItemsOffset/detail/${row.urgentBillSn}` })
|
|
this.$router.push({ path: `/salesManagement/urgentItemsOffset/detail/${row.urgentBillSn}` })
|
|
},
|
|
},
|
|
- // 客户 change
|
|
|
|
- custChange (obj) {
|
|
|
|
- this.queryParam.buyerSn = obj.key || undefined
|
|
|
|
- },
|
|
|
|
pageInit () {
|
|
pageInit () {
|
|
const _this = this
|
|
const _this = this
|
|
this.$nextTick(() => { // 页面渲染完成后的回调
|
|
this.$nextTick(() => { // 页面渲染完成后的回调
|