|
@@ -0,0 +1,605 @@
|
|
|
+<template>
|
|
|
+ <div class="fittingEquation-chart-container pub-chart-box" v-if="showData">
|
|
|
+ <span
|
|
|
+ class="slide-icon slide-right"
|
|
|
+ @click="isSlideLeft = !isSlideLeft"
|
|
|
+ v-show="isSlideLeft"
|
|
|
+ >
|
|
|
+ <i class="el-icon-d-arrow-right"></i>
|
|
|
+ </span>
|
|
|
+
|
|
|
+ <div class="data-sheet-main" id="box">
|
|
|
+ <div class="main-left left" id="left" v-show="!isSlideLeft">
|
|
|
+ <div class="datasheet_top">
|
|
|
+ <el-button type="primary" @click="goAddChart">{{
|
|
|
+ $t("StatisticAnalysis.ChartRelevance.chart_add_btn")
|
|
|
+ }}</el-button>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="search-cont">
|
|
|
+ <el-checkbox
|
|
|
+ v-model="isShowMe"
|
|
|
+ @change="
|
|
|
+ () => {
|
|
|
+ getTreeData();
|
|
|
+ getPublicList();
|
|
|
+ }
|
|
|
+ "
|
|
|
+ >{{
|
|
|
+ $t("StatisticAnalysis.ChartRelevance.only_see_mine")
|
|
|
+ }}</el-checkbox
|
|
|
+ >
|
|
|
+ <el-select
|
|
|
+ v-model="search_txt"
|
|
|
+ v-loadMore="searchLoad"
|
|
|
+ :filterable="!search_txt"
|
|
|
+ remote
|
|
|
+ clearable
|
|
|
+ :placeholder="$t('Chart.search_chart_placeholder')"
|
|
|
+ style="width: 100%; margin-top: 20px"
|
|
|
+ :remote-method="searchHandle"
|
|
|
+ @click.native="inputFocusHandle"
|
|
|
+ >
|
|
|
+ <i slot="prefix" class="el-input__icon el-icon-search"></i>
|
|
|
+ <el-option
|
|
|
+ v-for="item in searchOptions"
|
|
|
+ :key="item.ChartInfoId"
|
|
|
+ :label="
|
|
|
+ currentLang === 'en'
|
|
|
+ ? item.ChartNameEn || item.ChartName
|
|
|
+ : item.ChartName
|
|
|
+ "
|
|
|
+ :value="item.ChartInfoId"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ <div class="tree-cont">
|
|
|
+ <el-tree
|
|
|
+ class="target_tree"
|
|
|
+ ref="menuTree"
|
|
|
+ :data="treeData"
|
|
|
+ node-key="UniqueCode"
|
|
|
+ :props="defaultProp"
|
|
|
+ :allow-drag="canDragHandle"
|
|
|
+ :allow-drop="canDropHandle"
|
|
|
+ :current-node-key="select_node"
|
|
|
+ :default-expanded-keys="defaultShowNodes"
|
|
|
+ draggable
|
|
|
+ :expand-on-click-node="false"
|
|
|
+ check-strictly
|
|
|
+ empty-text="暂无目录"
|
|
|
+ lazy
|
|
|
+ :load="getLazyTreeData"
|
|
|
+ @node-expand="handleNodeExpand"
|
|
|
+ @node-collapse="handleNodeCollapse"
|
|
|
+ @current-change="nodeChange"
|
|
|
+ @node-drop="dropOverHandle"
|
|
|
+ @node-drag-end="dropMouseLeave"
|
|
|
+ @node-drag-leave="dropMouseLeave"
|
|
|
+ @node-drag-enter="dropMouseOver"
|
|
|
+ >
|
|
|
+ <span class="custom-tree-node" slot-scope="{ node, data }">
|
|
|
+ <el-input
|
|
|
+ ref="editVal"
|
|
|
+ style="width: 90px"
|
|
|
+ placeholder="请输入值"
|
|
|
+ class="label-input"
|
|
|
+ v-model="new_label"
|
|
|
+ v-if="data.isEdit && isEdbBtnShow('editCatalog')"
|
|
|
+ @blur="changeValue(node, data)"
|
|
|
+ />
|
|
|
+ <span
|
|
|
+ @dblclick.stop="editNodeLabel(node, data)"
|
|
|
+ v-else
|
|
|
+ class="text_oneLine node_label"
|
|
|
+ :style="`width:${
|
|
|
+ (select_node === data.UniqueCode && node.Nodewidth) || ''
|
|
|
+ }`"
|
|
|
+ :id="`node${data.UniqueCode}`"
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ :src="$icons.lock_ico2"
|
|
|
+ width="18"
|
|
|
+ height="18"
|
|
|
+ style="vertical-align: middle"
|
|
|
+ v-if="!data.HaveOperaAuth && data.EdbInfoId"
|
|
|
+ />
|
|
|
+ <span>{{
|
|
|
+ currentLang === "en"
|
|
|
+ ? data.ChartClassifyNameEn || data.ChartClassifyName
|
|
|
+ : data.ChartClassifyName
|
|
|
+ }}</span>
|
|
|
+ </span>
|
|
|
+ <span
|
|
|
+ style="display: flex; align-items: center"
|
|
|
+ v-if="select_node === data.UniqueCode && data.HaveOperaAuth"
|
|
|
+ >
|
|
|
+ <!-- 添加子项 -->
|
|
|
+ <img
|
|
|
+ src="~@/assets/img/set_m/add.png"
|
|
|
+ alt=""
|
|
|
+ style="width: 14px; height: 14px; margin-right: 8px"
|
|
|
+ @click.stop="addNode(node, data)"
|
|
|
+ v-if="
|
|
|
+ data.Button.AddButton &&
|
|
|
+ isEdbBtnShow('editCatalog') &&
|
|
|
+ node.level < 6
|
|
|
+ "
|
|
|
+ />
|
|
|
+ <!-- 编辑节点 如果是分类,判断data.Button.OpButton不变;如果是指标,不显示(ETA1.0.3) -->
|
|
|
+ <img
|
|
|
+ src="~@/assets/img/set_m/edit.png"
|
|
|
+ alt=""
|
|
|
+ style="width: 15px; height: 14px; margin-right: 8px"
|
|
|
+ @click.stop="editNode(node, data)"
|
|
|
+ v-if="
|
|
|
+ !data.EdbCode &&
|
|
|
+ data.Button.OpButton &&
|
|
|
+ isEdbBtnShow('editCatalog')
|
|
|
+ "
|
|
|
+ />
|
|
|
+ <!-- 删除节点 如果是分类,判断data.Button.DeleteButton不变;如果是指标,不显示(ETA1.0.3) -->
|
|
|
+ <img
|
|
|
+ slot="reference"
|
|
|
+ src="~@/assets/img/set_m/del.png"
|
|
|
+ alt=""
|
|
|
+ style="width: 14px; height: 14px"
|
|
|
+ @click.stop="removeNode(node, data)"
|
|
|
+ v-if="
|
|
|
+ !data.EdbCode &&
|
|
|
+ data.Button.DeleteButton &&
|
|
|
+ isEdbBtnShow('deleteCatalog')
|
|
|
+ "
|
|
|
+ />
|
|
|
+ </span>
|
|
|
+ </span>
|
|
|
+ </el-tree>
|
|
|
+ <div class="noDepart" @click="addLevelOneHandle">
|
|
|
+ <img
|
|
|
+ src="~@/assets/img/set_m/add_ico.png"
|
|
|
+ alt=""
|
|
|
+ style="width: 16px; height: 16px; margin-right: 10px"
|
|
|
+ />
|
|
|
+ <span>{{ $t("EtaBasePage.add_first_menu_btn") }}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <span
|
|
|
+ class="move-btn resize"
|
|
|
+ v-drag
|
|
|
+ id="resize"
|
|
|
+ @mousemove="dynamicNode && resetNodeStyle(dynamicNode)"
|
|
|
+ ></span>
|
|
|
+ <span class="slide-icon slide-left" @click="isSlideLeft = !isSlideLeft">
|
|
|
+ <i class="el-icon-d-arrow-left"></i>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div
|
|
|
+ class="main-right"
|
|
|
+ id="right"
|
|
|
+ :style="isSlideLeft ? 'width:100%' : 'width:80%'"
|
|
|
+ >
|
|
|
+ <!-- 图表详情 -->
|
|
|
+ <div class="chart-detail-wrapper" v-if="chartInfo.ChartInfoId">
|
|
|
+ <el-row class="bottom-min">
|
|
|
+ <el-col :span="21" style="padding: 20px 0">
|
|
|
+ <div class="chart-show-cont" v-if="!chartInfo.WarnMsg">
|
|
|
+ <div class="chartWrapper" id="chartWrapper">
|
|
|
+ <h2 class="chart-title">
|
|
|
+ {{
|
|
|
+ currentLang === "en"
|
|
|
+ ? chartInfo.ChartNameEn || chartInfo.ChartName
|
|
|
+ : chartInfo.ChartName
|
|
|
+ }}
|
|
|
+ </h2>
|
|
|
+ <Chart
|
|
|
+ :options="options"
|
|
|
+ :chartInfo="chartInfo"
|
|
|
+ minHeight="440px"
|
|
|
+ height="500px"
|
|
|
+ ref="chartRef"
|
|
|
+ />
|
|
|
+ <template>
|
|
|
+ <div class="range-cont left" v-if="leftIndex !== -1">
|
|
|
+ <el-input
|
|
|
+ style="width: 60px; display: block"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="上限"
|
|
|
+ v-model="chartLimit.max"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ <el-input
|
|
|
+ class="min-data-input"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="下限"
|
|
|
+ v-model="chartLimit.min"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="range-cont right" v-if="rightIndex !== -1">
|
|
|
+ <el-input
|
|
|
+ style="width: 60px; display: block"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="上限"
|
|
|
+ v-model="chartLimit.rightMax"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ <el-input
|
|
|
+ class="min-data-input"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="下限"
|
|
|
+ v-model="chartLimit.rightMin"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <!-- 右2上下限设置 -->
|
|
|
+ <div
|
|
|
+ class="range-cont rightTwo"
|
|
|
+ v-if="rightTwoIndex !== -1"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ style="width: 60px; display: block"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="上限"
|
|
|
+ v-model="chartLimit.rightTwoMax"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ <el-input
|
|
|
+ class="min-data-input"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="下限"
|
|
|
+ v-model="chartLimit.rightTwoMin"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ <div class="chart-bottom-insruction-info">
|
|
|
+ <div class="chart-source">
|
|
|
+ <span
|
|
|
+ v-if="chartInfo.SourcesFrom"
|
|
|
+ :style="`
|
|
|
+ color: ${
|
|
|
+ JSON.parse(chartInfo.SourcesFrom).isShow
|
|
|
+ ? JSON.parse(chartInfo.SourcesFrom).color
|
|
|
+ : '#999'
|
|
|
+ };
|
|
|
+ fontSize: ${JSON.parse(chartInfo.SourcesFrom).fontSize}px;
|
|
|
+ `"><!-- 来源 -->{{ $t("Chart.Detail.source") }}:{{
|
|
|
+ JSON.parse(chartInfo.SourcesFrom).text
|
|
|
+ }}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 图表说明 -->
|
|
|
+ <div
|
|
|
+ class="chart-instruction"
|
|
|
+ v-if="
|
|
|
+ chartInfo.Instructions &&
|
|
|
+ JSON.parse(chartInfo.Instructions).isShow
|
|
|
+ "
|
|
|
+ v-text="JSON.parse(chartInfo.Instructions).text"
|
|
|
+ :style="`
|
|
|
+ color: ${JSON.parse(chartInfo.Instructions).color};
|
|
|
+ fontSize: ${JSON.parse(chartInfo.Instructions).fontSize}px
|
|
|
+ `"
|
|
|
+ ></div>
|
|
|
+ </div>
|
|
|
+ <span class="chart-author"
|
|
|
+ >{{ $t("MsgPrompt.author") }}:{{
|
|
|
+ chartInfo.SysUserRealName
|
|
|
+ }}</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 异常显示 -->
|
|
|
+ <p
|
|
|
+ class="error-tip"
|
|
|
+ style="min-height: 400px"
|
|
|
+ v-if="chartInfo.WarnMsg"
|
|
|
+ >
|
|
|
+ {{ chartInfo.WarnMsg }}
|
|
|
+ </p>
|
|
|
+ </el-col>
|
|
|
+ <el-col
|
|
|
+ :span="3"
|
|
|
+ style="position: absolute; height: 100%; right: 0"
|
|
|
+ >
|
|
|
+ <!-- 操作 -->
|
|
|
+ <chartHandlesWrap
|
|
|
+ :chartInfo="chartInfo"
|
|
|
+ :linkUrl="linkUrl"
|
|
|
+ @copyChartConfirm="copyChartConfirm"
|
|
|
+ @addMychartHandle="addMychartHandle"
|
|
|
+ @refreshHandle="refreshHandle"
|
|
|
+ @saveChartOtherHandle="saveChartOtherHandle"
|
|
|
+ @editChartHandle="editChartHandle"
|
|
|
+ @openLangInfoDia="openLangInfoDia"
|
|
|
+ @delChartHandle="delChartHandle"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+ <!-- 列表 -->
|
|
|
+ <chartListTableWrap
|
|
|
+ v-else
|
|
|
+ :total="chart_total"
|
|
|
+ :list="chartList"
|
|
|
+ @refresh="handleChartRefresh"
|
|
|
+ @saveOther="handleSaveOther"
|
|
|
+ @deleteChart="handleDeleteChart"
|
|
|
+ @loadMoreHandle="loadMoreHandle"
|
|
|
+ @detailShowHandle="detailShowHandle"
|
|
|
+ @addMychartHandle="addMychartHandle"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 目录弹窗 -->
|
|
|
+ <openDialog
|
|
|
+ :isOpenDialog="isOpenDialog"
|
|
|
+ :title="dialog_title"
|
|
|
+ :formData="dialogForm"
|
|
|
+ @closeDia="isOpenDialog = false"
|
|
|
+ @sucessCallback="classifyCallback"
|
|
|
+ />
|
|
|
+
|
|
|
+ <!-- 图表另存 -->
|
|
|
+ <SaveChartOther
|
|
|
+ :show.sync="isShowSaveOther"
|
|
|
+ fromType=""
|
|
|
+ source="interval_analysis"
|
|
|
+ :data="saveOtherChartInfo"
|
|
|
+ @ensure="getTreeData"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import apiIntervalAnalysis from '@/api/modules/intervalAnalysis'
|
|
|
+import leftMixin from './mixin/leftMixin';
|
|
|
+import Chart from '@/views/dataEntry_manage/components/chart';
|
|
|
+import openDialog from '@/views/dataEntry_manage/databaseComponents/openDialog';
|
|
|
+import addMyClassifyDia from '@/views/dataEntry_manage/components/addMyClassifyDia';
|
|
|
+import SaveChartOther from '@/views/dataEntry_manage/components/SaveChartOther';
|
|
|
+import setEnNameDia from '@/views/dataEntry_manage/components/setEnNameDia.vue'
|
|
|
+import { chartSetMixin } from '@/views/dataEntry_manage/mixins/chartPublic';
|
|
|
+import { copyOtherOptions } from '@/utils/defaultOptions';
|
|
|
+import setLangInfoDia from '@/views/dataEntry_manage/components/setLangInfo.vue'
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ openDialog,
|
|
|
+ Chart,
|
|
|
+ addMyClassifyDia,
|
|
|
+ SaveChartOther,
|
|
|
+ setEnNameDia,
|
|
|
+ setLangInfoDia
|
|
|
+ },
|
|
|
+ mixins: [leftMixin, chartSetMixin],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ showData: false,
|
|
|
+ refreshLoading: false,
|
|
|
+ isShowMe: false,
|
|
|
+ search_txt: '',
|
|
|
+ searchOptions: [],
|
|
|
+ isSlideLeft: false,//左侧分类收起
|
|
|
+
|
|
|
+ select_node: '',//节点唯一标识code
|
|
|
+ select_classify: '',
|
|
|
+
|
|
|
+ select_id: '',//选中的图表id
|
|
|
+ chartInfo: {},
|
|
|
+ chart_title: '',//图表标题 双击标题修改时来存储最新值
|
|
|
+
|
|
|
+ /* 图表列表 */
|
|
|
+ listLoading: false,
|
|
|
+ listFinished: true,//是否还有列表数据
|
|
|
+ chartList: [],
|
|
|
+ chart_total: 0,
|
|
|
+ chart_page: 1,
|
|
|
+ chart_pages_size: 30,
|
|
|
+
|
|
|
+ search_page: 1,
|
|
|
+ search_have_more: false,
|
|
|
+ current_search: '',
|
|
|
+
|
|
|
+ isShowSaveOther: false,//另存为
|
|
|
+ saveOtherChartInfo: {},
|
|
|
+
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+
|
|
|
+ /* 添加图表 */
|
|
|
+ goAddChart() {
|
|
|
+ if (!this.treeData.length) return this.$message.warning('请先添加分类');
|
|
|
+ this.$router.push({ path: '/rangeAnalysisChartEditor' });
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 搜索 */
|
|
|
+ searchHandle(query) {
|
|
|
+ this.search_page = 1;
|
|
|
+ this.current_search = query;
|
|
|
+ this.searchApi(this.current_search)
|
|
|
+ },
|
|
|
+
|
|
|
+ searchApi(query, page = 1) {
|
|
|
+ /* 查找列表 */
|
|
|
+ apiIntervalAnalysis
|
|
|
+ .chartSearch({
|
|
|
+ Keyword: query,
|
|
|
+ IsShowMe: this.isShowMe,
|
|
|
+ CurrentIndex: page
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ if (res.Ret !== 200) return
|
|
|
+ const { List, Paging } = res.Data;
|
|
|
+ this.search_have_more = page < Paging.Pages;
|
|
|
+ this.searchOptions = page === 1 ? List : [...this.searchOptions, ...List];
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 聚焦获取当前检索 */
|
|
|
+ inputFocusHandle(e) {
|
|
|
+ this.search_page = 1;
|
|
|
+ this.current_search = e.target.value;
|
|
|
+ if (this.current_search) {
|
|
|
+ this.searchApi(this.current_search)
|
|
|
+ } else {
|
|
|
+ this.searchOptions = [];
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ searchLoad() {
|
|
|
+ if (!this.search_have_more) return;
|
|
|
+ this.searchApi(this.current_search, ++this.search_page);
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 获取图表列表 */
|
|
|
+ getPublicList() {
|
|
|
+ this.listLoading = true
|
|
|
+ apiIntervalAnalysis.getChartList({
|
|
|
+ CurrentIndex: this.chart_page,
|
|
|
+ PageSize: this.chart_pages_size,
|
|
|
+ ChartClassifyId: this.select_classify || 0,
|
|
|
+ IsShowMe: this.isShowMe
|
|
|
+ }).then(res => {
|
|
|
+ this.listLoading = false
|
|
|
+ if (res.Ret !== 200) return
|
|
|
+
|
|
|
+ this.listFinished = res.Data.Paging.IsEnd
|
|
|
+ this.chartList = res.Data
|
|
|
+ ? this.chart_page === 1
|
|
|
+ ? res.Data.List
|
|
|
+ : [...this.chartList, ...res.Data.List]
|
|
|
+ : [];
|
|
|
+ this.chart_total = res.Data ? res.Data.Paging.Totals : 0;
|
|
|
+ }).catch(() => {
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ loadMoreHandle() {
|
|
|
+ if (this.listLoading || this.listFinished) return
|
|
|
+ this.chart_page++
|
|
|
+ this.getPublicList()
|
|
|
+ },
|
|
|
+
|
|
|
+ detailShowHandle(e){
|
|
|
+ this.select_id=e.ChartInfoId
|
|
|
+ },
|
|
|
+
|
|
|
+ handleInitList() {
|
|
|
+ this.listFinished = false
|
|
|
+ this.chart_page = 1
|
|
|
+ this.chartList = []
|
|
|
+ this.getPublicList()
|
|
|
+ },
|
|
|
+
|
|
|
+ getChartInfo() {
|
|
|
+ this.getDetailHandle();
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 获取图表详情 */
|
|
|
+ getDetailHandle() {
|
|
|
+ apiIntervalAnalysis.chartInfo({
|
|
|
+ ChartInfoId: this.select_id
|
|
|
+ }).then(res => {
|
|
|
+ if (res.Ret !== 200) return
|
|
|
+
|
|
|
+ this.initIntervalAnalysisChartData(res.Data)
|
|
|
+ // 展开左侧目录树
|
|
|
+ this.defaultShowNodes=res.Data.ClassifyLevels||[]
|
|
|
+ //设置tree高亮
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ setTimeout(() => {
|
|
|
+ this.$refs.menuTree.setCurrentKey(res.Data.ChartInfo.UniqueCode);
|
|
|
+ }, 1000);
|
|
|
+ })
|
|
|
+
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 删除图表 */
|
|
|
+ handleDeleteChart(e) {
|
|
|
+ const { ChartClassifyId, ChartInfoId } = e;
|
|
|
+ this.$confirm(this.$t('Chart.OptMsg.chart_del_confirm'), this.$t('Confirm.prompt'), {
|
|
|
+ // confirmButtonText: '确定',
|
|
|
+ // cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ }).then(() => {
|
|
|
+ this.delClassify(ChartClassifyId, ChartInfoId, 'del_chart');
|
|
|
+ })
|
|
|
+ .catch(() => { });
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 刷新图表 */
|
|
|
+ handleChartRefresh(e) {
|
|
|
+ this.refreshLoading = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ target: '.main-right',
|
|
|
+ text: /* '刷新图表中...' */this.$t('Chart.OptMsg.refresh_ing_msg'),
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(255, 255, 255, 0.8)',
|
|
|
+ });
|
|
|
+ apiIntervalAnalysis.chartRefresh({
|
|
|
+ ChartInfoId: e.ChartInfoId,
|
|
|
+ }).then((res) => {
|
|
|
+ this.refreshLoading.close();
|
|
|
+ if (res.Ret === 200) {
|
|
|
+ this.$message.success(res.Msg);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ // 显示另存为
|
|
|
+ handleSaveOther(e) {
|
|
|
+ this.saveOtherChartInfo = e
|
|
|
+ this.isShowSaveOther = true
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 编辑图表 */
|
|
|
+ editChartHandle() {
|
|
|
+ this.$router.push({
|
|
|
+ path: '/rangeAnalysisChartEditor',
|
|
|
+ query: {
|
|
|
+ code: this.chartInfo.UniqueCode,
|
|
|
+ id: this.chartInfo.ChartInfoId
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+
|
|
|
+ if (this.$route.query.code) {
|
|
|
+ this.getTreeData({ code: this.$route.query.code, id: Number(this.$route.query.id) })
|
|
|
+ } else {
|
|
|
+ this.getTreeData();
|
|
|
+ this.getPublicList();
|
|
|
+ }
|
|
|
+
|
|
|
+ window.addEventListener('resize', this.reloadRightWid);
|
|
|
+ },
|
|
|
+ destroyed() {
|
|
|
+ window.removeEventListener('resize', this.reloadRightWid);
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style lang='scss' scoped>
|
|
|
+@import "~@/views/chartRelevance_manage/css/index.scss";
|
|
|
+.pub-chart-box .data-sheet-main .main-left {
|
|
|
+ width: 400px;
|
|
|
+}
|
|
|
+</style>
|
|
|
+
|
|
|
+<style lang="scss">
|
|
|
+@import "~@/views/chartRelevance_manage/css/pub.scss";
|
|
|
+</style>
|