123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 |
- <template>
- <div class="fittingEquation-chart-editor-container" id="box">
- <span
- class="slide-icon slide-right"
- @click="isSlideLeft = !isSlideLeft"
- v-show="isSlideLeft"
- >
- <i class="el-icon-d-arrow-right"></i>
- </span>
- <div class="left-cont" v-show="!isSlideLeft" id="left">
- <div class="left-top">
- <el-button type="primary" @click="saveHandle">{{$t('Dialog.confirm_save_btn')}}</el-button>
- <el-button style="margin-right:20px" type="primary" plain @click="$router.replace({
- path: '/fittingEquationList',
- query: $route.query
- })">{{$t('Dialog.cancel_btn')}}</el-button>
-
- <div style="color:#409EFF;font-size: 16px;cursor: pointer;" @click="showExplain = true">
- <i class="el-icon-document" style="font-size:22px;"></i>
- {{$t('StatisticAnalysis.ChartRelevance.opt_tip_btn')}}
- </div>
- </div>
- <div class="left-min">
- <div class="section-item">
- <label style="display: block">{{$t('StatisticAnalysis.ChartRelevance.time')}}:</label>
- <el-select
- style="width: 120px;margin: 10px 0"
- v-model="leftOption.DateType"
- placeholder="请选择"
- @change="leftOption.date=[]"
- >
- <el-option
- v-for="item in yearSelector"
- :key="item.value"
- :label="item.name"
- :value="item.value"
- />
- </el-select>
- <date-picker
- v-model="leftOption.date"
- v-show="leftOption.DateType===5"
- style="width:120px;"
- type="date"
- range
- value-type="format"
- :placeholder="$t('Chart.choose_time')"
- />
- </div>
-
- <el-collapse v-model="activeNames" class="targetset-cont">
- <el-collapse-item
- class="series-li"
- :name="0"
- >
- <template slot="title">
- <el-button type="text" size="small" style="font-size: 15px;">{{$t('StatisticAnalysis.FittingEquationChart.x_edb')}}</el-button>
- </template>
- <div class="setting-wrapper">
- <selectTarget
- ref="xSelectRef"
- @select="chooseXEdbs"
- />
- <ul class="edb-list">
- <li v-for="(item,index) in leftOption.xEdbs" :key="item.id">
- <div class="info">
- <el-popover
- placement="top-start"
- width="200"
- trigger="hover"
- :content="item.name">
- <div class="text_oneLine" slot="reference" style="max-width:200px;">
- <span>{{index+1}}:</span>
- <span>{{item.name}}</span>
- </div>
- </el-popover>
- <i class="el-icon-delete deletesty" @click="removeTarget('x',index)"></i>
- </div>
- </li>
- </ul>
- </div>
- </el-collapse-item>
- <el-collapse-item
- class="series-li"
- :name="1"
- >
- <template slot="title">
- <el-button type="text" size="small" style="font-size: 15px;">{{$t('StatisticAnalysis.FittingEquationChart.y_edb')}}</el-button>
- </template>
- <div class="setting-wrapper">
- <selectTarget
- ref="ySelectRef"
- @select="chooseYEdbs"
- />
- <ul class="edb-list">
- <li v-for="(item,index) in leftOption.yEdbs" :key="item.id">
- <div class="info">
- <el-popover
- placement="top-start"
- width="200"
- trigger="hover"
- :content="item.name">
- <div class="text_oneLine" slot="reference" style="max-width:200px;">
- <span>{{index+1}}:</span>
- <span>{{item.name}}</span>
- </div>
- </el-popover>
- <i class="el-icon-delete deletesty" @click="removeTarget('y',index)"></i>
- </div>
- </li>
- </ul>
- </div>
- </el-collapse-item>
- </el-collapse>
-
- <el-button type="primary" @click="getPreviewData">{{$t('Dialog.confirm_btn')}}</el-button>
- </div>
- <span
- class="move-btn resize"
- v-drag
- id="resize"
- ></span>
- <span class="slide-icon slide-left" @click="isSlideLeft = !isSlideLeft">
- <i class="el-icon-d-arrow-left"></i>
- </span>
- </div>
- <div class="right-cont" id="right" :style="isSlideLeft ? 'width:100%' : `width:80%`">
- <div class="chart-min-cont" v-if="chartBatchData.length">
- <div class="card-wrapper" v-for="(item,index) in chartBatchData" :key="index">
- <chartCard
- :entryType="index+1"
- :ref="`chartCard${index+1}`"
- :data="item"
- />
- </div>
- </div>
-
- <div class="nodata" v-else>
- <tableNoData text="暂无信息"/>
- </div>
- </div>
- <!-- 保存弹窗 -->
- <fittingEquationSaveDia
- :isShow.sync="isSaveDialog"
- :initData="leftOption.ChartMappingList"
- @saveBack="editChartBackHandle"
- />
- <!-- 操作说明 -->
- <ExplainDialog
- textArrName="fittingEquationListTextArr"
- :show-explain="showExplain"
- @close="showExplain = false"
- />
- </div>
- </template>
- <script>
- import { fittingEquationInterface } from '@/api/modules/chartRelevanceApi';
- import { yearSelector } from '@/utils/defaultOptions';
- import Chart from '@/views/dataEntry_manage/components/chart';
- import selectTarget from '../components/selectTarget.vue';
- import fittingEquationSaveDia from '../components/fittingEquationSaveDia.vue';
- import chartCard from '../components/chartCard.vue';
- import ExplainDialog from '../components/explainDialog.vue';
- export default {
- components: { Chart,selectTarget,fittingEquationSaveDia,chartCard,ExplainDialog },
- directives: {
- drag(el, bindings) {
- el.onmousedown = function (e) {
- var init = e.clientX;
- // console.log(init);
- var box = $('#box')[0];
- // console.log(box.clientWidth)
- let total_wid = box.offsetWidth;
- var left = $('#left')[0];
- var right = $('#right')[0];
- var initWidth = left.offsetWidth;
- document.onmousemove = function (e) {
- var end = e.clientX;
- var newWidth = end - init + initWidth;
- left.style.width = newWidth + 'px';
- right.style.width = newWidth > 300 ? total_wid - newWidth + 'px' : total_wid - 320 + 'px';
- };
- document.onmouseup = function () {
- document.onmousemove = document.onmouseup = null;
- e.releaseCapture && e.releaseCapture();
- };
- e.setCapture && e.setCapture();
- return false;
- };
- },
- },
- computed: {
- roleName() {
- return localStorage.getItem('userName');
- },
- yearSelector(){
- return [
- ...yearSelector,
- { name: this.$i18n.locale == 'zh'?'自定义':'custom',value: 5 }
- ]
- }
- },
- data() {
- return {
- chart_code: this.$route.query.code || '',
- isSlideLeft: false,
- activeNames:[0],
- chartBatchData: [],
- dateSelector: [
- { name: '过去1年',value: 1 },
- { name: '过去2年',value: 2 },
- { name: '过去3年',value: 3 },
- { name: '过去5年',value: 4 },
- { name: '过去10年',value: 5 },
- { name: '自定义',value: 6 },
-
- ],
- leftOption: {
- MultipleGraphConfigId: 0,
- ChartMappingList:[],
- DateType: yearSelector[0].value,
- date: [],
- xEdbs: [],
- yEdbs: []
- },
- classifyOptions: [],//分类option
- isSaveDialog: false,
- useTip:`1、选择两组有相关性的指标<br>
- 2、对两组在选定时间范围内的每一个时间节点,生成拟合方程Y=aX+b以及相关系数R²<br>
- 3、分别画出弹性系数a,截距b,相关系数R²,在选定时间范围内的曲线图`,
- //操作说明弹窗
- showExplain:false
- };
- },
- methods: {
- /* 获取图表详情 */
- getChartInfo() {
- fittingEquationInterface.getConfigSetting({
- UniqueCode: this.chart_code,
- }).then((res) => {
- if (res.Ret !== 200) return;
-
- const { ChartMappingList,EdbInfoList,LineChartInfoConfig,MultipleGraphConfigId } = res.Data;
- this.leftOption = {
- MultipleGraphConfigId,
- ChartMappingList,
- DateType: LineChartInfoConfig.DateType,
- date: [LineChartInfoConfig.StartDate,LineChartInfoConfig.EndDate],
- xEdbs: LineChartInfoConfig.XEdbInfoIdList.map(_ => ({ id: _,name:EdbInfoList.find(_edb =>_edb.EdbInfoId===_).EdbName })),
- yEdbs: LineChartInfoConfig.YEdbInfoIdList.map(_ => ({ id: _,name:EdbInfoList.find(_edb =>_edb.EdbInfoId===_).EdbName })),
- }
- this.getPreviewData();
- });
- },
- /* 获取数据 */
- getPreviewData() {
- if(!this.leftOption.xEdbs.length || !this.leftOption.yEdbs.length) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg01'));
- if(this.leftOption.xEdbs.length < 2 || this.leftOption.yEdbs.length < 2) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg02'))
- if(this.leftOption.yEdbs.length !== this.leftOption.xEdbs.length) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg03'));
- const { DateType,date,xEdbs,yEdbs } = this.leftOption;
- let params = {
- DateType,
- StartDate: date[0]||'',
- EndDate: date[1]||'',
- XEdbInfoIdList: xEdbs.map(_ => _.id),
- YEdbInfoIdList: yEdbs.map(_ => _.id)
- }
- const chartNameMap = {
- 1: this.leftOption.ChartMappingList.find(_ => _.Source===5) ? this.leftOption.ChartMappingList.find(_ => _.Source===5).ChartName : '',
- 2: this.leftOption.ChartMappingList.find(_ => _.Source===6) ? this.leftOption.ChartMappingList.find(_ => _.Source===6).ChartName : '',
- 3: this.leftOption.ChartMappingList.find(_ => _.Source===7) ? this.leftOption.ChartMappingList.find(_ => _.Source===7).ChartName : '',
- }
- fittingEquationInterface.previewData(params).then(res => {
- if(res.Ret !== 200) return
- this.chartBatchData = res.Data.List ? res.Data.List.map((_,index) =>({
- ChartInfo: { Source: 6,ChartName: chartNameMap[index+1] },
- EdbInfo: {
- ..._,
- ChartColor:'#00f',
- ChartStyle:'spline',
- PredictChartColor: '#00f',
- ChartType:0,
- ChartWidth:3,
- EdbName:_.Name,
- EdbNameEn: _.NameEn,
- IsAxis:1
- }
- })) : [];
- })
- },
- // 选择指标
- chooseXEdbs(edb) {
- if(edb){
- this.leftOption.xEdbs.push({
- id: edb.EdbInfoId,
- name: edb.EdbName,
- })
- this.$refs.xSelectRef.search_txt = '';
- }
- },
- chooseYEdbs(edb) {
- if(edb) {
- if(this.leftOption.yEdbs)
- this.leftOption.yEdbs.push({
- id: edb.EdbInfoId,
- name: edb.EdbName,
- })
- this.$refs.ySelectRef.search_txt = '';
- }
- },
- /* 删除指标 */
- removeTarget(type,index) {
- type === 'x' ? this.leftOption.xEdbs.splice(index,1) : this.leftOption.yEdbs.splice(index,1);
- },
- reloadRightWid() {
- let total_wid = $('#box')[0].offsetWidth;
- let left = $('#left')[0].offsetWidth;
- let rigtWid = total_wid - left - 20 + 'px';
- $('#right')[0].style.width = rigtWid;
- },
- /* 保存 */
- async saveHandle() {
- if(!this.leftOption.xEdbs.length || !this.leftOption.yEdbs.length) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg01'));
- if(this.leftOption.xEdbs.length < 2 || this.leftOption.yEdbs.length < 2) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg02'))
- if(this.leftOption.yEdbs.length !== this.leftOption.xEdbs.length) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg03'));
- this.isSaveDialog = true;
- },
- /* 保存成功跳列表 */
- editChartBackHandle(query) {
- this.$router.replace({
- path: '/fittingEquationList',
- query
- })
- }
- },
- mounted() {
- this.chart_code && this.getChartInfo();
- window.addEventListener('resize', this.reloadRightWid);
- },
- destroyed() {
- window.removeEventListener('resize', this.reloadRightWid);
- },
- beforeRouteEnter(to, from, next) {
- if(to.query.code){
- to.matched[1].name='编辑图表'
- }else{
- to.matched[1].name='添加图表'
- }
- next()
- }
- };
- </script>
- <style lang="scss">
- .fittingEquation-chart-editor-container {
- $font-small: 12px; $font-normal: 14px;
- display: flex;
- *{ box-sizing: border-box; }
- .el-date-editor .el-range-separator {
- width: 10%;
- }
- .slide-icon {
- padding: 20px 0;
- /* display: block; */
- box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
- border-radius: 5px;
- cursor: pointer;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- z-index: 99;
- &:hover {
- background-color: rgba(0, 0, 0, 0.05);
- }
- &.slide-left {
- right: 0;
- }
- &.slide-right {
- left: 0;
- }
- }
- .left-cont {
- width: 400px;
- min-width: 310px;
- background: #fff;
- margin-right: 20px;
- border: 1px solid #ececec;
- border-radius: 4px;
- box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
- height: calc(100vh - 113px);
- overflow: hidden;
- position: relative;
- box-sizing: border-box;
- .left-top {
- padding: 15px 20px;
- border: 1px solid #ececec;
- box-shadow: 0px 3px 6px rgba(167, 167, 167, 0.09);
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .left-min {
- padding: 30px 20px;
- max-height: calc(100vh - 194px);
- overflow-y: auto;
- .targetset-cont {
- border: 1px solid #DCDFE6;
- margin: 20px 0;
-
- .el-collapse-item.is-disabled .el-collapse-item__header {
- color: #333;
- }
- .setting-wrapper {
- padding: 15px;
- }
- .el-collapse-item__header {
- background-color: #F0F2F5;
- margin-bottom: 0;
- border-bottom: 1px solid #DCDFE6;
- padding: 0 30px;
- .el-collapse-item__arrow {
- position: absolute;
- left: 8px;
- }
- }
- .edb-list {
- margin: 10px 0;
- .info {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- color: #666;
- }
- }
- }
- }
- .move-btn {
- height: 100%;
- width: 4px;
- position: absolute;
- right: 0px;
- top: 0;
- &:hover {
- cursor: col-resize;
- }
- }
- }
- .right-cont {
- width: 80%;
- .mx-datepicker {
- width: 220px !important;
- }
- .chart-min-cont {
- background: #fff;
- height: calc(100vh - 118px);
- border: 1px solid #ececec;
- overflow-y: auto;
- display: flex;
- flex-wrap: wrap;
- .card-wrapper {
- width: 48%;
- margin-bottom: 20px;
- min-height: 350px;
- min-width: 410px;
- margin-right: 15px;
- .card-item {
- padding: 20px;
- .top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .chartWrapper {
- .title {
- font-size: 15px;
- text-align: center;
- margin: 10px 0;
- }
- }
- }
- }
- }
- .nodata {
- height: calc(100vh - 120px);
- background-color: #fff;
- text-align: center;
- font-size: 16px;
- color: #666;
- padding: 100px 0;
- }
- }
- }
- </style>
- <style lang="scss">
- .edb-item-style .el-input__icon {
- line-height: 27px;
- }
- </style>
|