Просмотр исходного кода

1.0.0-yd.3 修改任务调度执行成功字段显示

liuyanpeng 10 месяцев назад
Родитель
Сommit
3b95fe4e47
2 измененных файлов с 4 добавлено и 1 удалено
  1. 1 1
      package.json
  2. 3 0
      src/customer/TransferTask.vue

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "client-wms-v5",
   "description": "Leanwo Prodog Client",
-  "version": "1.0.0-yd.2",
+  "version": "1.0.0-yd.3",
   "author": "yangzhijie1488 <yangzhijie1488@163.com>",
   "scripts": {
     "dev": "cross-env webpack serve --config ./webpack.dev.js",

+ 3 - 0
src/customer/TransferTask.vue

@@ -56,6 +56,9 @@
         <template v-if="column.dataIndex === 'index'">
           {{ index + 1 }}
         </template>
+        <template v-if="column.dataIndex === 'success'">
+          <a-tag v-if="record.success === true" color="green">成功</a-tag>
+        </template>
         <template v-if="column.dataIndex === 'operation'">
           <a-tag v-if="record.executeStatus === '已完成'" color="green">已完成</a-tag>
           <a-tag v-if="record.executeStatus === '执行中'" color="error">执行中</a-tag>