Browse Source

中文研报,智能研报翻译遗漏部分

cxmo 11 months ago
parent
commit
4fd16f8258

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

@@ -41,6 +41,7 @@ export const SmartReportEn = {
   smart_release_approval_time: "Release/Approval Time",
   smart_report_push_time_btn: "Report push time",
   smart_issue_number_btn: "Issue number",
+  smart_issue_bumber_text:"Issue {num}",
   smart_frequency_btn: "Frequency",
   smart_withdraw_btn: "Withdraw",
   smart_push_notification_btn: "Push Notification",
@@ -166,6 +167,7 @@ export const SmartReportZh = {
   smart_release_approval_time: "发布/审批时间",
   smart_report_push_time_btn: "报告推送时间",
   smart_issue_number_btn: "期数",
+  smart_issue_bumber_text:"第{num}期",
   smart_frequency_btn: "频度",
   smart_withdraw_btn: "撤销",
   smart_push_notification_btn: "推送消息",

+ 14 - 0
src/mixins/reportApproveConfig.js

@@ -58,6 +58,20 @@ export default{
                 this.hasApproveFlow = res.Data||false
             })
         },
+        // 频度翻译
+        getFrequencyTrans(frequency){
+            const map = {
+                '年度':this.$t('ReportManage.smart_annually'),
+                '半年度':this.$t('ReportManage.smart_semi_annually'),
+                '季度':this.$t('ReportManage.smart_quarterly'),
+                '月度':this.$t('ReportManage.smart_monthly'),
+                '双周度':this.$t('ReportManage.smart_bi_weekly'),
+                '周度':this.$t('ReportManage.smart_weekly'),
+                '日度':this.$t('ReportManage.smart_daily'),
+                '不定时':this.$t('ReportManage.smart_irregularly'),
+            }
+            return map[frequency]||''
+        },
     },
     mounted(){
         this.getBaseConfig()

+ 8 - 8
src/views/report_manage/addreportNew.vue

@@ -164,14 +164,14 @@
 								size="medium"
 								style="width: 270px"
 							>
-							   <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-option :label="$t('ReportManage.smart_annually')" value="年度"></el-option>
+								<el-option :label="$t('ReportManage.smart_semi_annually')" value="半年度"></el-option>
+								<el-option :label="$t('ReportManage.smart_quarterly')" value="季度"></el-option>
+								<el-option :label="$t('ReportManage.smart_monthly')" value="月度"></el-option>
+								<el-option :label="$t('ReportManage.smart_bi_weekly')" value="双周度"></el-option>
+								<el-option :label="$t('ReportManage.smart_weekly')" value="周度"></el-option>
+								<el-option :label="$t('ReportManage.smart_daily')" value="日度"></el-option>
+								<el-option :label="$t('ReportManage.smart_irregularly')" value="不定时"></el-option>
 							</el-select>
 						</el-form-item>
 						<el-form-item :label="$t('ReportManage.ReportList.creation_time_select')">

+ 8 - 8
src/views/report_manage/editreportNew.vue

@@ -163,14 +163,14 @@
 								size="medium"
 								style="width: 270px"
 							>
-							   <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-option :label="$t('ReportManage.smart_annually')" value="年度"></el-option>
+								<el-option :label="$t('ReportManage.smart_semi_annually')" value="半年度"></el-option>
+								<el-option :label="$t('ReportManage.smart_quarterly')" value="季度"></el-option>
+								<el-option :label="$t('ReportManage.smart_monthly')" value="月度"></el-option>
+								<el-option :label="$t('ReportManage.smart_bi_weekly')" value="双周度"></el-option>
+								<el-option :label="$t('ReportManage.smart_weekly')" value="周度"></el-option>
+								<el-option :label="$t('ReportManage.smart_daily')" value="日度"></el-option>
+								<el-option :label="$t('ReportManage.smart_irregularly')" value="不定时"></el-option>
 							</el-select>
 						</el-form-item>
 						<el-form-item :label="$t('ReportManage.ReportList.creation_time_select')">

+ 14 - 11
src/views/report_manage/reportlist.vue

@@ -63,15 +63,15 @@
                             clearable
                             style="width:100%;"
                         >
-                            <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>
+                            <el-option :label="$t('ReportManage.smart_annually')" value="年度"></el-option>
+                            <el-option :label="$t('ReportManage.smart_semi_annually')" value="半年度"></el-option>
+                            <el-option :label="$t('ReportManage.smart_quarterly')" value="季度"></el-option>
+                            <el-option :label="$t('ReportManage.smart_monthly')" value="月度"></el-option>
+                            <el-option :label="$t('ReportManage.smart_bi_weekly')" value="双周度"></el-option>
+                            <el-option :label="$t('ReportManage.smart_weekly')" value="周度"></el-option>
+                            <el-option :label="$t('ReportManage.smart_daily')" value="日度"></el-option>
+                            <el-option :label="$t('ReportManage.smart_irregularly')" value="不定时"></el-option>
+                        </el-select>
                     </div>
                     <div class="select-item">
                         <el-cascader
@@ -287,10 +287,13 @@
             :formatter="formatterColumn"
           ></el-table-column>
           <el-table-column :label="$t('ReportManage.smart_issue_number_btn')" align="center">
-            <template slot-scope="scope">第{{ scope.row.Stage }}期</template>
+            <template slot-scope="scope">
+                <!-- 第{{ scope.row.Stage }}期 -->
+                {{ $t('ReportManage.smart_issue_bumber_text',{num:scope.row.Stage}) }}
+            </template>
           </el-table-column>
           <el-table-column :label="$t('ReportManage.smart_frequency_btn')" align="center">
-            <template slot-scope="scope">{{ scope.row.Frequency }}</template>
+            <template slot-scope="scope">{{ getFrequencyTrans(scope.row.Frequency) }}</template>
           </el-table-column>
           <!-- <el-table-column label="音频" align="center">
 						<template slot-scope="scope">

+ 8 - 8
src/views/smartReport/components/BaseInfo.vue

@@ -62,14 +62,14 @@
 					size="medium"
 					style="width: 340px"
 				>
-                    <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-option :label="$t('ReportManage.smart_annually')" value="年度"></el-option>
+                <el-option :label="$t('ReportManage.smart_semi_annually')" value="半年度"></el-option>
+                <el-option :label="$t('ReportManage.smart_quarterly')" value="季度"></el-option>
+                <el-option :label="$t('ReportManage.smart_monthly')" value="月度"></el-option>
+                <el-option :label="$t('ReportManage.smart_bi_weekly')" value="双周度"></el-option>
+                <el-option :label="$t('ReportManage.smart_weekly')" value="周度"></el-option>
+                <el-option :label="$t('ReportManage.smart_daily')" value="日度"></el-option>
+                <el-option :label="$t('ReportManage.smart_irregularly')" value="不定时"></el-option>
                 </el-select>
             </el-form-item>
             <el-form-item prop="time">

+ 13 - 10
src/views/smartReport/reportList.vue

@@ -43,14 +43,14 @@
                                     clearable
                                     style="width:100%"
                                 >
-                                    <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-option :label="$t('ReportManage.smart_annually')" value="年度"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_semi_annually')" value="半年度"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_quarterly')" value="季度"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_monthly')" value="月度"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_bi_weekly')" value="双周度"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_weekly')" value="周度"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_daily')" value="日度"></el-option>
+                                    <el-option :label="$t('ReportManage.smart_irregularly')" value="不定时"></el-option>
                                 </el-select>
                             </div>
                             <div class="select-item">
@@ -240,10 +240,13 @@
                     :formatter="formatterColumn"
                 ></el-table-column>
                 <el-table-column :label="$t('ReportManage.smart_issue_number_btn')" align="center">
-                    <template slot-scope="scope">第{{ scope.row.Stage }}期</template>
+                    <template slot-scope="scope">
+                        <!-- 第{{ scope.row.Stage }}期 -->
+                        {{ $t('ReportManage.smart_issue_bumber_text',{num:scope.row.Stage}) }}
+                    </template>
                 </el-table-column>
                 <el-table-column :label="$t('ReportManage.smart_frequency_btn')" align="center">
-                    <template slot-scope="scope">{{ scope.row.Frequency }}</template>
+                    <template slot-scope="scope">{{ getFrequencyTrans(scope.row.Frequency) }}</template>
                 </el-table-column>
                 <el-table-column
                     :label="hasUV?'PV / UV':'PV'"