wlzboy
2025-12-23 355dda1f90c70ab04c4517688da37d1a4236f112
app/pages/task/index.vue
@@ -168,7 +168,7 @@
              <!-- 任务编号和开始时间在同一行显示,但分开一些 -->
              <view class="task-code-row">
                <text class="task-code">{{ task.showTaskCode }}</text>
                <text class="task-time">出发时间:{{ task.startTime }}</text>
                <text class="task-time">{{ task.startTime }}</text>
              </view>
              <!-- 任务详细信息 -->
@@ -457,7 +457,9 @@
                task.destinationAddress || task.endLocation || "未设置"
              ),
              startTime: task.plannedStartTime
                ? formatDateTime(task.plannedStartTime, "YYYY-MM-DD HH:mm")
                ? (task.plannedStartTime.startsWith('1900') || task.plannedStartTime.startsWith('1970')
                  ? '未分配时间'
                  : formatDateTime(task.plannedStartTime, "YYYY-MM-DD HH:mm"))
                : "未设置",
              assignee: task.assigneeName || "未分配",
            };
@@ -569,7 +571,9 @@
                task.destinationAddress || task.endLocation || "未设置"
              ),
              startTime: task.plannedStartTime
                ? formatDateTime(task.plannedStartTime, "YYYY-MM-DD HH:mm")
                ? (task.plannedStartTime.startsWith('1900') || task.plannedStartTime.startsWith('1970')
                  ? '未分配时间'
                  : formatDateTime(task.plannedStartTime, "YYYY-MM-DD HH:mm"))
                : "未设置",
              assignee: task.assigneeName || "未分配",
            };