Преглед на файлове

调整部门参与项目情况表的选着时间文字

Lijy преди 2 години
родител
ревизия
fdf9af7458

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

@@ -1444,5 +1444,6 @@
   "bumenchanyuqingkuang": "Project information of the departments involved",
   "can-yu-de-xiang-mu-de-shu-liang": "number of projects involved",
   "can-yu-ren-ci": "Number of participants",
-  "chu-cha-de-tian-shu": "Days of business trip"
+  "chu-cha-de-tian-shu": "Days of business trip",
+  "xiang-mu-chuang-jian-shi-jian-duan": "Project Creation Period"
 }

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

@@ -1444,5 +1444,6 @@
   "bumenchanyuqingkuang": "部门参与项目情况表",
   "can-yu-de-xiang-mu-de-shu-liang": "参与的项目的数量",
   "can-yu-ren-ci": "参与人次",
-  "chu-cha-de-tian-shu": "出差的天数"
+  "chu-cha-de-tian-shu": "出差的天数",
+  "xiang-mu-chuang-jian-shi-jian-duan": "项目创建时间段"
 }

+ 3 - 1
fhKeeper/formulahousekeeper/timesheet/src/views/corpreport/list.vue

@@ -71,7 +71,9 @@
         <!-- 时间段筛选 -->
           <template v-if="ins == 6 || ins == 8 || ins == 9 || ins == 10 || ins == 11 || ins == 12 || ins == 15">
             <span>
-              <span class="demonstration" style="color:#999;padding:0 10px">{{ $t('message.period') }}</span>
+              <span class="demonstration" style="color:#999;padding:0 10px">
+                {{ ins == 15 ? $t('xiang-mu-chuang-jian-shi-jian-duan') : $t('message.period') }}
+              </span>
               <el-date-picker v-model="rangeDatas" type="daterange" value-format="yyyy-MM-dd" :placeholder="$t('selectstartdate')" @change="picks()" :range-separator="$t('other.to')" :start-placeholder="$t('time.startDate')" :end-placeholder="$t('time.endDate')" style="width:300px" :clearable="ins == 15" size="small"> </el-date-picker>
             </span>
           </template>