소스 검색

feat: template页面表格新增两个字段

Jack Zhou 1 주 전
부모
커밋
938bfea9aa
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      src/views/TemplateManagement/src/components/TableView/src/TableView.vue

+ 10 - 0
src/views/TemplateManagement/src/components/TableView/src/TableView.vue

@@ -51,6 +51,16 @@ const tableColumns = [
     field: 'created_time',
     formatter: 'dateTime',
     sortable: true
+  },
+  {
+    title: 'Created By',
+    type: 'normal',
+    field: 'create_by'
+  },
+  {
+    title: 'Modify By',
+    type: 'normal',
+    field: 'modify_by'
   }
 ]
 const tableOriginColumnsField = ref([...tableColumns])