cyy
2025-09-28 fb026e6052b4d843d327312db398cf791ac57ab9
pages/task/infos/task-item.vue
@@ -106,7 +106,7 @@
         taskCycleTime() {
            if (this.taskIsRun)
               return `第${this.taskStatus?.curCycleNumber || 0}/${this.taskStatus?.cycleTotleNumber || 0}次`
               return `第${this.taskStatus?.curCycleNumber || 0}/${this.taskStatus?.cycleTotalNumber || 0}次`
            else
               return `重复${this.taskData.cycleTime || 0}次`
@@ -216,7 +216,7 @@
         getDestText(item) {
            const index = this.taskData.taskList.findIndex((a) => a.taskID == item.taskID)
            if (index > -1) {
               return this.taskData.taskList[index]?.dest?.name || ""
               return this.taskData.taskList[index].dest?.name || ""
            }
            return ""
         },
@@ -230,7 +230,7 @@
               } else if (task.actionType === 2) {
                  actionText = "取货"
               } else if (task.actionType === 3) {
                  actionText = `卸货 等待${taskData.taskList[index]?.wait || 0}秒`
                  actionText = `卸货 等待${task.wait || 0}秒`
               } else if (task.actionType === 4) {
                  actionText = "人工"
               }