cq 3 năm trước cách đây
mục cha
commit
5c56b2fa3f

+ 1 - 0
ui/src/lang/en.js

@@ -1703,4 +1703,5 @@ export default {
   参数名称:'Parameter Name',
   参数键名:'Parameter Key Name',
   系统内置:'Built-in System',
+  是否:'',
 }

+ 1 - 0
ui/src/lang/zh.js

@@ -1703,4 +1703,5 @@ export default {
   参数名称:'参数名称',
   参数键名:'参数键名',
   系统内置:'系统内置',
+  是否:'是否',
 }

+ 2 - 2
ui/src/views/training/newemployee/index.vue

@@ -489,7 +489,7 @@ export default {
     handleAdd() {
       this.reset();
       this.open = true;
-      this.title = this.$t('新增') + " " + this.$t('新员工培训');
+      this.title = this.$t('新增') + this.$t('空格') + this.$t('新员工培训');
     },
     /** 修改按钮操作 */
     handleUpdate(row) {
@@ -498,7 +498,7 @@ export default {
       getNewemployee(id).then(response => {
         this.form = response.data;
         this.open = true;
-        this.title = this.$t('修改') + " " + this.$t('新员工培训');
+        this.title = this.$t('修改') +  this.$t('新员工培训');
       });
     },
     /** 提交按钮 */

+ 1 - 1
ui/src/views/training/regular/index.vue

@@ -68,7 +68,7 @@
     </el-row>
 
     <el-row class="colorMark">
-      <svg-icon icon-class="rectangleLightgreen" class="rectangleLightgreen"></svg-icon>{{ $t('需要培训') }}
+      <svg-icon icon-class="rectangleLightgreen" class="rectangleLightgreen"></svg-icon>{{ $t('cc') }}
       <svg-icon icon-class="rectangleFlesh" class="rectangleFlesh"></svg-icon>{{ $t('指定人员') }}
       <svg-icon icon-class="rectangleYellow" class="rectangleYellow"></svg-icon>{{ $t('当被此项目涉及到时,如MOC、事件调查,需要培训') }}
     </el-row>