Lijy 2 роки тому
батько
коміт
3b51126b13

+ 5 - 1
fhKeeper/formulahousekeeper/timesheet/src/i18n/en.json

@@ -1417,5 +1417,9 @@
   "chao-song-ren": "carbon copy",
   "wu-kao-qin-ji-lu-bu-ke-tian-bao": "No attendance record is allowed",
   "di-yi": "The first",
-  "qing-zhi-ding": "Please specify"
+  "qing-zhi-ding": "Please specify",
+  "shen-pi-ceng-ji-she-zhi": "Approval level Setting",
+  "onelayer": "1 layer",
+  "threelayer": "3 layer",
+  "twolayer": "2 layer"
 }

+ 5 - 1
fhKeeper/formulahousekeeper/timesheet/src/i18n/zh.json

@@ -1417,5 +1417,9 @@
   "chao-song-ren": "抄送人",
   "wu-kao-qin-ji-lu-bu-ke-tian-bao": "无考勤记录不可填报",
   "di-yi": "第一、",
-  "qing-zhi-ding": "请指定"
+  "qing-zhi-ding": "请指定",
+  "shen-pi-ceng-ji-she-zhi": "审批层级设置",
+  "onelayer": "1层",
+  "twolayer": "2层",
+  "threelayer": "3层"
 }

+ 4 - 4
fhKeeper/formulahousekeeper/timesheet/src/views/settings/timetype.vue

@@ -165,13 +165,13 @@
         </el-row>
 
         <template v-if="timeType.reportAuditType == 3">
-        <p style="margin-left:10px;color:#666;">审批层级设置</p>
+        <p style="margin-left:10px;color:#666;">{{ $t('shen-pi-ceng-ji-she-zhi') }}</p>
         <el-row :gutter="20" style="padding-top:10px;width:100%;margin:0 auto;padding-left:10px;padding-right:10px;">
             <el-col :span="24">
                 <el-select v-model="timeType.auditLevel">
-                    <el-option :value="1" label="1层"></el-option>
-                    <el-option :value="2" label="2层"></el-option>
-                    <el-option :value="3" label="3层"></el-option>
+                    <el-option :value="1" :label="$t('onelayer')"></el-option>
+                    <el-option :value="2" :label="$t('twolayer')"></el-option>
+                    <el-option :value="3" :label="$t('threelayer')"></el-option>
                 </el-select>
             </el-col>
         </el-row>