批量审核
This commit is contained in:
@ -81,9 +81,15 @@ tabs = {
|
|||||||
if(this.resourceStatus) {
|
if(this.resourceStatus) {
|
||||||
a.billStatus = this.resourceStatus;
|
a.billStatus = this.resourceStatus;
|
||||||
}
|
}
|
||||||
|
const params: any = Object.assign({}, this.sf?.value || {});
|
||||||
|
delete params._$expand;
|
||||||
return {
|
return {
|
||||||
...a,
|
...a,
|
||||||
...this.sf?.value,
|
...params,
|
||||||
|
createTime: {
|
||||||
|
start: this.sf?.value?.createTime?.[0] || '',
|
||||||
|
end: this.sf?.value?.createTime?.[1] || '',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
get selectedRows() {
|
get selectedRows() {
|
||||||
|
|||||||
@ -102,14 +102,6 @@ resourceStatus: any;
|
|||||||
end: this.sf?.value?.createTime?.[1] || '',
|
end: this.sf?.value?.createTime?.[1] || '',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
// const a:any = {};
|
|
||||||
// if(this.resourceStatus) {
|
|
||||||
// a.billStatus = this.resourceStatus;
|
|
||||||
// }
|
|
||||||
// return {
|
|
||||||
// ...a,
|
|
||||||
// ...this.sf?.value,
|
|
||||||
// };
|
|
||||||
}
|
}
|
||||||
get selectedRows() {
|
get selectedRows() {
|
||||||
return this.st?.list.filter((item) => item.checked) || [];
|
return this.st?.list.filter((item) => item.checked) || [];
|
||||||
|
|||||||
Reference in New Issue
Block a user