|
@@ -66,13 +66,13 @@
|
|
|
queryTaskCount({},(res) => {
|
|
|
this.allCount = res.count
|
|
|
})
|
|
|
- queryTaskCount({filters: `taskType=0`},(res) => {
|
|
|
+ queryTaskCount({filters: `taskState=0`},(res) => {
|
|
|
this.alreadyCount = res.count
|
|
|
})
|
|
|
- queryTaskCount({filters: `taskType=-1`},(res) => {
|
|
|
+ queryTaskCount({filters: `taskState=-1`},(res) => {
|
|
|
this.notFoundCount = res.count
|
|
|
})
|
|
|
- queryTaskCount({filters: `taskType=1`},(res) => {
|
|
|
+ queryTaskCount({filters: `taskState=1`},(res) => {
|
|
|
this.waitCount = res.count
|
|
|
})
|
|
|
countAssetsTask({filters: `taskState=1&&taskType='3'`},(res) => {
|