lxf 4 周之前
父节点
当前提交
633305fdcb
共有 1 个文件被更改,包括 7 次插入3 次删除
  1. 7 3
      jy-ui/src/views/business/log/userOperation/index.vue

+ 7 - 3
jy-ui/src/views/business/log/userOperation/index.vue

@@ -150,20 +150,24 @@ const columnConfig: ColumnConfigType[] = [
       }
       return ''
     },
-    width: 120
+    width: 120,
+    if: () => !(props.logData && props.logData.id)
   },
   {
     prop: 'auditTime',
     label: '审核时间',
-    width: 160
+    width: 160,
+    if: () => !(props.logData && props.logData.id)
   },
   {
     prop: 'remark',
     label: '审核注释',
-    width: 160
+    width: 160,
+    if: () => !(props.logData && props.logData.id)
   },
   {
     width: 120,
+    if: () => !(props.logData && props.logData.id),
     handleConfig: [
       {
         if: (row) => row.auditStatus == 0,