123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832 |
- <template>
- <el-dialog
- :visible.sync="isOperation"
- :close-on-click-modal="false"
- :modal-append-to-body="false"
- @close="cancelHandle"
- custom-class="operation-dialog"
- center
- width="1200px"
- top="5vh"
- v-dialogDrag
- >
- <div slot="title" style="display: flex; align-items: center">
- <img
- :src="$icons.computed"
- style="color: #fff; width: 16px; height: 16px; margin-right: 5px"
- />
- <span style="font-size: 16px">{{ (operationForm.edb_id ? (operationForm.view ? $t('Dialog.title_prefix_view') : $t('Dialog.title_prefix_edit')) : '') + titleMap.get(type) }}</span>
- </div>
- <div class="dialog-main">
-
- <!-- 多选source -->
- <ul class="label-cont" v-if="!operationForm.view && !operationForm.edb_id">
- <li v-for="item in sourceList" :key="item.key" :class="{act: type === item.key}" @click="init();$emit('changeSource',item.key)">{{item.label}}</li>
- </ul>
- <div class="min-top">
- <label ><!-- 选择指标 -->{{$t('Edb.choose_edb')}}:</label>
- <el-select
- v-model="select_target"
- v-loadMore="searchLoad"
- :filterable="!select_target"
- clearable
- :placeholder="$t('Edb.InputHolderAll.input_name')"
- style="width: 85%"
- remote
- :remote-method="getTarget"
- @click.native="inputFocusHandle"
- @change="chooseTarget"
- @blur="search_have_more = false"
- :disabled="operationForm.view||[69,70].includes(type)"
- >
- <i slot="prefix" class="el-input__icon el-icon-search"></i>
- <el-option
- v-for="item in searchOptions"
- :key="item.EdbInfoId"
- :label="$parent.currentLang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName"
- :value="item.EdbInfoId"
- :disabled="!item.HaveOperaAuth"
- >
- <div>
- <img
- :src="$icons.lock_ico2"
- width="18"
- height="18"
- style="vertical-align:middle"
- v-if="!item.HaveOperaAuth"
- />
- {{$parent.currentLang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName}}
- </div>
- </el-option>
- </el-select>
- <i class="el-icon-tickets" style="color:#409EFF;font-size:18px" @click="$emit('lookHistory',select_target)" v-if="select_target"/>
- </div>
- <div class="middle">
- <label><!-- 已选指标: -->{{ $t('Edb.have_choose_edb') }}:</label>
- <el-table
- :data="tableData"
- style="box-shadow: 0px 3px 6px rgba(155, 170, 219, 0.2);margin-top:10px;"
- border>
- <el-table-column
- v-for="item in tableColums"
- :key="item.label"
- :label="item.label"
- :width="item.widthsty"
- :min-width="item.minwidthsty"
- align="center"
- >
- <template slot-scope="scope">
- <span>{{ scope.row[item.key] }}</span>
- </template>
- </el-table-column>
- <el-table-column
- width="110"
- align="center"
- :label="$t('Table.column_operations')"
- v-if="!operationForm.view"
- >
- <template slot-scope="scope">
- <span class="deletesty" @click="delTarget"><!-- 删除 -->{{$t('Table.delete_btn')}}</span>
- </template>
- </el-table-column>
- <div slot="empty" style="padding:20px 0 30px;">
- <tableNoData :text="$t('Table.no_edb_msg')" size="mini"/>
- </div>
- </el-table>
- <ul
- class="data-ul"
- ref="dataUl"
- @scroll="scrollHandle"
- v-if="dataList.length">
- <li
- class="value-item"
- v-for="item in dataList"
- :key="item.EdbDataId"
- >
- <span class="value-label">
- <i class="new-tag" v-if="tableData[0].LatestDate===item.DataTime"></i>
- {{ item.DataTime }}
- </span>
- <span
- :class="['value-label',{'predict-act': item.isPredic}]"
- style="min-width: 200px; text-align: center"
- >{{ item.Value }}</span
- >
- </li>
- </ul>
- <div class="form-cont">
- <el-form
- ref="form"
- label-position="right"
- inline
- label-width="120px"
- :model="formData"
- :rules="formRules"
- :disabled="operationForm.view"
- >
- <el-form-item :label="$t('EtaBasePage.label_move_way')" style="display: block;" v-if="type === 46" prop="moveVal">
- <el-select
- v-model="formData.moveType"
- style="width: 100px"
- placeholder=""
- size="mini"
- @change="refreshTarget"
- >
- <el-option
- v-for="item in moveTypeOpions"
- :key="item.key"
- :label="item.label"
- :value="item.key"
- >
- </el-option>
- </el-select>
- <el-input
- style="width: 80px"
- type="number"
- min="0"
- size="mini"
- v-model="formData.moveVal"
- @keyup.native="filterCode(formData)"
- ></el-input>
- <el-select
- v-model="formData.moveUnit"
- size="mini"
- placeholder=""
- style="width: 100px"
- @change="refreshTarget"
- >
- <el-option
- v-for="item in fre_options"
- :key="item"
- :label="item"
- :value="item"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item :label="$t('Edb.Detail.e_name')" prop="targetName">
- <el-input
- v-model="formData.targetName"
- style="width: 340px"
- :placeholder="$t('Edb.InputHolderAll.input_name')"
- />
- </el-form-item>
- <el-form-item :label="$t('Edb.Detail.e_unit')" prop="unit">
- <selectUnit
- v-model="formData.unit"
- style="width: 340px"
- :disabled="!operationForm.edb_id&&[32,33].includes(type)"
- />
- </el-form-item>
- <el-form-item :label="$t('Edb.Detail.e_menu')" prop="menu">
- <el-cascader
- v-model="formData.menu"
- :options="options"
- :props="{
- label: 'ClassifyName',
- value: 'ClassifyId',
- children: 'Children',
- checkStrictly: true
- }"
- style="width: 90%"
- :placeholder="$t('Edb.InputHolderAll.input_menu')"
- />
- </el-form-item>
- <el-form-item :label="$t('Edb.Detail.e_fre')" prop="frequency">
- <el-select
- v-model="formData.frequency"
- :placeholder="$t('Edb.InputHolderAll.input_fre')"
- style="width: 340px"
- clearable
- :disabled="[42,45,64,66].includes(type)||(!operationForm.edb_id&&[32,33].includes(type))"
- >
- <el-option
- v-for="item in frequencyArr"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item :label="$t('EtaBasePage.label_n_val')" prop="n_num" v-if="[39,43,44,49].includes(type)">
- <el-input
- v-model="formData.n_num"
- style="width: 340px"
- :placeholder="$t('Edb.InputHolderAll.input_n_val')"
- type="number"
- @change="NchangeHandle"
- />
- </el-form-item>
- <el-form-item :label="$t('EtaBasePage.label_calendar')" prop="calendar_type" v-if="type===49">
- <el-select
- v-model="formData.calendar_type"
- placeholder="请选择日历"
- style="width: 340px"
- @change="NchangeHandle"
- >
- <el-option
- v-for="item in calendarOptions"
- :key="item.key"
- :label="item.label"
- :value="item.label"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item :label="$t('EtaBasePage.label_val_type')" prop="value_type" v-if="type===54">
- <el-select
- v-model="formData.value_type"
- placeholder="请选择数据取值类型"
- style="width: 340px"
- >
- <el-option :label="$t('EtaBasePage.val_type_end')" value="期末值"/>
- <el-option :label="$t('EtaBasePage.val_type_average')" value="平均值"/>
- </el-select>
- </el-form-item>
- <!-- 通过统计特征保存的指标 -->
- <el-form-item :label="$t('Edb.Detail.source')" v-if="[69,70].includes(type)" style="width:50%">
- <span>{{type===69?'标准差':'百分比'}}</span>
- </el-form-item>
- </el-form>
- </div>
- </div>
- </div>
- <div class="dia-bot" v-if="!operationForm.view">
- <el-button
- type="primary"
- style="margin-right: 20px"
- @click="saveHandle"
- :loading="loading"
- >{{loading ? $t('Edb.calculate_ing') : operationForm.edb_id ? $t('Dialog.confirm_save_btn') : saveBtnMap.get(type)}}</el-button
- >
- <el-button type="primary" plain @click="cancelHandle('cancel')"><!-- 取消 -->{{$t('Dialog.cancel_btn')}}</el-button>
- </div>
- <el-popover
- placement="top-start"
- width="500"
- trigger="click"
- v-show="$parent.tips.get(type)">
- <p style="padding:30px;line-height:25px;" v-html="$parent.tips.get(type)"/>
- <span slot="reference" class="tip-label"><!-- 公式说明 -->{{$t('Edb.formula_instru')}}</span>
- </el-popover>
- </el-dialog>
- </template>
- <script>
- import * as preDictEdbInterface from '@/api/modules/predictEdbApi.js';
- import { formRules } from '@/views/dataEntry_manage/databaseComponents/util';
- import { unitArr,frequencySelectList } from '@/utils/defaultOptions';
- export default {
- name:'',
- props: {
- isOperation: {
- type: Boolean,
- },
- type: {
- type: Number
- },
- operationForm: {
- type: Object,
- }
- },
- watch: {
- isOperation(newval) {
- newval && this.getMenu();
- if(newval && this.operationForm.edb_id) {
- const backData = _.cloneDeep(this.operationForm);
- this.select_target = backData.oldedb_id;
- this.formData = {
- edb_id: backData.edb_id,
- targetName: backData.targetName,
- unit: backData.unit,
- menu: backData.menu,
- frequency: backData.frequency,
- n_num: backData.formula,
- moveType:backData.moveType,
- moveUnit:backData.moveUnit,
- moveVal:backData.moveVal,
- calendar_type:backData.calendar_type,
- value_type: this.type === 54 ? backData.formula : '期末值',
- }
- this.getDataList();
- //回显时的默认options
- this.searchOptions = [
- {
- EdbInfoId: backData.oldedb_id,
- EdbName: backData.oldEdb_name,
- }
- ]
- }
- this.sourceList = [42,64].includes(this.type)
- ? [{ label: /* '累计值转月值' */this.$t('Edb.CalculatesAll.to_month'),key: 42 },{ label: /* '累计值转季值' */this.$t('Edb.CalculatesAll.to_quarter'),key: 64 }]
- : [65,66].includes(this.type)
- ? [{ label: /* '累计值' */this.$t('Edb.CalculatesAll.cumulate'),key: 65 },{ label: /* '年初至今累计值' */this.$t('Edb.CalculatesAll.cumulate_oneyear'),key: 66 }]
- : []
- }
- },
- computed: {
- tableColums(){
- return [
- {
- label: /* '指标ID' */this.$t('Edb.Detail.e_id'),
- key: 'EdbCode',
- },
- {
- label: /* '指标名称' */this.$t('Edb.Detail.e_name'),
- key: this.$parent.currentLang==='en'?'EdbNameEn':'EdbName',
- },
- {
- label: /* '频度' */ this.$t('Edb.Detail.e_fre'),
- key: 'Frequency',
- },
- {
- label: /* '单位' */this.$t('Edb.Detail.e_unit'),
- key: this.$parent.currentLang==='en'?'UnitEn':'Unit',
- },
- {
- label: /* '起始时间' */this.$t('Edb.Detail.e_start_time'),
- key: 'StartDate',
- minwidthsty: '100px'
- },
- {
- label: /* '更新时间' */this.$t('Edb.Detail.e_update_time'),
- key: 'ModifyTime',
- minwidthsty: '110px'
- },
- {
- label: /* '来源' */this.$t('Edb.Detail.source'),
- key: 'SourceName',
- },
- ]
- },
- formRules(){
- return formRules
- },
- unitArr() {
- return unitArr
- },
- frequencyArr(){
- return frequencySelectList()
- }
- },
- data () {
- return {
- select_target:'',
- searchOptions:[],//指标列表
- haveMore: true,
- dataList:[],
- page_no:1,
- titleMap: new Map([
- [42,this.$t('Edb.CalculatesAll.to_month_quarter')],/* '累计值转月/季值' */
- [32,this.$t('Edb.CalculatesAll.on_year')],/* '同比值' */
- [33,this.$t('Edb.CalculatesAll.differ')],/* '同差值' */
- [39,this.$t('Edb.CalculatesAll.n_move_average')],/* 'N数值移动平均计算' */
- [43,this.$t('Edb.CalculatesAll.n_rate')],/* 'N数值环比值' */
- [44,this.$t('Edb.CalculatesAll.n_differ')],/* 'N数值环差值' */
- [45,this.$t('Edb.CalculatesAll.up_conver')],/* 升频 */
- [46,this.$t('Edb.CalculatesAll.time_move')],/* '时间移位' */
- [49,this.$t('Edb.CalculatesAll.super_season')],/* '超季节性' */
- [55,this.$t('Edb.CalculatesAll.annual')],/* '年化' */
- [54,this.$t('Edb.CalculatesAll.down_conver')],/* '降频' */
- [64,this.$t('Edb.CalculatesAll.to_month_quarter')],/* '累计值转月/季值' */
- [65,this.$t('Edb.CalculatesAll.cumulate')],/* '累计值' */
- [66,this.$t('Edb.CalculatesAll.cumulate')],/* '累计值' */
- [69,this.$t('Edb.CalculatesAll.standard_differ')],/* 标准差 */
- [70,this.$t('Edb.CalculatesAll.percent')],/* 百分比 */
- ]),//标题
- saveBtnMap: new Map([
- [42,/* '转月值计算' */this.$t('Edb.CalculateBtns.to_month')],
- [32,/* '同比值计算' */this.$t('Edb.CalculateBtns.on_year')],
- [33,/* '同差值计算' */this.$t('Edb.CalculateBtns.differ')],
- [39,/* '移动平均计算' */this.$t('Edb.CalculateBtns.n_move_average')],
- [43,/* '环比值计算' */this.$t('Edb.CalculateBtns.n_rate')],
- [44,/* '环差值计算' */this.$t('Edb.CalculateBtns.n_differ')],
- [45,/* '升频计算' */this.$t('Edb.CalculateBtns.up_conver')],
- [46,/* '保存' */this.$t('Dialog.confirm_save_btn')],
- [49,/* '超季节性计算' */this.$t('Edb.CalculateBtns.super_season')],
- [55,/* '年化计算' */this.$t('Edb.CalculateBtns.annual')],
- [54,/* '降频计算' */this.$t('Edb.CalculateBtns.down_conver')],
- [64,/* '转季值计算' */this.$t('Edb.CalculateBtns.to_quarter')],
- [65,/* '累计值计算' */this.$t('Edb.CalculateBtns.cumulate')],
- [66,/* '年初至今计算' */this.$t('Edb.CalculateBtns.cumulate_oneyear')],
- ]),//保存文案
- formData: {
- targetName:'',
- unit:'',
- menu:'',
- frequency:'',
- n_num: 1,
- moveType: 1,
- moveUnit: '天',
- moveVal: '',
- calendar_type: '公历',
- value_type: '期末值'
- },
- options: [],
- //frequencyArr: ['日度', '周度','旬度', '月度', '季度', '年度'],
- fre_options: ['天','周','月','季','年'],
- moveTypeOpions: [
- {
- label: '领先',
- key: 1
- },
- {
- label: '滞后',
- key: 2
- },
- ],
- loading:false,
- tableData: [],
-
- search_have_more: false,
- search_page: 1,
- current_search: '',
- calendarOptions: [
- {label: '公历',key: 1},
- {label: '农历',key: 2},
- ],
- sourceList: []
- };
- },
- methods: {
- /* 指标列表 */
- getTarget(query) {
- this.search_page = 1;
- this.current_search = query;
- this.searchApi(this.current_search);
- },
- /* 聚焦获取当前检索 */
- inputFocusHandle(e) {
- this.search_page = 1;
- this.current_search = e.target.value;
- this.searchApi(this.current_search);
- },
- searchApi(query,page=1) {
- const filterMap = {
- 42: 2,
- 45: 3,
- 66: 6
- }
- preDictEdbInterface.edbSearch({
- Keyword: query,
- CurrentIndex: page,
- FilterSource: filterMap[this.type] ? filterMap[this.type] : 1,
- Frequency: this.type===64?'季度': ''
- })
- .then((res) => {
- if (res.Ret !== 200) return
- const { List,Paging } = res.Data;
- this.search_have_more = page < Paging.Pages;
- let arr = page === 1 ? List : this.searchOptions.concat(List);
- this.searchOptions = this.operationForm.edb_id ? arr.filter(item => item.EdbInfoId !== this.operationForm.edb_id) : arr;
- });
- },
- searchLoad() {
- if(!this.search_have_more) return;
- this.searchApi(this.current_search,++this.search_page)
- },
- // 递归改变目录结构
- filterNodes(arr) {
- arr.length &&
- arr.forEach((item) => {
- item.Children.length && this.filterNodes(item.Children);
- if (!item.Children.length) {
- delete item.Children;
- }
- });
- },
- /* 获取目录结构 */
- getMenu() {
- preDictEdbInterface.classifyListV2().then(res => {
- if(res.Ret !== 200) return
- this.filterNodes(res.Data.AllNodes||[]);
- this.options = res.Data.AllNodes || [];
- })
- },
- /* 获取指标数据 */
- getDataList() {
- preDictEdbInterface.edbDataInfo({
- PageSize: 10,
- EdbInfoId: this.select_target,
- CurrentIndex: this.page_no
- }).then(res => {
- if(res.Ret !== 200) return
- const { Item,Paging } = res.Data;
- this.tableData = [Item] || [];
- Item.PredictDataList && Item.PredictDataList.forEach(_ => {
- _.isPredic = true;
- })
- this.haveMore = this.page_no < Paging.Pages;
- this.dataList = this.page_no === 1 ? [...Item.PredictDataList,...Item.DataList] : [...this.dataList,...Item.DataList];
- })
- },
- /* 滚动加载 */
- scrollHandle(e) {
- const dom = e.target
- let scrollTop = dom.scrollTop; //滑入屏幕上方的高度
- let windowHeitht = dom.clientHeight; //页面的高度
- let scrollHeight = dom.scrollHeight; //整个div的高度
- let total = scrollTop + windowHeitht
- if(total >= scrollHeight && this.haveMore){
- this.page_no ++;
- this.getDataList();
- }
- },
- /* 选择指标 */
- chooseTarget(val) {
- if(val) {
- let obj = this.searchOptions.find(item => item.EdbInfoId === val);
- //频度 名称默认同步
- this.setDefaultOption(obj);
- this.page_no = 1;
- this.dataList.length ? this.$refs.dataUl.scrollTop = 0 : null;
- this.getDataList()
- }else {
- this.tableData = [];
- this.dataList = [];
- }
- },
- /* 删除已选指标 */
- delTarget() {
- this.tableData = [];
- this.dataList = [];
- this.select_target = '';
- this.page_no = 1;
- },
- /* 过滤负数 小数点*/
- filterCode(item) {
- item.moveVal=item.moveVal.replace(/[^\.\d]/g,'').replace('.','');
- },
- init() {
- this.page_no = 1;
- this.select_target = '';
- this.searchOptions = [];
- this.tableData = [];
- this.dataList = [];
- this.formData = {
- targetName:'',
- unit:'',
- menu:'',
- frequency:'',
- n_num: 1,
- moveType: 1,
- moveUnit: '天',
- moveVal: '',
- calendar_type: '公历',
- value_type: '期末值'
- };
- this.$refs.form.resetFields();
- },
- /* 保存 */
- async saveHandle() {
- if(!this.select_target) return this.$message.warning(/* '指标不能为空' */this.$t('Edb.Valids.no_edb'))
- // return
- await this.$refs.form.validate()
- this.loading = true;
-
- const valueMap = {
- 46: 'moveVal',
- 54: 'value_type'
- }
- let params ={
- Source: this.type,
- EdbName: this.formData.targetName,
- Unit: this.formData.unit,
- ClassifyId: this.formData.menu[this.formData.menu.length - 1],
- Frequency: this.formData.frequency,
- FromEdbInfoId: this.select_target,
- Formula: valueMap[this.type] ? String(this.formData[valueMap[this.type]]) : String(this.formData.n_num),
- MoveFrequency: this.formData.moveUnit,
- MoveType: this.formData.moveType,
- Calendar: this.formData.calendar_type,
- }
- /* 编辑 */
- let edit_params = { ...params,EdbInfoId: this.operationForm.edb_id }
- preDictEdbInterface.operateEdbSave(this.operationForm.edb_id ? edit_params : params)
- .then((res) => {
- this.loading = false;
- if(res.Ret !== 200) return
- this.$message.success(res.Msg);
- this.operationForm.edb_id ? this.$emit('addCallBack','edit') : this.$emit('addCallBack','add',{
- code:res.Data.UniqueCode,
- id:res.Data.EdbInfoId,
- classifyId:params.ClassifyId
- });
- this.init();
- })
- },
- /* 关闭弹窗 */
- cancelHandle(type) {
- this.init()
- this.$emit('cancel');
- type==='cancel' && !this.operationForm.edb_id && this.$emit('openPrev');
- },
- /* 单位默认同步基础指标
- 同比 同差 频度同步 单位无
- 转月 平均值 频度单位同步
-
- 同比 同差值:默认名称为指标名称+同比/同差
- n数值环比/环差值计算:默认名称为指标名称+N+频度+环比/环差
- 转月 平均计算 变频默认指标名称同步
- */
- setDefaultOption(obj) {
- const tMap=new Map([
- ['日度','D'],
- ['周度','W'],
- ['旬度','T'],
- ['月度','M'],
- ['季度','Q'],
- ['年度','Y'],
- ])
- let edbName = this.$parent.currentLang==='en'?obj.EdbNameEn:obj.EdbName;
- let unit = this.$parent.currentLang ==='en'?obj.UnitEn:obj.Unit;
- const name_map = {
- 42: edbName,
- 32: `${edbName}同比`,
- 33: `${edbName}同差`,
- 39: `${edbName}/${this.formData.n_num}${tMap.get(obj.Frequency)}MA`,
- 45: `${edbName}/${obj.Frequency}升频`,
- 43: `${edbName}${this.formData.n_num}${obj.Frequency.slice(0,1)}环比`,
- 44: `${edbName}${this.formData.n_num}${obj.Frequency.slice(0,1)}环差`,
- 49: `${edbName}超季节性/${this.formData.n_num}年${this.formData.calendar_type==='公历'?'':'/'+this.formData.calendar_type}`,
- 55: `${edbName}年化`,
- 54: `${edbName}/${obj.Frequency}降频`,
- 64: edbName,
- 65: edbName,
- 66: edbName,
- }
- this.formData = {
- targetName: name_map[this.type] || '',
- frequency: this.type === 45 ? '日度' : this.type === 64 ? '季度': this.type === 65 ? '': obj.Frequency,
- unit: [33,39,42,45,49].includes(this.type) ? unit : '无',
- menu:'',
- n_num: 1,
- moveType: 1,
- moveUnit: '天',
- moveVal: '',
- calendar_type: this.formData.calendar_type,
- value_type: this.formData.value_type
- }
- },
- // N数值变化,名称也变化
- NchangeHandle() {
- if(!this.select_target) return;
- let obj = this.searchOptions.find(item => item.EdbInfoId === this.select_target);
- let edbName = this.$parent.currentLang==='en'?obj.EdbNameEn:obj.EdbName;
- const tMap=new Map([
- ['日度','D'],
- ['周度','W'],
- ['旬度','T'],
- ['月度','M'],
- ['季度','Q'],
- ['年度','Y'],
- ])
- const name_map = {
- 43: `${edbName}${this.formData.n_num}${obj.Frequency.slice(0,1)}环比`,
- 44: `${edbName}${this.formData.n_num}${obj.Frequency.slice(0,1)}环差`,
- 49: `${edbName}超季节性/${this.formData.n_num}年${this.formData.calendar_type==='公历'?'':'/'+this.formData.calendar_type}`,
- 39: `${edbName}/${this.formData.n_num}${tMap.get(obj.Frequency)}MA`,
- }
- this.formData.targetName = name_map[this.type] || '';
- },
- },
- mounted() {},
- }
- </script>
- <style lang='scss'>
- .operation-dialog {
- position: relative;
- div::-webkit-scrollbar {
- width: 6px !important;
- }
- .el-input-number .el-input__inner {
- padding: 0 34px 0 4px;
- }
- .el-dialog__body {
- max-height: 780px;
- overflow: auto;
- }
- .dialog-main {
- .el-cascader .el-input {
- width: 340px;
- }
- .label-cont {
- display: flex;
- align-items: center;
- margin-bottom: 15px;
- li {
- cursor: pointer;
- font-size: 16px;
- margin-right: 24px;
- &:hover {
- color: #409EFF;
- }
- &.act {
- color: #409EFF;
- }
- }
- }
- .min-top {
- padding: 20px 30px;
- border: 1px solid #ECECEC;
- box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
- border-radius:4px;
- }
- .middle {
- margin-top: 20px;
- .data-ul {
- margin-top: 5px;
- border-bottom: 1px solid #dcdfe6;
- max-height: 140px;
- overflow-y: auto;
- .value-item {
- /* width: 100%; */
- padding: 14px 0;
- border: 1px solid #dcdfe6;
- border-bottom: none;
- display: flex;
- justify-content: space-around;
- .value-label {
- position: relative;
- color: #666;
- }
- .predict-act {
- color: orange;
- }
- .new-tag {
- width: 6px;
- height: 6px;
- display: inline-block;
- position: absolute;
- left: -12px;
- top: 50%;
- transform: translateY(-50%);
- border-radius: 50%;
- background: #f00;
- }
- }
- }
- .form-cont {
- padding-top: 30px;
- margin-top: 30px;
- border-top: 1px dashed #AAB4CC;
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
- input[type="number"]{
- -moz-appearance: textfield;
- }
- }
- }
- }
- .dia-bot {
- padding: 20px 0 30px;
- display: flex;
- justify-content: center;
- }
- .tip-cont {
- padding: 30px;
- }
- .tip-label {
- position: absolute;
- bottom: 30px;
- right: 30px;
- color: #409EFF;
- cursor: pointer;
- }
- }
- </style>
|