三审处理中
This commit is contained in:
@@ -1985,16 +1985,32 @@ console.log('formattedData at line 1286:', formattedData)
|
||||
limit: 999999,
|
||||
state: 3
|
||||
})
|
||||
}),
|
||||
this.$http({
|
||||
url: this.$http.adornUrl(
|
||||
"/master/medicalRecords/getMedicalRecordsListCheck"
|
||||
),
|
||||
method: "post",
|
||||
data: this.$http.adornData({
|
||||
current: 1,
|
||||
limit: 999999,
|
||||
state: 3,
|
||||
infoCount: 2
|
||||
})
|
||||
})
|
||||
]).then(([res1, res3]) => {
|
||||
]).then(([res1, res2,res3]) => {
|
||||
const totalCheck = res1.data.page.total || 0; // 待审核
|
||||
const totalApprove = res3.data.page.total || 0; // 待审批
|
||||
const totalApprove = res2.data.page.total || 0; // 待审批
|
||||
const totalApprove3 = res3.data.page.total || 0; // 待审批
|
||||
|
||||
if (totalCheck > 0) {
|
||||
this.$set(this.treeDataList[1], "number", totalCheck);
|
||||
}
|
||||
if (totalApprove > 0) {
|
||||
this.$set(this.treeDataList[4], "number", totalApprove);
|
||||
this.$set(this.treeDataList[3], "number", totalApprove);
|
||||
}
|
||||
if (totalApprove3 > 0) {
|
||||
this.$set(this.treeDataList[4], "number", totalApprove3);
|
||||
}
|
||||
});
|
||||
// this.treeDataList = data.labelList;
|
||||
|
||||
Reference in New Issue
Block a user