浏览代码

数据源模块,频度显示补充

cxmo 11 月之前
父节点
当前提交
0dd84302c7

+ 14 - 0
src/utils/defaultOptions.js

@@ -197,6 +197,20 @@ export const frequencySelectList = ()=>{
         }
     ]
 }
+//频度label显示,支持中英文
+export const getFrequencyTrans = (frequency)=>{
+    const map = {
+        '':bus.$i18nt.t('Edb.FreAll.total'),//全部
+        '日度':bus.$i18nt.t('Edb.FreAll.day'),
+        '周度':bus.$i18nt.t('Edb.FreAll.week'),
+        '旬度':bus.$i18nt.t('Edb.FreAll.dekad'),
+        '月度':bus.$i18nt.t('Edb.FreAll.month'),
+        '季度':bus.$i18nt.t('Edb.FreAll.quarter'),
+        '半年度':bus.$i18nt.t('Edb.FreAll.half_year'),
+        '年度':bus.$i18nt.t('Edb.FreAll.year'),
+    }
+    return map[frequency]||''
+}
 
 /* 季节性图配置 */
 export const seasonOptions = {

+ 50 - 11
src/views/dataEntry_manage/targetList.vue

@@ -87,7 +87,7 @@
 				prop="Frequency"
 				:label="$t('Edb.Detail.e_fre')"
 				align="center">
-					<template slot-scope="scope"> <span>{{scope.row.Frequency}}</span> </template>
+					<template slot-scope="scope"> <span>{{getFrequencyTrans(scope.row.Frequency)}}</span> </template>
 				</el-table-column>
 				<el-table-column
 				prop="ClassifyName"
@@ -174,6 +174,7 @@ import addTarget from './components/addTarget';
 import insertdata from './components/insertData';
 import editTarget from './components/editTarget';
 import { dataInterence } from 'api/api.js';
+import {getFrequencyTrans} from '@/utils/defaultOptions';
 import http from "@/api/http.js";
 export default {
 	name: "dataList",
@@ -191,36 +192,36 @@ export default {
 				value: "ClassifyId",
 				children: "Child"
 			},
-			frequencyList:[
+			/* frequencyList:[
 				{
 					value: '日度',
-					label: /* '日度'  */this.$t('Edb.FreAll.day'),
+					label: this.$t('Edb.FreAll.day'),
 				},
 				{
 					value: '周度',
-					label: /* '周度' */this.$t('Edb.FreAll.week'),
+					label: this.$t('Edb.FreAll.week'),
 				},
 				{
 					value: '旬度',
-					label: /* '旬度' */this.$t('Edb.FreAll.dekad'),
+					label: this.$t('Edb.FreAll.dekad'),
 				},
 				{
 					value: '月度',
-					label: /* '月度' */this.$t('Edb.FreAll.month'),
+					label: this.$t('Edb.FreAll.month'),
 				},
 				{
 					value: '季度',
-					label: /* '季度' */ this.$t('Edb.FreAll.quarter'),
+					label:  this.$t('Edb.FreAll.quarter'),
 				},
 				{
 					value: '半年度',
-					label: /* '半年度' */ this.$t('Edb.FreAll.month'),
+					label:  this.$t('Edb.FreAll.month'),
 				},
 				{
 					value: '年度',
-					label: /* '年度' */ this.$t('Edb.FreAll.year'),
+					label:  this.$t('Edb.FreAll.year'),
 				}
-			],//频度列表
+			], *///频度列表
 			tableData: [],
 			total:1,//总条数
 			page_no:1,//当前页
@@ -254,6 +255,40 @@ export default {
 			addTargetDefaultClassId:0,//新增指标时默认的分类id
 		};
 	},
+    computed:{
+        frequencyList(){
+            return [
+                {
+                    value: '日度',
+                    label: this.$t('Edb.FreAll.day'),
+                },
+                {
+                    value: '周度',
+                    label: this.$t('Edb.FreAll.week'),
+                },
+                {
+                    value: '旬度',
+                    label: this.$t('Edb.FreAll.dekad'),
+                },
+                {
+                    value: '月度',
+                    label: this.$t('Edb.FreAll.month'),
+                },
+                {
+                    value: '季度',
+                    label:  this.$t('Edb.FreAll.quarter'),
+                },
+                {
+                    value: '半年度',
+                    label:  this.$t('Edb.FreAll.month'),
+                },
+                {
+                    value: '年度',
+                    label:  this.$t('Edb.FreAll.year'),
+                }
+            ]
+        }
+    },
 	components: {
 		addTarget,
 		editTarget,
@@ -581,7 +616,11 @@ export default {
 					}).catch(() => {});
 				}
 			})
-		}
+		},
+		//频度翻译
+		getFrequencyTrans(frequency){
+			return getFrequencyTrans(frequency)
+		},
 	},
 	created() {
 		// sessionStorage.removeItem('default_id')

+ 18 - 4
src/views/dataEntry_manage/thirdBase/bloombergSource.vue

@@ -8,8 +8,8 @@
                     @change="selectOptionChange('frequenceSelect')"
                     clearable 
                     style="width:240px">
-                    <el-option v-for="i in frequencyList" :key="i"
-                            :label="i" :value="i"
+                    <el-option v-for="i in frequencyList" :key="i.label"
+                            :label="i.label" :value="i.value"
                         />
                 </el-select>
                 <!-- 指标ID/名称 -->
@@ -50,6 +50,12 @@
                     :label="column.label"
                     :sortable="column.sortable?column.sortable:false"
                     align="center">
+                    <template slot-scope="{row}">
+                        <span v-if="column.key==='Frequency'">
+                            {{ getFrequencyTrans(row.Frequency) }}
+                        </span>
+                        <span v-else>{{ row[column.key] }}</span>
+                    </template>
                 </el-table-column>
                 <el-table-column :label="$t('Table.column_operations')" align="center">
                     <template slot-scope="{row}">
@@ -156,6 +162,7 @@
 
 <script>
 import {bloombergInterface,dataBaseInterface} from '@/api/api.js'
+import { frequencySelectList,getFrequencyTrans } from '@/utils/defaultOptions';
 export default {
     data() {
         return {
@@ -165,7 +172,7 @@ export default {
                 sortParam:'',
                 sortType:''
             },
-            frequencyList:['日度','周度','旬度','月度','季度','半年度','年度'],
+            //frequencyList:['日度','周度','旬度','月度','季度','半年度','年度'],
             tableData:[],
             tableDataIds:[],
             currentPage:1,
@@ -209,6 +216,9 @@ export default {
                     {key:'ModifyTime',label:this.$t('Edb.Detail.e_update_time'),sortable:true} //更新时间
                 ]
         },
+        frequencyList(){
+            return frequencySelectList()
+        },
         hintText(){
             let key = 0
             if(this.afterAddList.length) key++
@@ -495,7 +505,11 @@ export default {
                 }
             }).href
             window.open(href,"_blank")
-        }
+        },
+        //频度翻译
+        getFrequencyTrans(frequency){
+            return getFrequencyTrans(frequency)
+        },
     },
     mounted(){
         this.getTableData()

+ 3 - 11
src/views/dataEntry_manage/thirdBase/coalWord.vue

@@ -100,6 +100,7 @@
 <script>
 import lzTable from "@/components/lzTable.vue";
 import { coalWordInterface } from "@/api/api.js";
+import { getFrequencyTrans } from '@/utils/defaultOptions';
 export default {
   name: "coalWord",
   components: { lzTable },
@@ -188,18 +189,9 @@ export default {
         });
       });
     },
-    // 频度翻译
+    //频度翻译
     getFrequencyTrans(frequency){
-        const map = {
-            '日度':this.$t('Edb.FreAll.day'),
-            '周度':this.$t('Edb.FreAll.week'),
-            '旬度':this.$t('Edb.FreAll.dekad'),
-            '月度':this.$t('Edb.FreAll.month'),
-            '季度':this.$t('Edb.FreAll.quarter'),
-            '半年度':this.$t('Edb.FreAll.half_year'),
-            '年度':this.$t('Edb.FreAll.year'),
-        }
-        return map[frequency]||''
+        return getFrequencyTrans(frequency)
     },
     /* 获取数据 */
     getDataList() {

+ 7 - 3
src/views/dataEntry_manage/thirdBase/ysTargetBase.vue

@@ -49,7 +49,7 @@
         </el-table-column>
         <el-table-column :label="$t('Edb.Detail.e_fre')"  align="center" prop="Frequency" width="80">
           <template slot-scope="{row}">
-            {{row.Frequency}}
+            {{getFrequencyTrans(row.Frequency)}}
           </template>
         </el-table-column>
         <el-table-column :label="$t('Edb.Detail.e_unit')"  align="center" prop="Unit" >
@@ -189,7 +189,7 @@
 import mPage from '@/components/mPage.vue'
 import { dataBaseInterface,dataInterence,smmDataInterface} from '@/api/api.js'
 import { frequencyArr} from '../databaseComponents/util';
-import {frequencySelectList} from '@/utils/defaultOptions';
+import {frequencySelectList,getFrequencyTrans} from '@/utils/defaultOptions';
   export default {
     name:'ysTargetBase',
     components:{mPage},
@@ -710,7 +710,11 @@ import {frequencySelectList} from '@/utils/defaultOptions';
         }).finally(()=>{
           this.saveLoading=false
         })
-      }
+      },
+      //频度翻译
+        getFrequencyTrans(frequency){
+            return getFrequencyTrans(frequency)
+        },
     },
   }
 </script>

+ 3 - 13
src/views/datasheet_manage/components/insertDateDia.vue

@@ -75,6 +75,7 @@ import * as sheetInterface from "@/api/modules/sheetApi.js";
 import { dataBaseInterface } from '@/api/api.js';
 import selectTarget from '@/views/chartRelevance_manage/components/selectTarget.vue'
 import dateMoveWaySec from './dateMoveWaySection.vue'
+import { getFrequencyTrans } from '@/utils/defaultOptions';
 export default {
   props: {
     isShow: {
@@ -178,21 +179,10 @@ export default {
       this.$emit('insert',backData)
       this.cancelHandle()
     },
-    // 频度翻译
+    //频度翻译
     getFrequencyTrans(frequency){
-        const map = {
-            '':this.$t('Edb.FreAll.total'),//全部
-            '日度':this.$t('Edb.FreAll.day'),
-            '周度':this.$t('Edb.FreAll.week'),
-            '旬度':this.$t('Edb.FreAll.dekad'),
-            '月度':this.$t('Edb.FreAll.month'),
-            '季度':this.$t('Edb.FreAll.quarter'),
-            '半年度':this.$t('Edb.FreAll.half_year'),
-            '年度':this.$t('Edb.FreAll.year'),
-        }
-        return map[frequency]||''
+        return getFrequencyTrans(frequency)
     },
-
     init() {
 
       this.formData = {