已结算数据修改从结算记录查询
This commit is contained in:
parent
5e198ae259
commit
3592bba376
|
|
@ -473,7 +473,6 @@ export default {
|
||||||
}
|
}
|
||||||
const res = await getProjectList(params)
|
const res = await getProjectList(params)
|
||||||
this.proList = res.data;
|
this.proList = res.data;
|
||||||
|
|
||||||
this.getAgreementInfo()
|
this.getAgreementInfo()
|
||||||
},
|
},
|
||||||
proChange(val){
|
proChange(val){
|
||||||
|
|
@ -505,7 +504,7 @@ export default {
|
||||||
|
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
getSltReportedList(this.queryParams).then((response) => {
|
getSltReportedList(this.queryParams).then((response) => {
|
||||||
this.tableList = response.rows
|
this.tableList = response.rows
|
||||||
this.total = response.total
|
this.total = response.total
|
||||||
|
|
@ -614,7 +613,12 @@ export default {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// 构造请求参数,使用与现有方法相同的格式
|
// 构造请求参数,使用与现有方法相同的格式
|
||||||
const requestData = [row];
|
let requestData = [row];
|
||||||
|
|
||||||
|
// 增加已结算的数据过滤
|
||||||
|
requestData[0].enableQuerySltData = true;
|
||||||
|
|
||||||
|
console.log(requestData);
|
||||||
|
|
||||||
const response = await getSltInfo(requestData);
|
const response = await getSltInfo(requestData);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue