|
@@ -2,18 +2,25 @@
|
|
|
<div class="classify-page">
|
|
|
<div class="top-wrap">
|
|
|
<div class="type-box">
|
|
|
- <div class="item" @click="$emit('typeChange','1')">中文分类</div>
|
|
|
- <div class="item active">英文分类</div>
|
|
|
+ <!-- 中文分类 -->
|
|
|
+ <div class="item" @click="$emit('typeChange','1')">
|
|
|
+ {{ $t('ReportManage.CategoryList.chinese_tabs') }}
|
|
|
+ </div>
|
|
|
+ <!-- 英文分类 -->
|
|
|
+ <div class="item active">{{ $t('ReportManage.CategoryList.english_tabs') }}</div>
|
|
|
</div>
|
|
|
<div style="display:flex;padding:10px;gap:10px">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- @click="addClassify"
|
|
|
- v-permission="permissionBtn.enClassifyBtn.classifyList_enClassify_add"
|
|
|
- >添加分类</el-button>
|
|
|
- <el-input placeholder="分类名称" v-model="searchVal" style="max-width: 262px;" @change="getList" clearable>
|
|
|
- <i slot="prefix" class="el-input__icon el-icon-search"></i>
|
|
|
- </el-input>
|
|
|
+ <!-- 添加分类 -->
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="addClassify"
|
|
|
+ v-permission="permissionBtn.enClassifyBtn.classifyList_enClassify_add"
|
|
|
+ >
|
|
|
+ {{$t('ReportManage.CategoryList.add_category')}}
|
|
|
+ </el-button>
|
|
|
+ <el-input :placeholder="$t('ReportManage.CategoryList.category_name')" v-model="searchVal" style="max-width: 262px;" @change="getList" clearable>
|
|
|
+ <i slot="prefix" class="el-input__icon el-icon-search"></i>
|
|
|
+ </el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="content-box">
|
|
@@ -25,7 +32,7 @@
|
|
|
children: 'Child'
|
|
|
}"
|
|
|
check-strictly
|
|
|
- empty-text="暂无数据"
|
|
|
+ :empty-text="$t('Common.no_classify_msg')"
|
|
|
draggable
|
|
|
indent='76'
|
|
|
:allow-drop="canDropHandle"
|
|
@@ -36,7 +43,10 @@
|
|
|
slot-scope="{ node, data }"
|
|
|
>
|
|
|
<div>
|
|
|
- <span :class="['tag', data.Enabled==1?'open':'close']" @click.stop="handleEnableSet(data)">{{data.Enabled==1?'启用':'禁用'}}</span>
|
|
|
+ <span
|
|
|
+ :class="['tag', data.Enabled==1?'open':'close']"
|
|
|
+ @click.stop="handleEnableSet(data)">
|
|
|
+ {{data.Enabled==1?$t('Common.enable'):$t('Common.disable')}}</span>
|
|
|
<span>{{data.ClassifyName}}</span>
|
|
|
</div>
|
|
|
|
|
@@ -50,8 +60,9 @@
|
|
|
|
|
|
<!-- 分类弹窗 -->
|
|
|
<m-dialog
|
|
|
- :title="classifyForm.classify_id?'编辑分类':'新增分类'"
|
|
|
+ :title="classifyForm.classify_id?$t('ReportManage.CategoryList.edit_category'):$t('ReportManage.CategoryList.add_category')"
|
|
|
:show.sync="classifyForm.show"
|
|
|
+ v-if="classifyForm.show"
|
|
|
width="650px"
|
|
|
>
|
|
|
<div style="padding-left: 50px">
|
|
@@ -59,26 +70,29 @@
|
|
|
:model="classifyForm"
|
|
|
:rules="formRules"
|
|
|
ref="formRef"
|
|
|
- label-position="left"
|
|
|
hide-required-asterisk
|
|
|
- label-width="90px">
|
|
|
- <el-form-item prop="classify_name" label="分类名称">
|
|
|
+ label-width="auto">
|
|
|
+ <!-- 分类名称 -->
|
|
|
+ <el-form-item prop="classify_name" :label="$t('ReportManage.CategoryList.category_name')">
|
|
|
<el-input
|
|
|
type="text"
|
|
|
v-model="classifyForm.classify_name"
|
|
|
- placeholder="请输入分类名称"
|
|
|
+ :placeholder="$t('ReportManage.CategoryList.category_name_hint')"
|
|
|
style="width:400px;"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop="parent_id" label="上级分类">
|
|
|
- <el-cascader :options="classifyparentArr" v-model="classifyForm.parent_id" placeholder="请选择"
|
|
|
+ <!-- 上级分类 -->
|
|
|
+ <el-form-item prop="parent_id" :label="$t('ReportManage.CategoryList.parent_category')">
|
|
|
+ <el-cascader :options="classifyparentArr" v-model="classifyForm.parent_id"
|
|
|
+ :placeholder="$t('ReportManage.CategoryList.related_variety_inputhint')"
|
|
|
:props="{value:'Id',label:'ClassifyName',children:'Child',checkStrictly:true,emitPath:false}" style="min-width:400px;"></el-cascader>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop="variety" label="关联品种" v-if="classifyForm.level==3&&permissionBtn.enClassifyBtn.classifyList_enClassify_connect_variety">
|
|
|
+ <!-- 关联品种 -->
|
|
|
+ <el-form-item prop="variety" :label="$t('ReportManage.CategoryList.related_variety')" v-if="classifyForm.level==3&&permissionBtn.enClassifyBtn.classifyList_enClassify_connect_variety">
|
|
|
<template slot="label">
|
|
|
- <el-tooltip class="item" effect="dark" content="控制报告阅读权限">
|
|
|
+ <el-tooltip class="item" effect="dark" :content="$t('ReportManage.CategoryList.related_variety_hint')">
|
|
|
<div>
|
|
|
- <span>关联品种</span>
|
|
|
+ <span>{{ $t('ReportManage.CategoryList.related_variety') }}</span>
|
|
|
<i class="el-icon-info"></i>
|
|
|
</div>
|
|
|
</el-tooltip>
|
|
@@ -86,7 +100,7 @@
|
|
|
<el-cascader
|
|
|
:options="reportVarietyList"
|
|
|
v-model="classifyForm.variety"
|
|
|
- placeholder="请选择"
|
|
|
+ :placeholder="$t('ReportManage.CategoryList.related_variety_inputhint')"
|
|
|
collapse-tags
|
|
|
:props="{value:'PermissionId',label:'PermissionName',children:'Child',multiple: true,emitPath:false}"
|
|
|
style="min-width:400px;"
|
|
@@ -98,12 +112,12 @@
|
|
|
<el-button
|
|
|
@click="cancelClassify"
|
|
|
style="width: 132px; height: 40px"
|
|
|
- >取消</el-button>
|
|
|
+ >{{ $t('Dialog.cancel_btn') }}</el-button>
|
|
|
<el-button
|
|
|
@click="setClassifyHandle"
|
|
|
type="primary"
|
|
|
style="width: 132px; height: 40px"
|
|
|
- >保存</el-button>
|
|
|
+ >{{ $t('Dialog.confirm_save_btn') }}</el-button>
|
|
|
</div>
|
|
|
</m-dialog>
|
|
|
</div>
|
|
@@ -131,7 +145,7 @@ export default {
|
|
|
level:1
|
|
|
},
|
|
|
formRules: {
|
|
|
- classify_name: [{ required:true,message:'请输入分类名称',trigger:'blur'}]
|
|
|
+ classify_name: [{ required:true,message:this.$t('ReportManage.CategoryList.category_name_hint'),trigger:'blur'}]
|
|
|
},
|
|
|
classifyparentArr:[],
|
|
|
|
|
@@ -159,7 +173,7 @@ export default {
|
|
|
...item
|
|
|
}
|
|
|
})
|
|
|
- this.classifyparentArr.unshift({Id:'0',ClassifyName:'无',Child:null})
|
|
|
+ this.classifyparentArr.unshift({Id:'0',ClassifyName:this.$t('ReportManage.CategoryList.parent_none'),Child:null})
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -176,7 +190,7 @@ export default {
|
|
|
Enabled:item.Enabled==1?0:1
|
|
|
}).then(res=>{
|
|
|
if(res.Ret===200){
|
|
|
- this.$message.success('设置成功')
|
|
|
+ this.$message.success(this.$t('ReportManage.CategoryList.setup_successful'))
|
|
|
this.getList('init')
|
|
|
}
|
|
|
})
|
|
@@ -216,7 +230,12 @@ export default {
|
|
|
: await classifyEnInterface.classifyAdd(params)
|
|
|
|
|
|
if(Ret !== 200) return
|
|
|
- this.$message.success(Msg)
|
|
|
+ //this.$message.success(Msg)
|
|
|
+ this.$message.success(
|
|
|
+ classify_id
|
|
|
+ ?this.$t('ReportManage.CategoryList.modification_successful')
|
|
|
+ :this.$t('ReportManage.CategoryList.addition_successful')
|
|
|
+ )
|
|
|
this.cancelClassify();
|
|
|
this.getList('init');
|
|
|
},
|
|
@@ -269,7 +288,7 @@ export default {
|
|
|
console.log(params);
|
|
|
classifyEnInterface.moveSort(params).then(res=>{
|
|
|
if(res.Ret===200){
|
|
|
- this.$message.success('移动成功')
|
|
|
+ this.$message.success(this.$t('ReportManage.CategoryList.move_successful'))
|
|
|
}else{
|
|
|
this.getList()
|
|
|
}
|