【update】-重写查询方法--删除预估到账日期属性

This commit is contained in:
fengchenchen
2023-12-26 10:38:01 +08:00
parent 28d3d55467
commit 89dbba3201
3 changed files with 24 additions and 0 deletions
@@ -294,6 +294,14 @@ export default {
},
methods: {
formatMoney,
// 重写查询方法--删除预估到账日期属性
searchQuery() {
this.lastQueryParam = {...this.queryParam}
if(this.lastQueryParam.estimatedArrivalDate) {
delete this.lastQueryParam.estimatedArrivalDate
}
this.loadData(1)
},
/*
* 打开项目详情模态框
* */
@@ -277,6 +277,14 @@ export default {
},
methods: {
formatMoney,
// 重写查询方法--删除预估到账日期属性
searchQuery() {
this.lastQueryParam = {...this.queryParam}
if(this.lastQueryParam.estimatedArrivalDate) {
delete this.lastQueryParam.estimatedArrivalDate
}
this.loadData(1)
},
/*
* 打开项目详情模态框
* */
@@ -416,6 +416,14 @@ export default {
},
methods: {
formatMoney,
// 重写查询方法--删除预估到账日期属性
searchQuery() {
this.lastQueryParam = {...this.queryParam}
if(this.lastQueryParam.estimatedArrivalDate) {
delete this.lastQueryParam.estimatedArrivalDate
}
this.loadData(1)
},
/**
* 初始化工作组信息
*/