Explorar o código

分类列表 完成

cxmo hai 11 meses
pai
achega
7e398654db

+ 15 - 3
src/lang/modules/ReportManagement/CategoryList.js

@@ -101,15 +101,21 @@ export const CategoryListEn = {
     category_name: "Category Name",
     category_name_hint: "Enter Category Name",
     category_name_check_hint: "Category Name: {name} Already Exists",
+    section_settings: "Section Settings",
+    add_section: "Add Section",
+    edit_section: "Edit Section",
     section_name: "Section Name",
     section_name_hint: "Enter Section Name",
     parent_category: "Parent Category",
+    parent_none: "none",
     related_variety: "Related Variety",
     related_variety_inputhint: "Please Select",
     related_variety_hint: "Control Report Reading Permission",
+    addition_successful: "Addition Successful",
     modification_successful: "Modification Successful",
     move_successful: "Move Successful",
-    edit_section_successfu: "Edit Section Successfu",
+    add_section_successful: "Add Section Successful",
+    edit_section_successful: "Edit Section Successful",
     setup_successful: "Setup Successful"
 };
 
@@ -216,15 +222,21 @@ export const CategoryListZh = {
     category_name: "分类名称",
     category_name_hint: "请输入分类名称",
     category_name_check_hint: "分类名称: {name} 已存在",
+    section_settings: "章节设置",
+    add_section: "添加章节",
+    edit_section: "编辑章节",
     section_name: "章节名称",
     section_name_hint: "请输入章节名称",
     parent_category: "上级分类",
+    parent_none:'无',
     related_variety: "关联品种",
     related_variety_inputhint: "请选择",
     related_variety_hint: "控制报告阅读权限",
+    addition_successful: "新增成功",
     modification_successful: "修改成功",
     move_successful: "移动成功",
-    edit_section_successfu: "编辑章节成功",
-    setup_successful: "设置成功"
+    add_section_successful: "添加章节成功",
+    edit_section_successful: "编辑章节成功",
+    setup_successful: "设置成功" 
 };
 

+ 36 - 19
src/views/classify_manage/chapterSettingV2.vue

@@ -4,7 +4,7 @@
             <el-button 
                 type="primary"
                 @click="addChapter"
-            >添加章节</el-button>
+            >{{ $t('ReportManage.CategoryList.add_section') }}</el-button>
         </div>
         <div class="content-box">
             <el-tree
@@ -15,7 +15,7 @@
                     children: 'Child'
                 }"
 				check-strictly
-				empty-text="暂无数据"
+				:empty-text="$t('Common.no_classify_msg')"
                 draggable
                 :allow-drop="canDropHandle"
                 @node-drop="dropOverHandle"
@@ -25,7 +25,11 @@
 					slot-scope="{ 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.ReportChapterTypeName}}</span>
                     </div>
 					
@@ -39,6 +43,7 @@
 
         <!-- 添加/编辑 章节 -->
     <el-dialog 
+        v-if="addDialogShow"
         :title="dialogTitle" 
         :modal-append-to-body='false' 
         :visible.sync="addDialogShow" 
@@ -49,18 +54,26 @@
         @close="addDialogClose"
     >
         <div style="display: flex;align-items: center;justify-content: center;">
-            <el-form :model="addForm" label-width="95px" :rules="addFormRules" ref="addForm">
-                <el-form-item label="章节名称" prop="ReportChapterTypeName">
-                    <el-input v-model="addForm.ReportChapterTypeName" style="width: 317px;" placeholder="请输入章节名称"></el-input>
+            <el-form :model="addForm" label-width="auto" :rules="addFormRules" ref="addForm">
+                <!-- 章节名称 -->
+                <el-form-item :label="$t('ReportManage.CategoryList.section_name')" prop="ReportChapterTypeName">
+                    <el-input 
+                        v-model="addForm.ReportChapterTypeName" 
+                        style="width: 317px;" 
+                        :placeholder="$t('ReportManage.CategoryList.section_name_hint')">
+                    </el-input>
                 </el-form-item>
-                <el-form-item label="上级分类">
-                    <el-input  disabled :value="researchType=='day'?'晨报':'周报'" style="width: 317px;" placeholder="请输入章节名称"></el-input>
+                <!-- 上级分类 -->
+                <el-form-item :label="$t('ReportManage.CategoryList.parent_category')">
+                    <el-input  disabled :value="researchType=='day'?'晨报':'周报'" style="width: 317px;" 
+                    :placeholder="$t('ReportManage.CategoryList.related_variety_inputhint')"></el-input>
                 </el-form-item>
-                <el-form-item prop="variety" label="关联品种">
+                <!-- 关联品种 -->
+                <el-form-item prop="variety" :label="$t('ReportManage.CategoryList.related_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>
@@ -68,7 +81,7 @@
                     <el-cascader
                         :options="reportVarietyList" 
                         v-model="addForm.ChartPermissionIdList" 
-                        placeholder="请选择"
+                        :placeholder="$t('ReportManage.CategoryList.related_variety_inputhint')"
                         collapse-tags
                         :props="{value:'PermissionId',label:'PermissionName',children:'Child',multiple: true,emitPath:false}" 
                         style="width:317px;"
@@ -77,8 +90,8 @@
             </el-form>
         </div>
         <div solt="footer" style="padding: 20px 0;text-align: center;">
-            <el-button size="medium" style="width:130px;" @click="addDialogShow=false">取消</el-button>
-            <el-button type="primary" size="medium" style="margin-left: 16px;width:130px ;" @click="addChapterSave">保存</el-button>
+            <el-button size="medium" style="width:130px;" @click="addDialogShow=false">{{ $t('Dialog.cancel_btn') }}</el-button>
+            <el-button type="primary" size="medium" style="margin-left: 16px;width:130px ;" @click="addChapterSave">{{ $t('Dialog.confirm_save_btn') }}</el-button>
       </div>
     </el-dialog>
         
@@ -134,7 +147,7 @@ export default {
         },
 
         addChapter(){
-            this.dialogTitle="添加章节"
+            this.dialogTitle=this.$t('ReportManage.CategoryList.add_section')
             this.addDialogShow=true
             this.addForm.ReportChapterTypeName=''
             this.addForm.ChartPermissionIdList=''
@@ -149,7 +162,7 @@ export default {
                 ReportChapterTypeId:row.ReportChapterTypeId,
                 ChartPermissionIdList:row.ChartPermissionIdList||''
             }
-            this.dialogTitle="编辑章节"
+            this.dialogTitle=this.$t('ReportManage.CategoryList.edit_section')
             this.addDialogShow=true
         },
 
@@ -171,7 +184,11 @@ export default {
             }
             requestMethod(params).then(res=>{
               if(res.Ret == 200){
-                this.$message.success(`${this.dialogTitle}成功`)
+                this.$message.success(
+                    params.ReportChapterTypeId
+                    ?this.$t('ReportManage.CategoryList.edit_section_successful')
+                    :this.$t('ReportManage.CategoryList.add_section_successful')
+                )
                 this.addDialogShow=false
                 this.getList()
               }
@@ -196,7 +213,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()
                 }
             })
@@ -225,7 +242,7 @@ export default {
             console.log(params);
             setChapterSort(params).then(res=>{
                 if(res.Ret===200){
-                    this.$message.success('移动成功')
+                    this.$message.success(this.$t('ReportManage.CategoryList.move_successful'))
                 }else{
                     this.getList()
                 }

+ 49 - 30
src/views/classify_manage/classifyEnlistV2.vue

@@ -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()
                 }

+ 52 - 29
src/views/classify_manage/classifylistV2.vue

@@ -14,14 +14,17 @@
                 </div>
             </div>
             <div style="display:flex;padding:10px;gap:10px">
-            <el-button 
-                type="primary"
-                @click="addClassify"
-                v-permission="permissionBtn.classifyBtn.classifyList_cnClassify_classifyAdd"
-            >添加分类</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.classifyBtn.classifyList_cnClassify_classifyAdd"
+                >
+                    {{$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">
@@ -33,7 +36,7 @@
                     children: 'Child'
                 }"
 				check-strictly
-				empty-text="暂无数据"
+				:empty-text="$t('Common.no_classify_msg')"
                 draggable
                 indent='76'
                 :allow-drop="canDropHandle"
@@ -44,12 +47,22 @@
 					slot-scope="{ 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>
 					
                     <div class="opt-box">
-                        <span class="editsty" v-if="['晨报','周报'].includes(data.ClassifyName)" @click="chapterSetting(data)" v-permission="permissionBtn.classifyBtn.classifyList_cnClassify_chapterSetting">章节设置</span>
+                        <!-- 章节设置 -->
+                        <span class="editsty" 
+                            v-if="['晨报','周报'].includes(data.ClassifyName)" 
+                            @click="chapterSetting(data)" 
+                            v-permission="permissionBtn.classifyBtn.classifyList_cnClassify_chapterSetting">
+                            {{ $t('ReportManage.CategoryList.section_settings') }}
+                        </span>
                         <img class="icon-drag" src="~@/assets/img/data_m/move_ico2.png" alt="">
                         <img class="icon-set" src="~@/assets/img/icons/variety_set.png" alt="" @click.stop="handleEdit(data)" v-permission="permissionBtn.classifyBtn.classifyList_cnClassify_classifyEdit">
                     </div>
@@ -59,8 +72,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">
@@ -68,28 +82,31 @@
                     :model="classifyForm" 
                     :rules="formRules" 
                     ref="formRef" 
-                    label-position="left"
                     hide-required-asterisk
-                    label-width="100px">
-                    <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-select v-model="classifyForm.parent_id" placeholder="请选择" style="width:400px;">
-                            <el-option label="无" :value="0"></el-option>
+                    <!-- 上级分类 -->
+                    <el-form-item prop="parent_id" :label="$t('ReportManage.CategoryList.parent_category')">
+                        <el-select v-model="classifyForm.parent_id" 
+                            :placeholder="$t('ReportManage.CategoryList.related_variety_inputhint')" style="width:400px;">
+                            <el-option :label="$t('ReportManage.CategoryList.parent_none')" :value="0"></el-option>
                             <el-option v-for="(item,index) in classifyparentArr" :key="index" :label="item.ClassifyName" :value="item.Id"></el-option>
                         </el-select>
                     </el-form-item>
-                    <el-form-item prop="variety" label="关联品种" v-if="classifyForm.parent_id&&permissionBtn.classifyBtn.classifyList_cnClassify_connect_variety">
+                    <!-- 关联品种 -->
+                    <el-form-item prop="variety" :label="$t('ReportManage.CategoryList.related_variety')" v-if="classifyForm.parent_id&&permissionBtn.classifyBtn.classifyList_cnClassify_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>
@@ -97,7 +114,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;"
@@ -109,12 +126,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>
@@ -141,7 +158,7 @@ export default {
                 variety:'',//关联的品种
             },
             formRules: {
-                classify_name: [{ required:true,message:'请输入分类名称',trigger:'blur'}]
+                classify_name: [{ required:true,message:this.$t('ReportManage.CategoryList.category_name_hint'),trigger:'blur'}]
             },
             classifyparentArr:[],
 
@@ -219,7 +236,12 @@ export default {
                 : await 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();
         },
@@ -248,7 +270,8 @@ 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()
                 }
             })
@@ -290,7 +313,7 @@ export default {
             console.log(params);
             classifyPermissionInterface.moveSort(params).then(res=>{
                 if(res.Ret===200){
-                    this.$message.success('移动成功')
+                    this.$message.success(this.$t('ReportManage.CategoryList.move_successful'))
                 }else{
                     this.getList()
                 }