File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ export const DICT_TYPE = {
16
16
SYSTEM_ROLE_TYPE : 'system_role_type' ,
17
17
SYSTEM_DATA_SCOPE : 'system_data_scope' ,
18
18
SYSTEM_NOTICE_TYPE : 'system_notice_type' ,
19
- SYSTEM_OPERATE_TYPE : 'system_operate_type' ,
20
19
SYSTEM_LOGIN_TYPE : 'system_login_type' ,
21
20
SYSTEM_LOGIN_RESULT : 'system_login_result' ,
22
21
SYSTEM_SMS_CHANNEL_CODE : 'system_sms_channel_code' ,
@@ -39,6 +38,7 @@ export const DICT_TYPE = {
39
38
INFRA_CODEGEN_FRONT_TYPE : 'infra_codegen_front_type' ,
40
39
INFRA_CODEGEN_SCENE : 'infra_codegen_scene' ,
41
40
INFRA_FILE_STORAGE : 'infra_file_storage' ,
41
+ INFRA_OPERATE_TYPE : 'infra_operate_type' ,
42
42
43
43
// ========== BPM 模块 ==========
44
44
BPM_MODEL_CATEGORY : 'bpm_model_category' ,
Original file line number Diff line number Diff line change 70
70
<span >{{ scope.row.resultCode === 0 ? '成功' : '失败(' + scope.row.resultMsg + ')' }}</span >
71
71
</template >
72
72
</el-table-column >
73
+ <el-table-column label =" 操作模块" align =" center" prop =" operateModule" width =" 180" />
74
+ <el-table-column label =" 操作名" align =" center" prop =" operateName" width =" 180" />
75
+ <el-table-column label =" 操作类型" align =" center" prop =" operateType" >
76
+ <template #default =" scope " >
77
+ <dict-tag :type =" DICT_TYPE.INFRA_OPERATE_TYPE" :value =" scope.row.operateType" />
78
+ </template >
79
+ </el-table-column >
73
80
<el-table-column label =" 操作" align =" center" class-name =" small-padding fixed-width" >
74
81
<template v-slot =" scope " >
75
82
<el-button size =" mini" type =" text" icon =" el-icon-view" @click =" handleView(scope.row,scope.index)"
101
108
<div v-if =" form.resultCode === 0" >正常</div >
102
109
<div v-else-if =" form.resultCode > 0" >失败 | {{ form.resultCode }} || {{ form.resultMsg}}</div >
103
110
</el-form-item >
111
+ <el-form-item label =" 操作模块:" >{{ form.operateModule }}</el-form-item >
112
+ <el-form-item label =" 操作名:" >{{ form.operateName }}</el-form-item >
113
+ <el-form-item label =" 操作类型:" >
114
+ <dict-tag :type =" DICT_TYPE.INFRA_OPERATE_TYPE" :value =" form.operateType" />
115
+ </el-form-item >
104
116
</el-col >
105
117
</el-row >
106
118
</el-form >
You can’t perform that action at this time.
0 commit comments