无人机管理后台前端(已迁走)
rain
2025-05-06 224dabae534c81ffc0f66d459c2e5e0d834d8121
工单复核信息
1 files modified
8 ■■■■ changed files
src/views/tickets/ticket.vue 8 ●●●● patch | view | raw | blame | history
src/views/tickets/ticket.vue
@@ -521,8 +521,8 @@
        { label: "已完结", value: "5" },
      ],
      reviewStatuses: [
        { label: "未复核", value: 0 },
        { label: "已复核", value: 1 }
        { label: "否", value: 0 },
        { label: "是", value: 1 }
      ],
      tableData: [],
      option: {
@@ -558,11 +558,11 @@
          { label: "创建人", prop: "creator", width: 100 },
          { label: "处理人", prop: "handler", width: 100 },
                   { 
            label: "复核状态",
            label: "是否复核",
            prop: "isReview", 
            width: 90,
            formatter: (row) => {
              return row.isReview === 1 ? '已复核' : '未复核'
              return row.isReview === 1 ? '是' : '否'
            }
          },
          { label: "工单状态", prop: "status", slot: true, width: 90 },