From bb455cebea17349a2f5ed0d4e86eac3905b24585 Mon Sep 17 00:00:00 2001 From: Your Name <123456> Date: 星期一, 26 九月 2022 17:19:35 +0800 Subject: [PATCH] '修改' --- src/views/specialWorkManage/workFlow/approveRule/components/approveLevelDialog.vue | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/views/specialWorkManage/workFlow/approveRule/components/approveLevelDialog.vue b/src/views/specialWorkManage/workFlow/approveRule/components/approveLevelDialog.vue index 6723858..f817e86 100644 --- a/src/views/specialWorkManage/workFlow/approveRule/components/approveLevelDialog.vue +++ b/src/views/specialWorkManage/workFlow/approveRule/components/approveLevelDialog.vue @@ -46,7 +46,7 @@ <el-table-column property="itemName" label="审批项名称" show-overflow-tooltip> </el-table-column> <el-table-column property="type" label="审批项类型" show-overflow-tooltip> <template slot-scope="scope"> - <div v-for="item in typeList"> + <div v-for="item in approveTypeList"> <div v-if="scope.row.type === item.id"> <span>{{item.name}}</span> </div> @@ -132,6 +132,11 @@ { id: 1, name: '单人' }, { id: 2, name: '多人' }, { id: 3, name: '分析人' } + ], + approveTypeList: [ + { id: 1, name: '数值' }, + { id: 2, name: '选项' }, + { id: 3, name: '填空' } ], workLevelList: [], actionList: [], @@ -220,7 +225,7 @@ } else { this.$message({ type: 'warning', - message: res.data.msg + message: res.data.message }); } }, @@ -232,7 +237,7 @@ } else { this.$message({ type: 'warning', - message: res.data.msg + message: res.data.message }); } }, -- Gitblit v1.9.2