dcafd8e1 by chentao

no message

1 parent b2b13269
...@@ -134,7 +134,7 @@ export default { ...@@ -134,7 +134,7 @@ export default {
134 cateName: '分类', 134 cateName: '分类',
135 procedureName: '程序', 135 procedureName: '程序',
136 versionName: '版本', 136 versionName: '版本',
137 forceName: '强制升级', 137 constrainName: '强制升级',
138 releaseTimeName: '发布日期', 138 releaseTimeName: '发布日期',
139 releaseStatusName: '发布状态', 139 releaseStatusName: '发布状态',
140 addContrTipsName: '新增功能描述', 140 addContrTipsName: '新增功能描述',
...@@ -150,7 +150,7 @@ export default { ...@@ -150,7 +150,7 @@ export default {
150 dialogFile: '升级包文件', 150 dialogFile: '升级包文件',
151 dialogType: '升级包类型', 151 dialogType: '升级包类型',
152 dialogStatus: '升级包', 152 dialogStatus: '升级包',
153 dialogForce: '强制升级', 153 dialogConstrain: '强制升级',
154 dialogVersion: '版本号', 154 dialogVersion: '版本号',
155 dialogDest: '新增功能描述', 155 dialogDest: '新增功能描述',
156 dialogConfim: '确认', 156 dialogConfim: '确认',
......
...@@ -77,11 +77,11 @@ ...@@ -77,11 +77,11 @@
77 ></dict-tag> 77 ></dict-tag>
78 </template> 78 </template>
79 </el-table-column> 79 </el-table-column>
80 <el-table-column :label="$t('upgradation.forceName')" prop="force"> 80 <el-table-column :label="$t('upgradation.constrainName')" prop="constrain">
81 <template #default="{ row }"> 81 <template #default="{ row }">
82 <dict-tag 82 <dict-tag
83 :options="force" 83 :options="constrain"
84 :value="row.force" 84 :value="row.constrain"
85 ></dict-tag> 85 ></dict-tag>
86 </template> 86 </template>
87 </el-table-column> 87 </el-table-column>
...@@ -163,15 +163,15 @@ ...@@ -163,15 +163,15 @@
163 /> 163 />
164 </el-select> 164 </el-select>
165 </el-form-item> 165 </el-form-item>
166 <el-form-item :label="$t('upgradation.dialogForce')"> 166 <el-form-item :label="$t('upgradation.dialogConstrain')">
167 <el-select 167 <el-select
168 v-model="showForm.form.force" 168 v-model="showForm.form.constrain"
169 placeholder="Select" 169 placeholder="Select"
170 closeabled 170 closeabled
171 style="width: 240px;" 171 style="width: 240px;"
172 > 172 >
173 <el-option 173 <el-option
174 v-for="item in force_status" 174 v-for="item in constrain_status"
175 :key="item.value" 175 :key="item.value"
176 :label="item.label" 176 :label="item.label"
177 :value="item.value" 177 :value="item.value"
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!