|
@@ -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')
|