bding 1 год назад
Родитель
Сommit
aaa494c3e5
30 измененных файлов с 296 добавлено и 185 удалено
  1. 0 3
      src/App.vue
  2. 20 16
      src/lang/commonLang.js
  3. 2 0
      src/lang/en.js
  4. 1 1
      src/lang/langUtils.js
  5. 2 2
      src/lang/modules/ReportManagement/AuthorManagement.js
  6. 2 2
      src/lang/modules/ReportManagement/CloudPage.js
  7. 2 2
      src/lang/modules/ReportManagement/CommodityConfiguration.js
  8. 67 0
      src/lang/modules/ReportManagement/SmartReport.js
  9. 24 14
      src/lang/modules/SemanticsManage/DocumentComparison.js
  10. 2 2
      src/lang/modules/SemanticsManage/DocumentManagement.js
  11. 2 2
      src/lang/modules/SemanticsManage/TagManagement.js
  12. 2 2
      src/lang/modules/Slides/commonLang.js
  13. 7 7
      src/lang/modules/Slides/index.js
  14. 2 2
      src/lang/modules/Slides/pptList.js
  15. 2 2
      src/lang/modules/Slides/pptPresent.js
  16. 2 0
      src/lang/zh.js
  17. 1 1
      src/main.js
  18. 17 1
      src/views/Home.vue
  19. 0 6
      src/views/report_manage/cloudDisk.vue
  20. 32 28
      src/views/report_manage/reportAuthor.vue
  21. 5 4
      src/views/report_manage/reportVariety.vue
  22. 7 6
      src/views/semantics_manage/document/documentEditPage.vue
  23. 4 5
      src/views/semantics_manage/documentPage.vue
  24. 12 12
      src/views/semantics_manage/semantics/components/saveSemanticDialog.vue
  25. 4 4
      src/views/semantics_manage/semantics/components/selectFileDialog.vue
  26. 3 3
      src/views/semantics_manage/semantics/components/selectLabelDetail.vue
  27. 14 7
      src/views/semantics_manage/semantics/semanticsEditPage.vue
  28. 6 6
      src/views/semantics_manage/semanticsPage.vue
  29. 27 20
      src/views/semantics_manage/tagPage.vue
  30. 25 25
      src/views/smartReport/reportList.vue

+ 0 - 3
src/App.vue

@@ -27,9 +27,6 @@ export default {
       });
     },
   },
-  created(){
-    this.$i18n.locale = 'zh'
-  }
 };
 </script>
 

+ 20 - 16
src/lang/commonLang.js

@@ -3,69 +3,73 @@ export default {
   Dialog: {
     cancel_btn: {
       en: "Cancel",
-      ch: "取消",
+      zh: "取消",
     },
     confirm_btn: {
       en: "Confirm",
-      ch: "确定",
+      zh: "确定",
     },
     confirm_save_btn: {
       en: "Save",
-      ch: "保存 ",
+      zh: "保存 ",
     },
   },
   Table: {
     add_btn: {
       en: "Add",
-      ch: "添加",
+      zh: "添加",
     },
     edit_btn: {
       en: "Edit",
-      ch: "编辑",
+      zh: "编辑",
     },
     delete_btn: {
       en: "Delete",
-      ch: "删除",
+      zh: "删除",
     },
     column_operations: {
       en: "Operations",
-      ch: "操作",
+      zh: "操作",
     },
     prompt_slogan: {
       en: "No data available.",
-      ch: "暂无数据",
+      zh: "暂无数据",
     },
   },
   Confirm: {
     prompt: {
-      en: "Prompt",
-      ch: "提示 ",
+      en: "Note",
+      zh: "提示 ",
     },
     prompt_slogan: {
       en: "No data available.",
-      ch: "暂无数据",
+      zh: "暂无数据",
     },
   },
   MsgPrompt:{
     delete_msg:{
       en: "Delete successful",
-      ch: "删除成功",
+      zh: "删除成功",
     },
     edit_msg:{
       en: "Edited successfully.",
-      ch: "编辑成功",
+      zh: "编辑成功",
     },
     add_msg:{
       en: "Added successfully.",
-      ch: "新增成功",
+      zh: "新增成功",
     },
     publish_msg:{
       en: "Publish successfully.",
-      ch: "发布成功",
+      zh: "发布成功",
+    },
+    saved_msg:{
+      en: "Saved successfully.",
+      zh: "保存成功",
     },
     delete_info_msg:{
       en: "Are you sure you want to permanently delete this file?",
-      ch: "删除后不可恢复,是否确认删除?",
+      zh: "删除后不可恢复,是否确认删除?",
     }
   }
 };

+ 2 - 0
src/lang/en.js

@@ -5,6 +5,7 @@ import { transformLanguageData } from "./langUtils";
 import { CloudPageEn } from "./modules/ReportManagement/CloudPage";
 import { CommodityConfigurationEn } from "./modules/ReportManagement/CommodityConfiguration";
 import { AuthorManagementEn } from "./modules/ReportManagement/AuthorManagement";
+import { SmartReportEn } from "./modules/ReportManagement/SmartReport";
 import { DocumentComparisonEn } from "./modules/SemanticsManage/DocumentComparison";
 import { DocumentManagementEn } from "./modules/SemanticsManage/DocumentManagement";
 import { TagManagementEn } from "./modules/SemanticsManage/TagManagement";
@@ -24,6 +25,7 @@ export default {
     CloudPage: CloudPageEn,
     CommodityConfiguration: CommodityConfigurationEn,
     AuthorManagement: AuthorManagementEn,
+    ...SmartReportEn,
   },
   // 语义分析----模块
   SemanticsManage: {

+ 1 - 1
src/lang/langUtils.js

@@ -11,6 +11,6 @@ export function transformLanguageData(originalObject, targetLanguage) {
       transformedData[key] = originalObject[key][targetLanguage];
     }
   }
-
+console.log(transformedData);
   return transformedData;
 }

+ 2 - 2
src/lang/modules/ReportManagement/AuthorManagement.js

@@ -3,7 +3,7 @@
  */
 
 /* 英文 */
-export const AuthorManagementZh = {
+export const AuthorManagementEn = {
   add_author_btn: "Add author",
   edit_author_btn: "Edit author",
   author_input_name: "Author name",
@@ -23,7 +23,7 @@ export const AuthorManagementZh = {
 };
 
 /* 中文 */
-export const AuthorManagementEn = {
+export const AuthorManagementZh = {
   add_author_btn: "添加作者",
   edit_author_btn: "编辑作者",
   author_input_name: "作者名称",

+ 2 - 2
src/lang/modules/ReportManagement/CloudPage.js

@@ -3,7 +3,7 @@
  */
 
 /* 英文 */
-export const CloudPageZh = {
+export const CloudPageEn = {
   // 新建文件夹
   folder_btn: "New Folder",
   input_content: "Please enter keyword",
@@ -39,7 +39,7 @@ export const CloudPageZh = {
 };
 
 /* 中文 */
-export const CloudPageEn = {
+export const CloudPageZh = {
   // 新建文件夹
   folder_btn: "新建文件夹",
   input_content: "请输入关键字",

+ 2 - 2
src/lang/modules/ReportManagement/CommodityConfiguration.js

@@ -3,7 +3,7 @@
  */
 
 /* 英文 */
-export const CommodityConfigurationZh = {
+export const CommodityConfigurationEn = {
   product_type: "Product type",
   add_product_btn: "Add product",
   add_product_input: "Please input the product type",
@@ -21,7 +21,7 @@ export const CommodityConfigurationZh = {
 };
 
 /* 中文 */
-export const CommodityConfigurationEn = {
+export const CommodityConfigurationZh = {
   product_type: "品种名称",
   add_product_btn: "添加品种",
   add_product_input: "请输入品种名称",

+ 67 - 0
src/lang/modules/ReportManagement/SmartReport.js

@@ -0,0 +1,67 @@
+/**
+ * 研报管理--智能研报 smart_report
+ */
+
+/* 英文 */
+export const SmartReportEnS = {
+  smart_add_report:'Add report',
+  smart_filter_options:'Filter options',
+  smart_publish_time:'Publish Time',
+  smart_approval_time:'Approval Time',
+  smart_update_time:'Update Time',
+  smart_update_frequency_filter:'Update frequency filter',
+  smart_annually:'Annually',
+  smart_semi_annually:'Semi-annually',
+  smart_quarterly:'Quarterly',
+  smart_monthly:'Monthly',
+  smart_bi_weekly:'Bi-weekly',
+  smart_weekly:'Weekly',
+  smart_daily:'Daily',
+  smart_irregularly:'Irregularly',
+  smart_type_filtering:'Type Filtering',
+  smart_status_filtering:'Status Filtering',
+  smart_unpublished:'Unpublished',
+  smart_published:'Published',
+  smart_pending:'Pending',
+  smart_awaiting_approval:'Awaiting Approval',
+  smart_rejected:'Rejected',
+  smart_approved:'Approved',
+  smart_filtering_criteria:'Filtering criteria',
+  smart_title_creator_updater:'Title/Creator/Updater',
+  smart_report_title:'Report title',
+
+};
+
+/* 中文 */
+export const SmartReportZh = {
+  smart_add_report:'添加研报',
+  smart_filter_options:'筛选项',
+  smart_publish_time:'发布时间',
+  smart_approval_time:'审批时间',
+  smart_update_time:'更新时间',
+  smart_update_frequency_filter:'更新频度筛选',
+  smart_annually:'年度',
+  smart_semi_annually:'半年度',
+  smart_quarterly:'季度',
+  smart_monthly:'月度',
+  smart_bi_weekly:'双周度',
+  smart_weekly:'周度',
+  smart_daily:'日度',
+  smart_irregularly:'不定时',
+  smart_type_filtering:'类型筛选',
+  smart_status_filtering:'状态筛选',
+  smart_unpublished:'未发布',
+  smart_published:'已发布',
+  smart_pending:'待提交',
+  smart_awaiting_approval:'待审批',
+  smart_rejected:'已驳回',
+  smart_approved:'已通过',
+  smart_filtering_criteria:'筛选条件',
+  smart_title_creator_updater:'标题/创建人/更新人',
+  smart_report_title:'报告标题',
+  
+};
+
+/**
+ * $t('ReportManage.smart_add_report')
+*/

+ 24 - 14
src/lang/modules/SemanticsManage/DocumentComparison.js

@@ -3,7 +3,7 @@
  */
 
 /* 英文 */
-export const DocumentComparisonZh = {
+export const DocumentComparisonEn = {
   add_document_btn: "Add Document",
   document_name: "Document Name",
   document_category: "Document Category",
@@ -25,17 +25,21 @@ export const DocumentComparisonZh = {
   show_only_mine: "Show Only Mine",
   semantic_analysis_name: "Semantic Analysis Name",
   semantic_analysis_name_input: "Please enter semantic analysis name",
-  add_next_section:'Add Next Section',
+  add_next_section: "Add Next Section",
   number_tags_attached: "Number of Tags Attached",
-  document_comparison_btn:'Add Document Comparison',
-  author_detail:'Author',
-  creation_time_detail:'Creation Time',
-  no_image_information_available: 'No image information available.'
-
+  document_comparison_btn: "Add Document Comparison",
+  author_detail: "Author",
+  creation_time_detail: "Creation Time",
+  no_image_information_available: "No image information available.",
+  preview_results: "Preview Results",
+  radio_yes: "Yes",
+  radio_no: "No",
+  upload_result_image: "Upload Result Image",
+  please_keep_least_one_document: "Please keep at least one document.",
 };
 
 /* 中文 */
-export const DocumentComparisonEn = {
+export const DocumentComparisonZh = {
   add_document_btn: "添加文档",
   document_name: "文档名称",
   document_category: "文档分类",
@@ -57,12 +61,18 @@ export const DocumentComparisonEn = {
   show_only_mine: "只看我的",
   semantic_analysis_name: "语义分析名称",
   semantic_analysis_name_input: "请输入语义分析名称",
-  add_next_section:'添加下一段',
+  add_next_section: "添加下一段",
   number_tags_attached: "已打标签数",
-  document_comparison_btn:'添加文档对比',
-  author_detail:'作者',
-  creation_time_detail:'创建时间',
-  no_image_information_available: '暂无图片信息'
+  document_comparison_btn: "添加文档对比",
+  author_detail: "作者",
+  creation_time_detail: "创建时间",
+  no_image_information_available: "暂无图片信息",
+  parent_directory: "所属目录",
+  preview_results: "是否预览结果",
+  radio_yes: "是",
+  radio_no: "否",
+  upload_result_image: "是否上传结果图片",
+  please_keep_least_one_document: "请至少保留一个文档",
 };
 
 /*
@@ -74,4 +84,4 @@ export const DocumentComparisonEn = {
 复制到Office
 下载
 复制到微信
-*/
+*/

+ 2 - 2
src/lang/modules/SemanticsManage/DocumentManagement.js

@@ -3,7 +3,7 @@
  */
 
 /* 英文 */
-export const DocumentManagementZh = {
+export const DocumentManagementEn = {
   document_name: "Document Name",
   add_document_btn: "Add Document",
   input_content: "Please enter document name",
@@ -24,7 +24,7 @@ export const DocumentManagementZh = {
 };
 
 /* 中文 */
-export const DocumentManagementEn = {
+export const DocumentManagementZh = {
   document_name: "文档名称",
   add_document_btn: "添加添加文档",
   input_content: "请输入文件名称",

+ 2 - 2
src/lang/modules/SemanticsManage/TagManagement.js

@@ -3,7 +3,7 @@
  */
 
 /* 英文 */
-export const TagManagementZh = {
+export const TagManagementEn = {
   add_tag_btn: "Add Tag",
   tag_name: "Tag Name ",
   input_content: "Please enter tag name",
@@ -15,7 +15,7 @@ export const TagManagementZh = {
 };
 
 /* 中文 */
-export const TagManagementEn = {
+export const TagManagementZh = {
   add_tag_btn: "添加标签",
   tag_name: "标签名称",
   input_content: "请输入标签名称",

+ 2 - 2
src/lang/modules/Slides/commonLang.js

@@ -3,7 +3,7 @@
  */
 
 /* 英文 */
-export const operationsZh = {
+export const operationsEn = {
   operations_copy: "Copy",
   operations_cut: "Cut",
   operations_rename: "Rename",
@@ -20,7 +20,7 @@ export const operationsZh = {
 };
 
 /* 中文 */
-export const operationsEn = {
+export const operationsZh = {
   operations_copy: "复制",
   operations_cut: "剪切",
   operations_rename: "重命名",

+ 7 - 7
src/lang/modules/Slides/index.js

@@ -6,15 +6,15 @@ import { litsZh, listEn } from "./pptList";
 import { presentZh, presentEn } from "./pptPresent";
 import { operationsZh, operationsEn } from "./commonLang";
 /* 英文 */
-export const SlidesZh = {
-  ...litsZh,
-  ...operationsZh,
-  ...presentZh
-};
-
-/* 中文 */
 export const SlidesEn = {
   ...listEn,
   ...operationsEn,
   ...presentEn
 };
+
+/* 中文 */
+export const SlidesZh = {
+  ...litsZh,
+  ...operationsZh,
+  ...presentZh
+};

+ 2 - 2
src/lang/modules/Slides/pptList.js

@@ -3,7 +3,7 @@
  */
 
 /* 英文 */
-export const litsZh = {
+export const litsEn = {
   add_ppt_btn: "Add PPT",
   ppt_merge_btn: "Merge PPTs",
   input_ppt_title: "Please input slide title",
@@ -44,7 +44,7 @@ export const litsZh = {
 };
 
 /* 中文 */
-export const listEn = {
+export const listZh = {
   add_ppt_btn: "添加ppt",
   ppt_merge_btn: "合并ppt",
   input_ppt_title: "请输入PPT标题",

+ 2 - 2
src/lang/modules/Slides/pptPresent.js

@@ -3,7 +3,7 @@
  */
 
 /* 英文 */
-export const presentZh = {
+export const presentEn = {
   portrait_mode_playback: "Portrait mode playback",
   play_from_current_slide: "Play from current slide",
   play_for_the_first_slide: "Play for the first slide",
@@ -38,7 +38,7 @@ export const presentZh = {
 };
 
 /* 中文 */
-export const presentEn = {
+export const presentZh = {
   portrait_mode_playback: "人像模式播放",
   play_from_current_slide: "从当前页播放",
   play_for_the_first_slide: "从首页播放",

+ 2 - 0
src/lang/zh.js

@@ -5,6 +5,7 @@ import { transformLanguageData } from "./langUtils";
 import { CloudPageZh } from "./modules/ReportManagement/CloudPage";
 import { CommodityConfigurationZh } from "./modules/ReportManagement/CommodityConfiguration";
 import { AuthorManagementZh } from "./modules/ReportManagement/AuthorManagement";
+import { SmartReportZh } from "./modules/ReportManagement/SmartReport";
 import { DocumentComparisonZh } from "./modules/SemanticsManage/DocumentComparison";
 import { DocumentManagementZh } from "./modules/SemanticsManage/DocumentManagement";
 import { TagManagementZh } from "./modules/SemanticsManage/TagManagement";
@@ -23,6 +24,7 @@ export default {
     CloudPage: CloudPageZh,
     CommodityConfiguration: CommodityConfigurationZh,
     AuthorManagement: AuthorManagementZh,
+    ...SmartReportZh,
   },
   // 语义分析----模块
   SemanticsManage: {

+ 1 - 1
src/main.js

@@ -17,7 +17,7 @@ import messages from './lang/index';
 Vue.mixin(mixins);
 Vue.use(VueI18n);
 const i18n = new VueI18n({
-  locale: 'en', // 默认语言
+  locale: 'zh', // 默认语言
   messages,
   // 隐藏警告
   silentTranslationWarn: true

+ 17 - 1
src/views/Home.vue

@@ -260,6 +260,7 @@
                   <img src="~@/assets/img/questionnaire.png" v-if="isQuestionShow" @click="showQuestionDia=true"
                 style="width: 84px;height: 24; cursor: pointer;" />
                 </div>
+                <div class="lang-content" @click="langChangeHandler">{{$i18n.locale == 'zh'?'切换英文版':'切换中文版'}}</div>
               </div>
                <!-- 消息通知 -->
               <notification-msg ref="notification"/>
@@ -888,7 +889,11 @@ export default {
       if(res.Ret !== 200) return
       
       this.$store.commit('SET_DYNAMIC_LINK',res.Data)
-    }
+    },
+    // 中英文的切换
+    langChangeHandler(){
+       this.$i18n.locale =  this.$i18n.locale == 'zh' ? 'en' : 'zh'
+    },
   },
 };
 </script>
@@ -1196,6 +1201,17 @@ export default {
       display: flex;
       align-items: center;
     }
+    .lang-content {
+      display: flex;
+      align-items: center;
+      justify-content: center;
+      width: 100px;
+      height: 40px;
+      border-radius: 4px;
+      color: #0052D9;
+      background-color:#ECF2FE;
+      cursor: pointer;
+    }
     .safariStyle {
       border-right: none;
       margin-left: -1px;

+ 0 - 6
src/views/report_manage/cloudDisk.vue

@@ -30,8 +30,6 @@
         style="width: 317px;" :placeholder="$t('ReportManage.CloudPage.input_content')" clearable @input="getFileList(null,0)" ></el-input>
       </div>
     </div>
-    <!-- // 等下删除 -->
-    <el-button @click="ExchangeChinesEnglish">中英互换</el-button>
     <div class="table-zone" >
       <div class="bread-crumb-row" v-show="keyword==''">
         <el-breadcrumb>
@@ -222,10 +220,6 @@ import 'streamsaver/examples/zip-stream'
         }
     },
     methods:{
-      // 测试等下删除
-      ExchangeChinesEnglish(){
-      this.$i18n.locale =  this.$i18n.locale == 'zh' ? 'en' : 'zh'
-      },
       // 获取文件夹dom树
       getMenuTree(){
         cloudDiskInterface.fileTreeList().then(res=>{

+ 32 - 28
src/views/report_manage/reportAuthor.vue

@@ -138,7 +138,6 @@ export default {
         { key: 1, label: '中文' },
         { key: 2, label: '英文' },
         ],
-      ChineseEcnglish:'',// 中英文互译
     };
   },
   watch: {
@@ -214,7 +213,30 @@ export default {
                   this.permissionBtn.authorManage.authorManage_enReport_enable
                 )
         }
-    }
+    },
+    // 中英文互译
+    ChineseEcnglish(){
+      return this.$t('ReportManage.AuthorManagement')
+    },
+    tableColums(){
+      return [
+          {
+            label: this.ChineseEcnglish.author_input_name,
+            key: 'ReportAuthor',
+            minwidthsty: '100px',
+          },
+          {
+            label: this.ChineseEcnglish.column_add_time,
+            key: 'CreateTime',
+            minwidthsty: '120px',
+          },
+          {
+            label: this.ChineseEcnglish.column_status,
+            key: 'Enable',
+            widthsty: '120px',
+          },
+        ]
+    } 
   },
   methods: {
     /* 获取表格数据 */
@@ -242,7 +264,7 @@ export default {
     /* 添加作者 */
     addAuthorHandle() {
       this.authorForm = {
-        title: '添加作者',
+        title: this.ChineseEcnglish.add_author_btn,
         name: '',
         report_type: this.authTabsOpt[0].key
       }
@@ -322,31 +344,13 @@ export default {
     
   },
   mounted() {
-     this.$nextTick(()=>{
-        this.ChineseEcnglish = this.$t('ReportManage.AuthorManagement')
-        this.tableColums= [
-          {
-            label: this.ChineseEcnglish.author_input_name,
-            key: 'ReportAuthor',
-            minwidthsty: '100px',
-          },
-          {
-            label: this.ChineseEcnglish.column_add_time,
-            key: 'CreateTime',
-            minwidthsty: '120px',
-          },
-          {
-            label: this.ChineseEcnglish.column_status,
-            key: 'Enable',
-            widthsty: '120px',
-          },
-        ]
-        this.authorForm =  {
-          title: this.ChineseEcnglish.add_author_btn,
-          name: '',
-          report_type: 1
-        }
-      })
+    this.$nextTick(()=>{
+       this.authorForm =  {
+         title: this.ChineseEcnglish.add_author_btn,
+         name: '',
+         report_type: 1
+       }
+    })
     if(this.authTabsOpt.length){
         this.default_tab = this.authTabsOpt[0].key
         this.authorForm.report_type = this.authTabsOpt[0].key

+ 5 - 4
src/views/report_manage/reportVariety.vue

@@ -104,14 +104,10 @@ export default {
                 sort:0,
                 parentId:0,
             },
-            ChineseEcnglish:'',// 中英文互译
             
         }
     },
     created(){
-        this.$nextTick(()=>{
-            this.ChineseEcnglish = this.$t('ReportManage.CommodityConfiguration')
-        })
         this.getList()
         this.getParentVarietyList()
     },
@@ -205,6 +201,11 @@ export default {
             })
         }
     },
+    computed:{
+        ChineseEcnglish(){
+            return this.$t('ReportManage.CommodityConfiguration')
+        }
+    }
 }
 </script>
 

+ 7 - 6
src/views/semantics_manage/document/documentEditPage.vue

@@ -100,7 +100,6 @@ export default {
         ]
       },
       fileId:0,//为0时是新增 不为0时是文档id
-      ChineseEcnglish:'',// 中英文互译
     };
   },
   methods: {
@@ -177,7 +176,7 @@ export default {
         Title,/* Theme, */ClassifyId,Content:this.documentContent
       }).then(res=>{
         if(res.Ret!==200) return 
-        this.$message.success('新增成功')
+        this.$message.success(this.$t('MsgPrompt.add_msg'))
         const SaDocId = res.Data?res.Data:''
         sessionStorage.setItem('fileClassify',ClassifyId+'')
         sessionStorage.setItem('fileId',SaDocId+'')
@@ -199,7 +198,7 @@ export default {
         SectionList:this.fileBlockArr
       }).then(res=>{
         if(res.Ret!==200) return 
-        this.$message.success('编辑成功')
+        this.$message.success(this.$t('MsgPrompt.edit_msg'))
         sessionStorage.setItem('fileClassify',ClassifyId+'')
         sessionStorage.setItem('fileId',this.fileId+'')
         this.$router.push('/documentPage')
@@ -223,12 +222,14 @@ export default {
     },
   },
   mounted(){
-    this.$nextTick(()=>{
-       this.ChineseEcnglish = this.$t('SemanticsManage.DocumentComparison')
-    })
     this.$refs.formRef.resetFields();
     this.getFileData()
     this.getClassifyList()
+  },
+  computed:{
+    ChineseEcnglish(){
+      return this.$t('SemanticsManage.DocumentComparison')
+    }
   }
 };
 </script>

+ 4 - 5
src/views/semantics_manage/documentPage.vue

@@ -238,7 +238,6 @@ export default {
       isModifyClassifyShow:false,//控制分类显示弹窗
       uploadKey:0,//刷新上传图片
       docInfo:{},//文档详情
-      ChineseEcnglish:'',// 中英文互译
     };
   },
   watch:{
@@ -399,10 +398,10 @@ export default {
             :this.permissionBtn.isShowBtn('semanticPermission',`docPage_${btnType==='edit'?'save':btnType}`)
     }
   },
-  created(){
-    this.$nextTick(()=>{
-       this.ChineseEcnglish = this.$t('SemanticsManage.DocumentManagement')
-    })
+  computed:{
+     ChineseEcnglish (){
+      return this.$t('SemanticsManage.DocumentManagement')
+     }
   }
 };
 </script>

+ 12 - 12
src/views/semantics_manage/semantics/components/saveSemanticDialog.vue

@@ -18,15 +18,15 @@
             label-width="160px"
             :model="form"
           >
-            <el-form-item label="语义分析名称:" prop="Title">
+            <el-form-item :label="`${$t('SemanticsManage.DocumentComparison.semantic_analysis_name')}:`" prop="Title">
               <el-input
                 v-model="form.Title"
                 style="width: 240px"
-                placeholder="请输入语义分析名称"
+                :placeholder="$t('SemanticsManage.DocumentComparison.semantic_analysis_name_input')"
               />
             </el-form-item>
-            <el-form-item label="所属分类:" prop="ClassifyId">
-              <el-select placeholder="请选择所属分类" v-model="form.ClassifyId">
+            <el-form-item :label="`${$t('SemanticsManage.DocumentComparison.semantic_analysis_name')}:`" prop="ClassifyId">
+              <el-select :placeholder="$t('SemanticsManage.DocumentComparison.please_select_category')" v-model="form.ClassifyId">
                 <el-option 
                   v-for="item in classifyList" :key="item.SaCompareClassifyId"
                   :label="item.ClassifyName"
@@ -34,20 +34,20 @@
                   />
               </el-select>
             </el-form-item>
-            <el-form-item label="是否预览结果:">
+            <el-form-item :label="$t('SemanticsManage.DocumentComparison.preview_results')">
               <el-radio-group v-model="previewPic">
-                <el-radio label="是"></el-radio>
-                <el-radio label="否"></el-radio>
+                <el-radio :label="$t('SemanticsManage.DocumentComparison.radio_yes')"></el-radio>
+                <el-radio :label="$t('SemanticsManage.DocumentComparison.radio_yes')"></el-radio>
               </el-radio-group>
             </el-form-item>
           </el-form>
         </template>
         <template v-else>
           <div class="form-item">
-            是否上传结果图片
+            {{$t('SemanticsManage.DocumentComparison.upload_result_image')}}
             <el-radio-group v-model="uploadPic">
-                <el-radio label="是"></el-radio>
-                <el-radio label="否"></el-radio>
+                <el-radio :label="$t('SemanticsManage.DocumentComparison.radio_yes')"></el-radio>
+                <el-radio :label="$t('SemanticsManage.DocumentComparison.radio_yes')"></el-radio>
             </el-radio-group>
           </div>
           <div class="preview-wrap">
@@ -59,8 +59,8 @@
         </template>
       </div>
       <div class="foot-container">
-          <el-button type="primary" @click="toNextStep">确定</el-button>
-          <el-button @click.stop="closeDialog">取 消</el-button>
+          <el-button type="primary" @click="toNextStep">{{$t('Dialog.confirm_btn')}}</el-button>
+          <el-button @click.stop="closeDialog">{{$t('Dialog.cancel_btn')}}</el-button>
       </div>     
     </el-dialog>
   </div>

+ 4 - 4
src/views/semantics_manage/semantics/components/selectFileDialog.vue

@@ -9,14 +9,14 @@
       width="40%" center
     >
       <div slot="title" style="display: flex; alignitems: center">
-        <span style="fontsize: 16px">选择文档</span>
+        <span style="fontsize: 16px">{{$t('SemanticsManage.DocumentComparison.select_documents')}}</span>
       </div>
       <div class="dialog-container">
         <div class="select">
           <el-select
             style="width:100%;"
             filterable remote
-            placeholder="请输入文档名称"
+            :placeholder="$t('SemanticsManage.DocumentComparison.input_enter_content')"
             v-model="searchTitle"
             :remote-method="searchHandle"
             clearable
@@ -47,8 +47,8 @@
         </div>
       </div>
       <div class="foot-container">
-          <el-button type="primary" @click="getCheckedNode">确定</el-button>
-          <el-button @click="closeDialog">取 消</el-button>
+          <el-button type="primary" @click="getCheckedNode">{{$t('Dialog.confirm_btn')}}</el-button>
+          <el-button @click="closeDialog">{{$t('Dialog.confirm_btn')}}</el-button>
       </div>
     </el-dialog>
   </div>

+ 3 - 3
src/views/semantics_manage/semantics/components/selectLabelDetail.vue

@@ -9,7 +9,7 @@
         <el-switch
           @change="switchChange"
           v-model="isOnlyMine"
-          active-text="只看我的">
+          :active-text="$t('SemanticsManage.DocumentComparison.show_only_mine')">
         </el-switch>
       </div>
     </div>
@@ -29,8 +29,8 @@
       </el-tag>
     </div>
     <div class="tool-btn">
-      <el-button @click="closePop('close')">取 消</el-button>
-      <el-button type="primary" @click="closePop('select')">确定</el-button>
+      <el-button @click="closePop('close')">{{$t('Dialog.cancel_btn')}}</el-button>
+      <el-button type="primary" @click="closePop('select')">{{$t('Dialog.confirm_btn')}}</el-button>
     </div>
   </div>
 </template>

+ 14 - 7
src/views/semantics_manage/semantics/semanticsEditPage.vue

@@ -3,7 +3,7 @@
     <div class="semantics-tool page-block-wrap">
       <div class="tool-btn" @click="handleBtnClick({type:'search'})">
         <img :src="toolIcon['search']" />
-        搜索
+        {{ChineseEcnglish.search_btn}}
       </div>
       <div class="tool-btns">
         <el-popover
@@ -21,7 +21,7 @@
           <div slot="reference" class="tool-btn" style="padding:0 30px !important;border-right: 1px solid #DCDFE6;"
             @click="handleBtnClick({type:'selectLabel'},isSelectLabelShow?'close':'open')">
             <img :src="toolIcon['eye']" style="width:14px,height:9px"/>
-            选择标签
+             {{ChineseEcnglish.select_documents}}
           </div>
         </el-popover>
         
@@ -58,7 +58,7 @@
           v-for="(document,index) in showingFiles" :key="document.DocId">
           <div class="file-item-info">
             <p class="file-title">{{document.Title}}</p>
-            <p class="file-sub-info"><!-- <span style="margin-right:30px;">{{document.Theme}}</span> --><span>所属目录:{{document.ClassifyName}}</span></p>
+            <p class="file-sub-info"><!-- <span style="margin-right:30px;">{{document.Theme}}</span> --><span>{{ChineseEcnglish.parent_directory}}:{{document.ClassifyName}}</span></p>
             <!-- <span class="close-btn" @click.stop="deleteCompareFile(document,index)"><i class="el-icon-circle-close"></i></span> -->
           </div>
           <div class="file-item-content" :id="`file-content-${index}`" 
@@ -98,7 +98,7 @@
       </div>
     </div>
     <div class="semantics-content" v-if="compareFiles.length===0">
-      <tableNoData text="暂无信息" class="empty"/>
+      <tableNoData :text="$t('Table.prompt_slogan')" class="empty"/>
     </div>
     <!-- 选择对比文档弹窗 -->
     <select-file-dialog 
@@ -242,14 +242,21 @@ export default {
   },
   computed:{
     toolBtnArr(){//操作栏
+      toolBtnArr[0].text = this.ChineseEcnglish.select_documents_comparison
+      toolBtnArr[1].text = this.$t('Dialog.confirm_save_btn')
+      // toolBtnArr[2].text = this.select_documents_comparison
       //新增
       if(this.semanticId===0){
+        console.log(toolBtnArr);
         return this.compareFiles.length?toolBtnArr.slice(0,-1):[toolBtnArr[0]]
       }else{
         //编辑
         return toolBtnArr
       }
     },
+    ChineseEcnglish(){
+      return this.$t('SemanticsManage.DocumentComparison')
+    }
   },
   methods: {
     //获取语义分析详情
@@ -556,7 +563,7 @@ export default {
       //更新currentPageIndex
       const length = this.compareFiles.length
       if(length===1){
-        this.$message.warning('请至少保留一个文档')
+        this.$message.warning(this.ChineseEcnglish.please_keep_least_one_document)
         return
       }
       if(this.currentPageIndex===length-1){
@@ -589,8 +596,8 @@ export default {
       }).then(async (res)=>{
         this.dialogLoading = false
         if(res.Ret!==200) return
-        const hintWord = this.saveType===0?'另存为':SaCompareId?'保存':'新增'
-        this.$message.success(`${hintWord}成功`)
+        const hintWord = this.saveType===0?'另存为成功':SaCompareId? this.$t('MsgPrompt.saved_msg') : this.$t('MsgPrompt.add_msg')
+        this.$message.success(`${hintWord}`)
         this.semanticId = res.Data.SaCompareId
         this.semanticInfo.SaCompareId = res.Data.SaCompareId
         this.semanticInfo.Title = Title

+ 6 - 6
src/views/semantics_manage/semanticsPage.vue

@@ -252,7 +252,7 @@ export default {
       },//分类校验规则
       isModifyClassifyShow:false,//控制分类显示弹窗
       semanticInfo:{},//语义分析详情
-      ChineseEcnglish:'',// 中英文互译
+      
     };
   },
   watch:{
@@ -265,6 +265,11 @@ export default {
       }
     }
   },
+  computed:{
+    ChineseEcnglish(){
+      return this.$t('SemanticsManage.DocumentComparison')
+  },
+  },
   methods: {
     // 下载图片
     handleDownLoadImg(){
@@ -432,11 +437,6 @@ export default {
             :this.permissionBtn.isShowBtn('semanticPermission',`saPage_${btnType==='edit'?'save':btnType}`)
     }
   },
-  created(){
-    this.$nextTick(()=>{
-       this.ChineseEcnglish = this.$t('SemanticsManage.DocumentComparison')
-    })
-  }
 };
 </script>
 

+ 27 - 20
src/views/semantics_manage/tagPage.vue

@@ -99,20 +99,7 @@ export default {
       /* table */
       tableData:[],
       tableLoading:false,
-      columnList:[
-          {
-            label:this.$t('SemanticsManage.TagManagement.tag_name'),
-            key:'LabelName'
-          },
-          {
-            label:this.$t('SemanticsManage.TagManagement.column_content_number'),
-            key:'UserNum'
-          },
-          {
-            label:this.$t('SemanticsManage.TagManagement.column_creation_time'),
-            key:'CreateTime'
-          }
-        ],
+    
       currentData:{},
       operate:'add',
       searchText:'',
@@ -126,7 +113,7 @@ export default {
       /*dialog */
       isAddTagShow:false,
       isContentDetailShow:false,
-      ChineseEcnglish:'',// 中英文互译
+      // 
     };
   },
   methods: {
@@ -152,7 +139,7 @@ export default {
         })
       }
       if(res.Ret!==200) return
-      this.$message.success(`${this.operate==='edit' ? this.$t('MsgPrompt.edit_msg') : this.$t('MsgPrompt.add_msg') }成功`)
+      this.$message.success(`${this.operate==='edit' ? this.$t('MsgPrompt.edit_msg') : this.$t('MsgPrompt.add_msg') }`)
       this.isAddTagShow=false
       this.currentPage=1
       this.getTableData()
@@ -217,14 +204,34 @@ export default {
       this.getTableData()
     }
   },
+  computed:{
+    ChineseEcnglish(){
+      return this.$t('SemanticsManage.TagManagement')
+    },
+    columnList(){
+        return [
+          {
+            label:this.$t('SemanticsManage.TagManagement.tag_name'),
+            key:'LabelName'
+          },
+          {
+            label:this.$t('SemanticsManage.TagManagement.column_content_number'),
+            key:'UserNum'
+          },
+          {
+            label:this.$t('SemanticsManage.TagManagement.column_creation_time'),
+            key:'CreateTime'
+          }
+        ]
+    },
+  },
   mounted(){
     this.getTableData()
   },
   created(){
-    this.$nextTick(()=>{
-       this.ChineseEcnglish = this.$t('SemanticsManage.TagManagement')
-       
-    })
+    // this.$nextTick(()=>{
+    //    this.ChineseEcnglish = 
+    // })
   }
 };
 </script>

+ 25 - 25
src/views/smartReport/reportList.vue

@@ -9,7 +9,7 @@
                         type="primary"
                         size="medium"
                         @click="showAddReport=true"
-                    >添加研报</el-button>
+                    >{{$t('ReportManage.smart_add_report')}}</el-button>
                 </el-form-item>
                 <!-- 整合的筛选项 -->
                 <el-form-item label="">
@@ -20,7 +20,7 @@
                         popper-class="report-select-popover"
                         width="320" style="display: inline-block;">
                         <div class="select-wrap">
-                            <p>筛选项</p>
+                            <p>{{$t('ReportManage.smart_filter_options')}}</p>
                             <div class="select-item">
                                 <el-select
                                     v-model="searchform.timeType"
@@ -29,28 +29,28 @@
                                     style="width:100%"
                                     @change="search"
                                     >
-                                    <el-option label="发布时间" value="publish_time"></el-option>
-                                    <el-option label="审批时间" value="approve_time"></el-option>
-                                    <el-option label="更新时间" value="modify_time"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_publish_time')" value="publish_time"></el-option>
+                                    <el-option :label=" $t('ReportManage.smart_approval_time')" value="approve_time"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_update_time')" value="modify_time"></el-option>
                                 </el-select>
                             </div>
                             <div class="select-item">
                                 <el-select
                                     @change="search"
                                     v-model="searchform.frequency"
-                                    placeholder="更新频度筛选"
+                                    :placeholder=" $t('ReportManage.smart_update_frequency_filter')"
                                     size="medium"
                                     clearable
                                     style="width:100%"
                                 >
-                                    <el-option label="年度" value="年度"></el-option>
-                                    <el-option label="半年度" value="半年度"></el-option>
-                                    <el-option label="季度" value="季度"></el-option>
-                                    <el-option label="月度" value="月度"></el-option>
-                                    <el-option label="双周度" value="双周度"></el-option>
-                                    <el-option label="周度" value="周度"></el-option>
-                                    <el-option label="日度" value="日度"></el-option>
-                                    <el-option label="不定时" value="不定时"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_annually')" :value="$t('ReportManage.smart_annually')"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_semi_annually')" :value="$t('ReportManage.smart_semi_annually')"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_quarterly')" :value="$t('ReportManage.smart_quarterly')"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_monthly')" :value="$t('ReportManage.smart_monthly')"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_bi_weekly')" :value="$t('ReportManage.smart_bi_weekly')"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_weekly')" :value="$t('ReportManage.smart_weekly')"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_daily')" :value="$t('ReportManage.smart_daily')"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_irregularly')" :value="$t('ReportManage.smart_irregularly')"></el-option>
                                 </el-select>
                             </div>
                             <div class="select-item">
@@ -59,31 +59,31 @@
                                     :options="optionsArr"
                                     v-model="searchform.classifynameArr"
                                     clearable
-                                    placeholder="类型筛选"
+                                    :placeholder="$t('ReportManage.smart_type_filtering')"
                                     style="width:100%;"
                                 />
                             </div>
                             <div class="select-item">
                                 <el-select
                                     v-model.number="searchform.publishState"
-                                    placeholder="状态筛选"
+                                    :placeholder="$t('ReportManage.smart_status_filtering')"
                                     size="medium"
                                     clearable
                                     style="width:100%;"
                                     @change="search"
                                 >
-                                    <el-option label="未发布" :value="1" v-if="!isOtherApprove"></el-option>
-                                    <el-option label="已发布" :value="2"></el-option>
-                                    <el-option label="待提交" :value="3" v-if="isApprove"></el-option>
-                                    <el-option label="待审批" :value="4" v-if="isApprove"></el-option>
-                                    <el-option label="已驳回" :value="5"></el-option>
-                                    <el-option label="已通过" :value="6"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_unpublished')" :value="1" v-if="!isOtherApprove"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_published')" :value="2"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_pending')" :value="3" v-if="isApprove"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_awaiting_approval')" :value="4" v-if="isApprove"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_rejected')" :value="5"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_approved')" :value="6"></el-option>
                                 </el-select>
                             </div>
                         </div>
                         <div class="select-btn" slot="reference">
                             <img src="~@/assets/icons/filter.svg">
-                            <span>筛选条件</span>
+                            <span>{{$t('ReportManage.smart_filtering_criteria')}}</span>
                             <span class="select-num">+{{selectNum}}</span>
                         </div>
                     </el-popover>
@@ -105,7 +105,7 @@
                 <el-form-item style="flex:1;text-align:right;">
                     <el-input
                         @input="search"
-                        placeholder="标题 / 创建人 / 更新人"
+                        :placeholder="$t('ReportManage.smart_title_creator_updater')"
                         v-model="searchform.key_word"
                         clearable
                         size="medium"
@@ -128,7 +128,7 @@
                 >
                 <el-table-column
                     prop="Title"
-                    label="报告标题"
+                    :label="$t('ReportManage.smart_report_title')"
                     align="center"
                     min-width="140"
                     fixed