|
@@ -1,46 +1,102 @@
|
|
|
<template>
|
|
|
- <el-dialog :modal-append-to-body="false" title="保存指标" :visible.sync="isShow" :close-on-click-modal="false" @close="cancelHandle" center v-dialogDrag>
|
|
|
- <div class="save-multiple-edb-wrap">
|
|
|
- <el-table :data="list" border height="500px">
|
|
|
- <el-table-column :label="$t('EtaBasePage.full_metric_name')" align="center" :prop="$parent.currentLang === 'en' ? 'EdbNameEn' : 'EdbName'" />
|
|
|
- <el-table-column :label="$t('EtaBasePage.gen_metric_name_label')" align="center">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-input v-model="scope.row.name" :placeholder="$t('EtaBasePage.metric_name_input')" style="width:100%" />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="单位" align="center" width="200px">
|
|
|
- <template slot-scope="scope">
|
|
|
- <selectUnit v-model="scope.row.unit" />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column :label="$t('Edb.Detail.e_fre')" align="center" width="200px">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-select v-model="scope.row.frequency" :placeholder="$t('EtaBasePage.select_frequency')" @change="handleFrequencyChange(scope)">
|
|
|
- <el-option v-for="item in frequencyArr" :key="item" :label="item" :value="item">
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="center" width="300px">
|
|
|
- <template slot="header" slot-scope="scope">
|
|
|
- <span style="margin-right:40px;display:inline-block"> <!-- 目录 -->{{ $t('EtaBasePage.catalogue_directory') }}</span>
|
|
|
- <el-radio-group v-model="classifyType" @change="handleClassifyTypeChange">
|
|
|
- <el-radio :label="0"><!-- 分目录 -->{{ $t('EtaBasePage.subdirectory_radio') }}</el-radio>
|
|
|
- <el-radio :label="1"><!-- 同目录 -->{{ $t('EtaBasePage.directory_radio') }}</el-radio>
|
|
|
- </el-radio-group>
|
|
|
- </template>
|
|
|
- <template slot-scope="{row,$index}">
|
|
|
- <el-cascader v-model="row.classify" :options="classifyOpt" :props="classifyProps" :placeholder="$t('Edb.InputHolderAll.input_menu')" @change="handleClassifyChange(row, $index)" />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
-
|
|
|
- <div class="dia-bot">
|
|
|
- <el-button type="primary" style="margin-right: 20px" @click="saveHandle"><!-- 保存 -->{{ $t("Dialog.confirm_save_btn") }}</el-button>
|
|
|
- <el-button type="primary" plain @click="cancelHandle"><!-- 取消 -->{{ $t("Dialog.cancel_btn") }}</el-button>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ :modal-append-to-body="false"
|
|
|
+ title="保存指标"
|
|
|
+ :visible.sync="isShow"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ @close="cancelHandle"
|
|
|
+ center
|
|
|
+ v-dialogDrag
|
|
|
+ >
|
|
|
+ <div class="save-multiple-edb-wrap">
|
|
|
+ <el-table :data="list" border height="500px">
|
|
|
+ <el-table-column
|
|
|
+ :label="$t('EtaBasePage.full_metric_name')"
|
|
|
+ align="center"
|
|
|
+ :prop="$parent.currentLang === 'en' ? 'EdbNameEn' : 'EdbName'"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ :label="$t('EtaBasePage.gen_metric_name_label')"
|
|
|
+ align="center"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-input
|
|
|
+ v-model="scope.row.name"
|
|
|
+ :placeholder="$t('EtaBasePage.metric_name_input')"
|
|
|
+ style="width: 100%"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="单位" align="center" width="200px">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <selectUnit v-model="scope.row.unit" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ :label="$t('Edb.Detail.e_fre')"
|
|
|
+ align="center"
|
|
|
+ width="200px"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-select
|
|
|
+ v-model="scope.row.frequency"
|
|
|
+ :placeholder="$t('EtaBasePage.select_frequency')"
|
|
|
+ @change="handleFrequencyChange(scope)"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in frequencyArr"
|
|
|
+ :key="item"
|
|
|
+ :label="item"
|
|
|
+ :value="item"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" width="300px">
|
|
|
+ <template slot="header" slot-scope="scope">
|
|
|
+ <span style="margin-right: 40px; display: inline-block">
|
|
|
+ <!-- 目录 -->{{ $t("EtaBasePage.catalogue_directory") }}</span
|
|
|
+ >
|
|
|
+ <el-radio-group
|
|
|
+ v-model="classifyType"
|
|
|
+ @change="handleClassifyTypeChange"
|
|
|
+ >
|
|
|
+ <el-radio :label="0"
|
|
|
+ ><!-- 分目录 -->{{
|
|
|
+ $t("EtaBasePage.subdirectory_radio")
|
|
|
+ }}</el-radio
|
|
|
+ >
|
|
|
+ <el-radio :label="1"
|
|
|
+ ><!-- 同目录 -->{{
|
|
|
+ $t("EtaBasePage.directory_radio")
|
|
|
+ }}</el-radio
|
|
|
+ >
|
|
|
+ </el-radio-group>
|
|
|
+ </template>
|
|
|
+ <template slot-scope="{ row, $index }">
|
|
|
+ <el-cascader
|
|
|
+ :disabled="classifyType === 1 && $index > 0"
|
|
|
+ v-model="row.classify"
|
|
|
+ :options="classifyOpts"
|
|
|
+ :props="classifyProps"
|
|
|
+ :placeholder="$t('Chart.InputHolderAll.input_classify')"
|
|
|
+ @change="handleClassifyChange(row, $index)"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+
|
|
|
+ <div class="dia-bot">
|
|
|
+ <el-button type="primary" style="margin-right: 20px" @click="saveHandle"
|
|
|
+ ><!-- 保存 -->{{ $t("Dialog.confirm_save_btn") }}</el-button
|
|
|
+ >
|
|
|
+ <el-button type="primary" plain @click="cancelHandle"
|
|
|
+ ><!-- 取消 -->{{ $t("Dialog.cancel_btn") }}</el-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -49,117 +105,191 @@ import apiIntervalAnalysis from "@/api/modules/intervalAnalysis";
|
|
|
import * as preDictEdbInterface from '@/api/modules/predictEdbApi.js';
|
|
|
import { frequencyArr } from "@/views/dataEntry_manage/databaseComponents/util";
|
|
|
export default {
|
|
|
- props: {
|
|
|
- isShow: {
|
|
|
- type: Boolean,
|
|
|
- default: false,
|
|
|
- },
|
|
|
- tableData: [],
|
|
|
- singleEdbData: {},
|
|
|
- },
|
|
|
- watch: {
|
|
|
- isShow(n) {
|
|
|
- if (n) {
|
|
|
- const edbData = this.tableData || [];
|
|
|
- if (edbData) {
|
|
|
- const calculateTypeMap = {
|
|
|
- 0: "Average()",
|
|
|
- 1: "Sum()",
|
|
|
- 2: "Growth Rate()",
|
|
|
- 3: "Annualized Growth Rate()",
|
|
|
- 4: "Max()",
|
|
|
- 5: "Min()",
|
|
|
- };
|
|
|
- this.list=edbData.map(item=>{
|
|
|
- return {
|
|
|
- EdbName:item.EdbName,
|
|
|
- EdbNameEn:item.EdbNameEn,
|
|
|
- name:`${this.$i18nt.locale === "zh" ? item.EdbName : item.EdbNameEn}${calculateTypeMap[this.singleEdbData.ExtraConfig.CalculateType]}`,
|
|
|
- unit:item.Unit,
|
|
|
- frequency:item.Frequency,
|
|
|
- classify:''
|
|
|
- }
|
|
|
+ props: {
|
|
|
+ isShow: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false,
|
|
|
+ },
|
|
|
+ tableData: [],
|
|
|
+ singleEdbData: {},
|
|
|
+ MultipleGraphConfigId: 0,
|
|
|
+ IsEdbSaveAs: false,
|
|
|
+ updateBeforeEdbList:[]
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ isShow(n) {
|
|
|
+ if (n) {
|
|
|
+ const edbData = this.tableData || [];
|
|
|
+ if (edbData) {
|
|
|
+ const calculateTypeMap = {
|
|
|
+ 0: "Average()",
|
|
|
+ 1: "Sum()",
|
|
|
+ 2: "Growth Rate()",
|
|
|
+ 3: "Annualized Growth Rate()",
|
|
|
+ 4: "Max()",
|
|
|
+ 5: "Min()",
|
|
|
+ };
|
|
|
+ const list = edbData.map(item => {
|
|
|
+ return {
|
|
|
+ EdbInfoId:item.EdbInfoId,
|
|
|
+ EdbName: item.EdbName,
|
|
|
+ EdbNameEn: item.EdbNameEn,
|
|
|
+
|
|
|
+ originEdbInfoId:0,//原指标id 如果是上次保存过则可能有
|
|
|
+ name: `${this.$i18nt.locale === "zh" ? item.EdbName : item.EdbNameEn}${calculateTypeMap[this.singleEdbData.ExtraConfig.CalculateType]}`,
|
|
|
+ unit: item.Unit,
|
|
|
+ frequency: item.Frequency,
|
|
|
+ classify: ''
|
|
|
+ }
|
|
|
+ })
|
|
|
+ // 更新列表信息如果是更新指标则有可能有指标是上次保存过的则此时用上次保存的信息
|
|
|
+ list.forEach(item=>{
|
|
|
+ this.updateBeforeEdbList.forEach(_item=>{
|
|
|
+ if(_item.FromEdbInfoId===item.EdbInfoId){
|
|
|
+ item.originEdbInfoId=_item.EdbInfoId
|
|
|
+ item.name=this.$i18nt.locale === "zh" ?_item.EdbName:_item.EdbNameEn
|
|
|
+ item.unit=this.$i18nt.locale === "zh" ?_item.Unit:_item.UnitEn
|
|
|
+ item.frequency=_item.Frequency
|
|
|
+ item.classify=item.EdbInfoCategoryType===_item.EdbTypeInfo?_item.ClassifyId:''
|
|
|
+ }
|
|
|
+ })
|
|
|
})
|
|
|
|
|
|
+ this.list=list
|
|
|
+
|
|
|
+ this.getClassifyOpts();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ list: [],
|
|
|
+ classifyType: 1,
|
|
|
|
|
|
- this.getClassifyOpts();
|
|
|
+ classifyOpts: [],
|
|
|
+ classifyProps: {
|
|
|
+ label: "ClassifyName",
|
|
|
+ value: "ClassifyId",
|
|
|
+ children: "Children",
|
|
|
+ checkStrictly: true,
|
|
|
+ emitPath: false,
|
|
|
+ },
|
|
|
+ frequencyArr,
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ async saveHandle() {
|
|
|
+ const edbList=this.list.map(item=>{
|
|
|
+ return {
|
|
|
+ EdbName: item.name,
|
|
|
+ Frequency: item.frequency,
|
|
|
+ Unit: item.unit || '无',
|
|
|
+ ClassifyId: item.classify,
|
|
|
+ FromEdbInfoId: item.EdbInfoId,
|
|
|
+ EdbInfoId: item.originEdbInfoId,
|
|
|
}
|
|
|
- }
|
|
|
- },
|
|
|
- },
|
|
|
- data() {
|
|
|
- return {
|
|
|
- list: [],
|
|
|
- classifyType:1,
|
|
|
-
|
|
|
- classifyOpts: [],
|
|
|
- classifyProps: {
|
|
|
- label: "ClassifyName",
|
|
|
- value: "ClassifyId",
|
|
|
- children: "Children",
|
|
|
- checkStrictly: true,
|
|
|
- emitPath: false,
|
|
|
- },
|
|
|
- frequencyArr,
|
|
|
- };
|
|
|
- },
|
|
|
- methods: {
|
|
|
- async saveHandle() {
|
|
|
- await this.$refs.diaForm.validate();
|
|
|
- },
|
|
|
-
|
|
|
- cancelHandle() {
|
|
|
- this.$emit("close");
|
|
|
- },
|
|
|
-
|
|
|
- // 递归改变第三级目录结构
|
|
|
- filterNodes(arr) {
|
|
|
- arr.length &&
|
|
|
- arr.forEach((item) => {
|
|
|
- item.Children.length && this.filterNodes(item.Children);
|
|
|
- if (!item.Children.length) {
|
|
|
- delete item.Children;
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- async getClassifyOpts() {
|
|
|
- const res=await dataBaseInterface.menuListV3();
|
|
|
- // const res = this.tableData[0].EdbInfoType === 1 ? await preDictEdbInterface.classifyListV2() : await dataBaseInterface.menuListV3();
|
|
|
- if (res.Ret === 200) {
|
|
|
- this.filterNodes(res.Data.AllNodes || []);
|
|
|
- this.classifyOpts = res.Data.AllNodes || [];
|
|
|
- }
|
|
|
- },
|
|
|
- },
|
|
|
+ })
|
|
|
+
|
|
|
+ const params = {
|
|
|
+ EdbInfoList: edbList,
|
|
|
+ MultipleGraphConfigId: this.MultipleGraphConfigId,
|
|
|
+ IsSaveAs: this.IsEdbSaveAs ? true : false,
|
|
|
+ EdbInfoType: this.tableData[0].EdbInfoCategoryType,
|
|
|
+ ExtraConfig: JSON.stringify(this.singleEdbData.ExtraConfig)
|
|
|
+ }
|
|
|
+ let isEnough = params.EdbInfoList.every(item => item.EdbName&&item.ClassifyId&&item.Frequency)
|
|
|
+ if(!isEnough) return this.$message.warning(/*'请填写完整信息'*/ this.$t('EtaBasePage.complete_information_msg'));
|
|
|
+
|
|
|
+ apiIntervalAnalysis.edbSave(params).then(res => {
|
|
|
+ if (res.Ret === 200) {
|
|
|
+ const { Fail,Success } = res.Data;
|
|
|
+
|
|
|
+ if(Fail.length) {
|
|
|
+ let message = '';
|
|
|
+ Fail.forEach(item => {
|
|
|
+ message+=`${item.CalculateId}:${item.Msg}</br>`
|
|
|
+ })
|
|
|
+
|
|
|
+ this.$message({
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
+ message,
|
|
|
+ type: 'error'
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.$message.success(this.$t('MsgPrompt.saved_msg'))
|
|
|
+ this.$emit('success')
|
|
|
+ this.cancelHandle()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ cancelHandle() {
|
|
|
+ this.$emit("close");
|
|
|
+ },
|
|
|
+
|
|
|
+ // 同目录修改
|
|
|
+ handleClassifyChange(e, index) {
|
|
|
+ if (this.classifyType === 1) {
|
|
|
+ // 修改所有的指标的目录为第一个
|
|
|
+ this.list.forEach(item => {
|
|
|
+ item.classify = e.classify
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ handleClassifyTypeChange() {
|
|
|
+ this.handleClassifyChange(this.list[0])
|
|
|
+ },
|
|
|
+
|
|
|
+ // 递归改变第三级目录结构
|
|
|
+ filterNodes(arr) {
|
|
|
+ arr.length &&
|
|
|
+ arr.forEach((item) => {
|
|
|
+ item.Children.length && this.filterNodes(item.Children);
|
|
|
+ if (!item.Children.length) {
|
|
|
+ delete item.Children;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ async getClassifyOpts() {
|
|
|
+ const res = this.tableData[0].EdbInfoCategoryType === 1 ? await preDictEdbInterface.classifyListV2() : await dataBaseInterface.menuListV3()
|
|
|
+ if (res.Ret === 200) {
|
|
|
+ this.filterNodes(res.Data.AllNodes || []);
|
|
|
+ this.classifyOpts = res.Data.AllNodes || [];
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
-.el-dialog{
|
|
|
- max-width: 1200px;
|
|
|
+.el-dialog {
|
|
|
+ max-width: 1200px;
|
|
|
width: 90vw;
|
|
|
}
|
|
|
.save-multiple-edb-wrap {
|
|
|
- .el-input {
|
|
|
- width: 100%;
|
|
|
- }
|
|
|
- .el-input{
|
|
|
- input{
|
|
|
- border: none;
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
+ .el-input {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .el-input {
|
|
|
+ input {
|
|
|
+ border: none;
|
|
|
+ text-align: center;
|
|
|
}
|
|
|
- .el-table tr{
|
|
|
- background-color: #fff !important;
|
|
|
- &:hover>td{
|
|
|
- background-color: transparent !important; /* 或者其他想要的颜色值 */
|
|
|
- }
|
|
|
+ }
|
|
|
+ .el-table tr {
|
|
|
+ background-color: #fff !important;
|
|
|
+ &:hover > td {
|
|
|
+ background-color: transparent !important; /* 或者其他想要的颜色值 */
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- .dia-bot {
|
|
|
- margin: 30px 0;
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
+ .dia-bot {
|
|
|
+ margin: 30px 0;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|