Browse Source

任务信息报告加上创建时间

刘洋 1 year ago
parent
commit
524751bc4c
2 changed files with 3 additions and 2 deletions
  1. 2 2
      server.config.ts
  2. 1 0
      src/modules/admin-data/imformation-report/index.vue

+ 2 - 2
server.config.ts

@@ -3,11 +3,11 @@ import type { ServerOptions } from 'vite'
 const server: ServerOptions = {
   proxy: {
     '^/?(api|file)/': {
-      // target: 'http://192.168.10.41:8200',
+      target: 'http://192.168.10.41:8200',
       // target: 'http://192.168.10.178:8200',
       // target: 'http://192.168.10.108:8200',
       // target: 'http://cet-test.markingtool.cn',
-      target: 'http://192.168.10.136:80',
+      // target: 'http://192.168.10.136:80',
       // target: 'http://cet-dev.markingtool.cn:8200',
     },
   },

+ 1 - 0
src/modules/admin-data/imformation-report/index.vue

@@ -87,6 +87,7 @@ const columns: EpTableColumn[] = [
   { label: '用时', prop: 'spentTime' },
   { label: '状态', prop: 'statusName' },
   { label: '状态描述', prop: 'statusMsg' },
+  { label: '创建时间', prop: 'createTime' },
   { label: '操作', slotName: 'operation', showOverflowTooltip: false, minWidth: 80 },
 ]
 const { fetch: deleteRecord } = useFetch('removeImportOrExport')