|
@@ -15,15 +15,15 @@
|
|
|
ref="diaForm"
|
|
|
label-position="left"
|
|
|
hide-required-asterisk
|
|
|
- label-width="80px"
|
|
|
+ label-width="120px"
|
|
|
:model="formData"
|
|
|
:rules="formRules">
|
|
|
- <el-form-item label="上级分类" prop="classify">
|
|
|
+ <el-form-item :label="$t('SystemManage.DataAuth.parent_classify')" prop="classify">
|
|
|
<el-select
|
|
|
v-model="formData.classify"
|
|
|
- placeholder="请选择上级分类"
|
|
|
+ :placeholder="$t('SystemManage.DataAuth.placehloder_msg02')"
|
|
|
style="width:80%"
|
|
|
- :disabled="title==='编辑分类'&&!form.parentId">
|
|
|
+ :disabled="title===$t('SystemManage.DataAuth.edit_category')&&!form.parentId">
|
|
|
<el-option
|
|
|
v-for="item in classifyArr"
|
|
|
:key="item.ClassifyId"
|
|
@@ -32,17 +32,17 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="分类名称" prop="nodeName">
|
|
|
+ <el-form-item :label="$t('SystemManage.DataAuth.classify_name')" prop="nodeName">
|
|
|
<el-input
|
|
|
v-model="formData.nodeName"
|
|
|
style="width: 80%"
|
|
|
- placeholder="分类名称"></el-input>
|
|
|
+ :placeholder="$t('SystemManage.DataAuth.classify_name')"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<div class="dia-bot">
|
|
|
- <el-button type="primary" style="margin-right:20px" @click="saveHandle">保存</el-button>
|
|
|
- <el-button type="primary" plain @click="cancelHandle">取消</el-button>
|
|
|
+ <el-button type="primary" style="margin-right:20px" @click="saveHandle">{{$t('Dialog.confirm_save_btn')}}</el-button>
|
|
|
+ <el-button type="primary" plain @click="cancelHandle">{{$t('Dialog.cancel_btn')}}</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -98,7 +98,7 @@ export default {
|
|
|
const res = await dataAuthInterface.classifyOne();
|
|
|
if(res.Ret !== 200) return
|
|
|
this.classifyArr = res.Data || [];
|
|
|
- if(this.title === '添加分类' || !this.form.parentId) {
|
|
|
+ if(this.title === this.$t('SystemManage.DataAuth.add_category') || !this.form.parentId) {
|
|
|
this.classifyArr.unshift({
|
|
|
ClassifyId: 0,
|
|
|
ClassifyName: '无'
|
|
@@ -109,7 +109,7 @@ export default {
|
|
|
async saveHandle() {
|
|
|
await this.$refs.diaForm.validate();
|
|
|
|
|
|
- const res = this.title === '添加分类'
|
|
|
+ const res = this.title === this.$t('SystemManage.DataAuth.add_category')
|
|
|
? await dataAuthInterface.classifyAdd({
|
|
|
ParentId: this.formData.classify,
|
|
|
ClassifyName: this.formData.nodeName
|
|
@@ -121,7 +121,7 @@ export default {
|
|
|
})
|
|
|
|
|
|
if(res.Ret !== 200) return
|
|
|
- this.$message.success('保存成功');
|
|
|
+ this.$message.success(this.$t('MsgPrompt.saved_msg'));
|
|
|
this.callbackHandle();
|
|
|
},
|
|
|
/* 成功回调 */
|