已结算下拉框过滤
This commit is contained in:
parent
8893c41e36
commit
3a079497ed
|
|
@ -456,9 +456,11 @@ export default {
|
||||||
}, 500)
|
}, 500)
|
||||||
},
|
},
|
||||||
// 获取 工程名称 列表数据
|
// 获取 工程名称 列表数据
|
||||||
|
// 增加已结算的过滤
|
||||||
async GetProData() {
|
async GetProData() {
|
||||||
const unitIdsAsNumbers = this.unitIds.map(id => Number(id))
|
const unitIdsAsNumbers = this.unitIds.map(id => Number(id))
|
||||||
const params = {
|
const params = {
|
||||||
|
enableFilterSlt: true,
|
||||||
unitIds: unitIdsAsNumbers
|
unitIds: unitIdsAsNumbers
|
||||||
}
|
}
|
||||||
const res = await getProjectListByUnitIds(params)
|
const res = await getProjectListByUnitIds(params)
|
||||||
|
|
|
||||||
|
|
@ -493,7 +493,7 @@ export default {
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
getSltReportList(this.queryParams).then((response) => {
|
getSltReportList(this.queryParams).then((response) => {
|
||||||
console.dir(response)
|
console.dir(response)
|
||||||
this.tableList = response.rows
|
this.tableList = response.rows
|
||||||
this.total = response.total
|
this.total = response.total
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue