createChart.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845
  1. <template>
  2. <div>
  3. <el-dialog
  4. :visible.sync="isCreateChart"
  5. :close-on-click-modal="false"
  6. :modal-append-to-body='false'
  7. @close="close"
  8. custom-class="create-chart-container"
  9. top="10vh"
  10. center
  11. width="80%"
  12. v-dialogDrag>
  13. <div slot="title" style="display: flex; align-items: center">
  14. <span style="font-size: 16px;cursor: pointer;" @click="editEnName" v-if="chartLang=='en'">{{chartInfo.EdbNameEn || '点击输入英文图表名称' }}</span>
  15. <span style="font-size: 16px;" v-else>{{chartInfo.EdbName || ''}}</span>
  16. </div>
  17. <h2 style="margin-bottom: 15px" v-if="!isOnlyShowBaseChart">{{chart_type===1 ? '曲线图' : '季节性图'}}</h2>
  18. <div class="header">
  19. <template v-if="chart_type===1">
  20. <el-button
  21. type="primary"
  22. v-for="item in yearSelector"
  23. :key="item.value"
  24. size="medium"
  25. :plain="item.value !== year_select"
  26. class="year-btn"
  27. @click.native="changeYear(item)"
  28. >{{ item.name }}</el-button
  29. >
  30. <el-button type="text" class="btn-sty" @click="openDateDia">{{
  31. dateTip
  32. }}</el-button>
  33. <el-button type="text" class="btn-sty" @click="showOnChart('toggle')" v-if="!isOnlyShowBaseChart">{{ isShowOnyearData ? '隐藏同比图' : '展示同比图'}}</el-button>
  34. </template>
  35. <!-- 季节图时间选择 -->
  36. <!-- <template v-else-if="chart_type===2"> -->
  37. <!-- <date-picker
  38. v-model="season_year"
  39. type="month"
  40. value-type="format"
  41. range
  42. placeholder="年份日期选择"
  43. @change="getDataByPath"
  44. /> -->
  45. <!-- </template> -->
  46. <div v-else-if="chart_type === 2" @click="openDateDia" class="date-setting">
  47. {{ season_year && season_year.length>0 ? season_year[0]+'~'+season_year[1]:"年份日期选择" }}
  48. </div>
  49. <span class="change-chart-btn" @click="chartTypeChange" v-if="!isOnlyShowBaseChart">切换{{chart_type==1?'季节性图':'曲线图'}}</span>
  50. </div>
  51. <div class="min-wrapper">
  52. <div class="chartWrapper" id="chartWrapper" v-if="showChart">
  53. <Chart :options="options" ref="chartRef"/>
  54. <div class="range-cont left" v-if="leftIndex != -1">
  55. <el-input
  56. style="width: 80px; display: block"
  57. size="mini"
  58. type="number"
  59. placeholder="上限"
  60. v-model="chartInfo.MaxValue"
  61. @change="() => { chart_type===1?setOptions():setSeasonOptions() }"
  62. />
  63. <el-input
  64. class="min-data-input"
  65. size="mini"
  66. type="number"
  67. placeholder="下限"
  68. v-model="chartInfo.MinValue"
  69. @change="() => { chart_type===1?setOptions():setSeasonOptions() }"
  70. />
  71. </div>
  72. <div class="range-cont right" v-if="isShowOnyearData">
  73. <el-input
  74. style="width: 80px; display: block"
  75. size="mini"
  76. type="number"
  77. placeholder="上限"
  78. v-model="limitData.rightMax"
  79. @change="changeLimit"
  80. />
  81. <el-input
  82. class="min-data-input"
  83. size="mini"
  84. type="number"
  85. placeholder="下限"
  86. v-model="limitData.rightMin"
  87. @change="changeLimit"
  88. />
  89. </div>
  90. <!-- 公历农历切换 只用于季节性图 -->
  91. <div style="text-align:center;">
  92. <el-radio-group
  93. v-model="calendar_type"
  94. class="calendar-cont"
  95. v-if="chart_type===2"
  96. @change="getDataByPath"
  97. >
  98. <el-radio-button label="公历" />
  99. <el-radio-button label="农历" />
  100. </el-radio-group>
  101. </div>
  102. </div>
  103. </div>
  104. </el-dialog>
  105. <!-- 自定义时间段选择弹窗 -->
  106. <DateChooseDia
  107. :isDateDia="isDateDia"
  108. :dateForm="dateForm"
  109. @cancel="isDateDia = false"
  110. @dateBack="dataChangeBack"
  111. />
  112. </div>
  113. </template>
  114. <script>
  115. import { dataBaseInterface } from '@/api/api.js';
  116. import * as supplyApi from '@/api/modules/supplyApi.js';
  117. import { yearSelector,defaultOpts,seasonOptions } from '@/utils/defaultOptions'
  118. import Chart from '../components/chart'
  119. import DateChooseDia from '../components/DateChooseDia';
  120. import Highcharts from 'highcharts'
  121. export default {
  122. components: { Chart,DateChooseDia },
  123. props: {
  124. isCreateChart: {
  125. type: Boolean,
  126. },
  127. edbid: {
  128. type: Number,
  129. },
  130. // 语言 ch/en
  131. chartLang:{
  132. type: String,
  133. default:()=> 'zh'
  134. }
  135. },
  136. computed: {
  137. // 同比,环比,环差,超季节性、 残差展示基础图
  138. isOnlyShowBaseChart() {
  139. return [6,12,13,35,37].includes(this.chartInfo.Source)
  140. }
  141. },
  142. watch: {
  143. isCreateChart(newval) {
  144. newval && this.getDataByPath()
  145. },
  146. },
  147. data () {
  148. return {
  149. year_select: 10, //年份选择项 默认全部
  150. yearSelector: [
  151. {
  152. name: '全部',
  153. value: 10,
  154. },
  155. ...yearSelector,
  156. ],
  157. select_date: [], // 自定义时间段项
  158. options: {},
  159. showChart: false,
  160. chart_type: 1,// 1曲线 2季节
  161. isShowOnyearData: false, //是否展示同比
  162. chartInfo: {},
  163. dataList: [],
  164. leftIndex: 0,
  165. season_year:[],//季节图日期选择
  166. calendar_type:'公历',
  167. /* 日期弹窗 */
  168. isDateDia: false, // 时间段弹窗
  169. dateForm: {},
  170. dateTip: '请选择时间段',
  171. limitData: {
  172. letMin: 0,
  173. leftMax: 0,
  174. rightMin: 0,
  175. rightMax: 0,
  176. },
  177. oldOptions: {
  178. MinValue: 0,
  179. MaxValue: 0
  180. },
  181. // 最近几年
  182. count_year:'',
  183. };
  184. },
  185. methods: {
  186. getDataByPath() {
  187. const apiMap = {
  188. '/database': this.getEdbData,
  189. '/analyseVariety': this.getPlantEdbData
  190. }
  191. apiMap[this.$route.path]()
  192. },
  193. /* 获取指标所有数据 */
  194. async getEdbData() {
  195. let params = {
  196. EdbInfoId: this.edbid,
  197. DateType: this.year_select,
  198. StartYear:this.count_year || 0,
  199. StartDate: this.select_date[0] || '',
  200. EndDate: this.select_date[1] || ''
  201. }
  202. const res = this.chart_type === 1
  203. ? await dataBaseInterface.ebd_data(params)
  204. : await dataBaseInterface.ebdSeasonData({
  205. EdbInfoId: this.edbid,
  206. DateType: this.year_select,
  207. Calendar: this.calendar_type,
  208. StartYear:this.count_year || 0,
  209. StartDate: this.season_year[0] || '',
  210. EndDate: this.season_year[1] || '',
  211. })
  212. if(res.Ret !== 200) return
  213. const { DataList,EdbInfo } = res.Data;
  214. // DataList 表格数据列表
  215. this.chartInfo = (this.oldOptions.MinValue || this.oldOptions.MaxValue) ? {
  216. ...EdbInfo,
  217. ...this.oldOptions
  218. } : EdbInfo;
  219. this.tableData = DataList || [];
  220. if(this.chart_type==2 && !(this.season_year && this.season_year.length>0)){
  221. // 第一次进行初始化显示
  222. let latestYear = parseInt(this.chartInfo.LatestDate.substring(0,4))
  223. this.season_year = [`${latestYear-this.count_year+1}-01-01`,`${latestYear}-12-31`];
  224. }
  225. this.chart_type === 1 ? this.setOptions() : this.setSeasonOptions();
  226. this.showChart = true;
  227. },
  228. /* 获取装置指标数据 */
  229. async getPlantEdbData() {
  230. let params = {
  231. VarietyEdbId: this.edbid,
  232. DateType: this.year_select,
  233. StartYear:this.count_year || 0,
  234. StartDate: this.select_date[0] || '',
  235. EndDate: this.select_date[1] || ''
  236. }
  237. const res = this.chart_type === 1
  238. ? await supplyApi.getEdbDetailData(params)
  239. : await supplyApi.getEdbSeasonData({
  240. VarietyEdbId: this.edbid,
  241. DateType: this.year_select,
  242. Calendar: this.calendar_type,
  243. StartYear:this.count_year || 0,
  244. StartDate: this.season_year[0] || '',
  245. EndDate: this.season_year[1] || '',
  246. })
  247. if(res.Ret !== 200) return
  248. const { DataList,EdbInfo } = res.Data;
  249. // DataList 表格数据列表
  250. this.chartInfo = (this.oldOptions.MinValue || this.oldOptions.MinValue) ? {
  251. ...EdbInfo,
  252. ...this.oldOptions
  253. } : EdbInfo;
  254. this.tableData = DataList || [];
  255. if(this.chart_type==2 && !(this.season_year && this.season_year.length>0)){
  256. // 第一次进行初始化显示
  257. let latestYear = parseInt(this.chartInfo.LatestDate.substring(0,4))
  258. this.season_year = [`${latestYear-this.count_year+1}-01-01`,`${latestYear}-12-31`];
  259. }
  260. this.chart_type === 1 ? this.setOptions() : this.setSeasonOptions();
  261. this.showChart = true;
  262. },
  263. /* 年份改变 重新刷新图表接口 保存当前的图表配置和上下限 只改变图表 */
  264. changeYear(item) {
  265. this.year_select = item.value;
  266. this.select_date = [];
  267. this.dateTip = '请选择时间段';
  268. const { MinValue,MaxValue } = this.chartInfo;
  269. this.oldOptions = {
  270. MinValue: Number(MinValue),
  271. MaxValue: Number(MaxValue)
  272. }
  273. this.getDataByPath()
  274. },
  275. /* 打开时间段弹窗 */
  276. openDateDia() {
  277. // 自定义时间段回显
  278. let selectDateStart = this.chart_type === 2?this.season_year[0]:this.select_date[0]
  279. let selectDateEnd = this.chart_type === 2?this.season_year[1]:this.select_date[1]
  280. this.dateForm = {
  281. date_type: this.year_select,
  282. start_date:
  283. this.year_select === 5 || this.year_select === 6
  284. ? selectDateStart
  285. : '',
  286. end_date: this.year_select === 5 ? selectDateEnd : '',
  287. count_year: this.year_select === 20 ? this.count_year : ''
  288. };
  289. this.isDateDia = true;
  290. },
  291. /* 保存完自定义日期 刷新数据 保存当前的图表配置和上下限 只改变图表*/
  292. dataChangeBack(data) {
  293. this.year_select = data.dateType;
  294. this.isDateDia = false;
  295. this.select_date = [data.start_date, data.end_date];
  296. this.count_year = data.count_year
  297. this.dateTip =
  298. data.dateType === 5
  299. ? `${data.start_date}~${data.end_date}`
  300. : data.dateType === 6
  301. ?`${data.start_date}~至今`
  302. :`最近${this.count_year}年`
  303. if(this.chart_type === 2){
  304. let latestYear = parseInt(this.chartInfo.LatestDate.substring(0,4))
  305. let dateStart = data.start_date
  306. let dateEnd = data.end_date
  307. if(data.dateType==20){
  308. dateStart = `${latestYear-this.count_year+1}-01-01`
  309. dateEnd = `${latestYear}-12-31`
  310. }else if(data.dateType==6){
  311. dateEnd = this.chartInfo.LatestDate
  312. }
  313. this.season_year = [dateStart, dateEnd];
  314. }
  315. const { MinValue,MaxValue } = this.chartInfo;
  316. this.oldOptions = {
  317. MinValue,
  318. MaxValue
  319. }
  320. this.getDataByPath();
  321. },
  322. chartTypeChange() {
  323. this.chart_type = this.chart_type===1 ? 2 : 1;
  324. this.init('no_reset')
  325. this.getDataByPath();
  326. },
  327. // 展示同比图
  328. async showOnChart(scene='') {
  329. if(scene==='toggle') {
  330. this.isShowOnyearData = this.isShowOnyearData ? false : true;
  331. if(!this.isShowOnyearData){
  332. const { MinValue,MaxValue } = this.chartInfo;
  333. this.oldOptions = {
  334. MinValue: Number(MinValue),
  335. MaxValue: Number(MaxValue)
  336. }
  337. this.getDataByPath();
  338. }
  339. }
  340. if(!this.isShowOnyearData) return;
  341. let params = {
  342. DateType: this.year_select,
  343. StartYear:this.count_year || 0,
  344. StartDate: this.select_date[0] || '',
  345. EndDate: this.select_date[1] || ''
  346. }
  347. const res = this.$route.path === '/analyseVariety'
  348. ? await supplyApi.getEdbOnyearData({VarietyEdbId:this.edbid,...params})
  349. : await dataBaseInterface.edbOnyearData({EdbInfoId: this.edbid,...params});
  350. if(res.Ret !== 200) return
  351. const { EdbInfo,DataList } = res.Data;
  352. if(!this.limitData.rightMin && !this.limitData.rightMax) {
  353. this.limitData.rightMin = Number(EdbInfo.MinValue);
  354. this.limitData.rightMax = Number(EdbInfo.MaxValue);
  355. }
  356. this.options.yAxis.push({
  357. title: {
  358. text: '',
  359. align: 'high',
  360. rotation: 0,
  361. y: -15,
  362. offset: 0
  363. },
  364. labels: {
  365. formatter: function (ctx) {
  366. return ctx.value;
  367. },
  368. align: 'center',
  369. },
  370. min: Number(this.limitData.rightMin),
  371. max: Number(this.limitData.rightMax),
  372. ...seasonOptions.yAxis,
  373. opposite: true,
  374. })
  375. this.options.series.push({
  376. data: DataList.map(item=>([item.DataTimestamp, item.Value])),
  377. type: 'spline',
  378. yAxis: 1,
  379. name: this.chartLang=='zh'?`${EdbInfo.EdbName}同比`:EdbInfo.EdbNameEn?`${EdbInfo.EdbNameEn}同比`:'无英文名称',
  380. lineWidth: 1
  381. })
  382. console.log(this.options.series)
  383. },
  384. changeLimit() {
  385. const { rightMax,rightMin } = this.limitData;
  386. this.options.yAxis[1].max = Number(rightMax);
  387. this.options.yAxis[1].min = Number(rightMin);
  388. },
  389. /* 图表配置 曲线*/
  390. setOptions() {
  391. const chartData = _.cloneDeep(this.tableData);
  392. //拼接标题 数据列
  393. let data = [],
  394. ydata = [];
  395. //y轴
  396. // 单位 中文时 为无不显示 英文时 为空提示点击输入
  397. // 中文不存在或等于无时 英文显示为空 中文存在且英文不存在时 显示'英文单位'
  398. let yTitleText = this.chartLang=='zh'?
  399. (this.chartInfo.Unit && this.chartInfo.Unit!='无') ? this.chartInfo.Unit:'':
  400. !this.chartInfo.UnitEn && this.chartInfo.Unit && this.chartInfo.Unit!='无' ? '英文单位':this.chartInfo.UnitEn
  401. // title样式 英文为空时,提示文字样式 英文可以点击设置
  402. let yTitleStyle = {}
  403. if(this.chartLang=='en'){
  404. yTitleStyle.cursor='pointer'
  405. if(yTitleText=='英文单位'){
  406. yTitleStyle.color="#999"
  407. }
  408. }
  409. let yItem = {
  410. title: {
  411. text: yTitleText,
  412. align: 'high',
  413. rotation: 0,
  414. y: -15,
  415. offset: 0,
  416. style:yTitleStyle
  417. },
  418. labels: {
  419. formatter: function (ctx) {
  420. return ctx.value;
  421. },
  422. align: 'center',
  423. },
  424. min: Number(this.chartInfo.MinValue),
  425. max: Number(this.chartInfo.MaxValue),
  426. ...seasonOptions.yAxis,
  427. };
  428. // 图例名称和图例文字样式
  429. let dataName = this.chartLang=='zh'?this.chartInfo.EdbName:this.chartInfo.EdbNameEn?this.chartInfo.EdbNameEn:'无英文名称'
  430. let color = this.chartLang=='en'&&(!this.chartInfo.EdbNameEn)?'#999':'#333'
  431. let legend={
  432. ...defaultOpts.legend,
  433. itemStyle: {
  434. color
  435. },
  436. }
  437. //数据列
  438. let obj = {
  439. data: [],
  440. type: 'spline',
  441. yAxis: 0,
  442. name: dataName,
  443. lineWidth: 3
  444. };
  445. chartData.forEach((item, index) => {
  446. obj.data.push([item.DataTimestamp, item.Value]);
  447. });
  448. data.push(obj);
  449. ydata.push(yItem);
  450. // 范围为1年内 x轴显示为月/日 否则默认年/月
  451. let xAxis = {};
  452. const bool_time = this.xTimeDiffer();
  453. xAxis = bool_time
  454. ? {
  455. ...defaultOpts.xAxis,
  456. labels: {
  457. formatter: function (ctx) {
  458. return Highcharts.dateFormat('%m/%d', ctx.value);
  459. },
  460. },
  461. }
  462. : {
  463. ...defaultOpts.xAxis,
  464. labels: {
  465. formatter: function (ctx) {
  466. return Highcharts.dateFormat('%y/%m', ctx.value);
  467. },
  468. },
  469. };
  470. this.options = {
  471. series: data,
  472. yAxis: ydata,
  473. xAxis,
  474. legend
  475. };
  476. this.showOnChart();
  477. },
  478. /* 季节图 */
  479. setSeasonOptions() {
  480. console.log(this.tableData)
  481. const chartData = _.cloneDeep(this.tableData);
  482. let seasonYdata = [],
  483. seasonData = [];
  484. /* 公历数据处理 处理数据列 y轴 */
  485. if (this.calendar_type === '公历')
  486. for (let j of chartData) {
  487. let serie_item = {
  488. data: [],
  489. type: 'spline',
  490. yAxis: 0,
  491. name: j.Year,
  492. };
  493. const data_array = this.calendar_type === '农历'?_.cloneDeep(j.Items):_.cloneDeep(j.DataList);
  494. data_array &&
  495. data_array.forEach((item) => {
  496. serie_item.data.push([item.DataTimestamp, item.Value]);
  497. });
  498. const index = chartData.findIndex(
  499. (item) => item.Year === j.Year
  500. );
  501. const s_yItem = {
  502. labels: {
  503. formatter: function () {
  504. let val = this.value;
  505. return index !== 0 ? '' : val;
  506. },
  507. align: 'center',
  508. },
  509. title: {
  510. text: this.chartLang=='zh'?this.chartInfo.Unit:
  511. !this.chartInfo.UnitEn && this.chartInfo.Unit && this.chartInfo.Unit!='无' ? '英文单位':this.chartInfo.UnitEn,
  512. align: 'high',
  513. rotation: 0,
  514. y: -15,
  515. offset: -(12 * this.chartInfo.Unit.length),
  516. },
  517. max: Number(this.chartInfo.MaxValue),
  518. min: Number(this.chartInfo.MinValue),
  519. ...seasonOptions.yAxis,
  520. };
  521. seasonData.push(serie_item);
  522. seasonYdata.push(s_yItem);
  523. }
  524. /* 农历数据处理 */
  525. let filterArr =
  526. this.calendar_type === '农历'
  527. ? chartData.List.filter((item, index) => index > 0)
  528. : [];
  529. if (this.calendar_type === '农历')
  530. for (let j of filterArr) {
  531. let serie_item = {
  532. data: [],
  533. type: 'spline',
  534. yAxis: 0,
  535. name: j.Year
  536. };
  537. const data_array = _.cloneDeep(j.Items);
  538. data_array &&
  539. data_array.forEach((item) => {
  540. serie_item.data.push([item.DataTimestamp, item.Value]);
  541. });
  542. const index = filterArr.findIndex((item) => item.Year === j.Year);
  543. const s_yItem = {
  544. labels: {
  545. formatter: function () {
  546. let val = this.value;
  547. return index !== 0 ? '' : val;
  548. },
  549. align: 'center',
  550. },
  551. title: {
  552. text: this.chartLang=='zh'?this.chartInfo.Unit:
  553. !this.chartInfo.UnitEn && this.chartInfo.Unit && this.chartInfo.Unit!='无' ? '英文单位':this.chartInfo.UnitEn,
  554. align: 'high',
  555. rotation: 0,
  556. y: -15,
  557. offset: -(12 * this.chartInfo.Unit.length),
  558. },
  559. max: Number(this.chartInfo.MaxValue),
  560. min: Number(this.chartInfo.MinValue),
  561. ...seasonOptions.yAxis,
  562. };
  563. seasonData.push(serie_item);
  564. seasonYdata.push(s_yItem);
  565. }
  566. /* x轴显示月日 提示框显示月日*/
  567. defaultOpts.xAxis.labels = {
  568. formatter: function () {
  569. return Highcharts.dateFormat('%m/%d', this.value);
  570. },
  571. };
  572. const tooltip = {
  573. ...defaultOpts.tooltip,
  574. dateTimeLabelFormats: {
  575. // 时间格式化字符
  576. day: '%m/%d',
  577. week: '%m/%d',
  578. month: '%m/%d',
  579. year: '%m/%d',
  580. },
  581. xDateFormat: '%m/%d',
  582. }
  583. let rangeSelector =
  584. this.calendar_type === '农历'
  585. ? {
  586. enabled: true,
  587. selected: 0,
  588. inputStyle: {
  589. display: 'none',
  590. },
  591. labelStyle: {
  592. display: 'none',
  593. },
  594. buttonTheme: {
  595. style: {
  596. display: 'none',
  597. },
  598. },
  599. buttons: [
  600. {
  601. type: 'month',
  602. count: 12,
  603. text: '12月',
  604. },
  605. {
  606. type: 'month',
  607. count: 15,
  608. text: '15月',
  609. },
  610. {
  611. type: 'all',
  612. text: '全部',
  613. type: 'all',
  614. },
  615. ],
  616. }
  617. : {
  618. enabled: false,
  619. };
  620. this.options = {
  621. colors:
  622. this.calendar_type === '公历'
  623. ? seasonOptions.colors.slice(-chartData.length)
  624. : seasonOptions.colors.slice(-filterArr.length),
  625. series: seasonData,
  626. yAxis: seasonYdata,
  627. rangeSelector,
  628. tooltip
  629. };
  630. console.log(this.options)
  631. },
  632. /* 查询范围为1年内 x轴显示为月/日 否则默认年/月 */
  633. xTimeDiffer() {
  634. const end_date =
  635. this.year_select === 5
  636. ? this.select_date[1]
  637. : this.year_select === 6
  638. ? new Date()
  639. : '';
  640. //年限差
  641. const year_differ = this.$moment(end_date).diff(
  642. this.$moment(this.select_date[0]),
  643. 'years',
  644. true
  645. );
  646. // console.log(year_differ)
  647. if ([5, 6].includes(this.year_select) && year_differ <= 1) {
  648. return true;
  649. } else {
  650. return false;
  651. }
  652. },
  653. init(type='') {
  654. if(type!=='no_reset') this.chart_type = 1;
  655. this.isShowOnyearData = false;
  656. this.year_select = this.chart_type==1 ? 10 : 20;
  657. // 季节性图默认展示最近5年数据
  658. this.count_year=5
  659. this.select_date = [];
  660. this.options = {};
  661. this.dateTip = '请选择时间段';
  662. this.oldOptions = {};
  663. this.calendar_type = '公历';
  664. this.season_year = [];
  665. this.limitData = {
  666. letMin: 0,
  667. leftMax: 0,
  668. rightMin: 0,
  669. rightMax: 0,
  670. }
  671. },
  672. close() {
  673. this.init()
  674. this.$emit('close')
  675. },
  676. // 编辑英文信息弹窗
  677. editEnName(){
  678. this.$emit('editEnName','chart')
  679. },
  680. // 竖轴标题点击事件
  681. clickYAxisTitle(){
  682. console.log(this.chartLang);
  683. if(this.chartLang == 'en') this.editEnName()
  684. }
  685. },
  686. created() {},
  687. mounted() {},
  688. }
  689. </script>
  690. <style lang='scss'>
  691. .create-chart-container {
  692. min-width: 1200px;
  693. /* .el-dialog__header {
  694. background-color: #fff;
  695. .el-dialog__close {
  696. color: #333;
  697. }
  698. } */
  699. @media screen and (max-width: 1710px) {
  700. .min-data-input {
  701. margin-top: 220px;
  702. }
  703. }
  704. @media screen and (min-width: 1711px) {
  705. .min-data-input {
  706. margin-top: 308px;
  707. }
  708. }
  709. .el-dialog__body {
  710. padding: 20px 50px 30px;
  711. }
  712. .header {
  713. position: relative;
  714. .close {
  715. font-size: 26px;
  716. position: absolute;
  717. right: 0;
  718. top: 50%;
  719. transform: translateY(-50%);
  720. cursor: pointer;
  721. }
  722. .year-btn {
  723. min-width: 98px;
  724. font-size: 14px;
  725. margin-right: 5px;
  726. margin-bottom: 5px;
  727. }
  728. .btn-sty {
  729. font-size: 16px;
  730. padding: 10px;
  731. border: 1px solid #409eff;
  732. }
  733. .date-setting{
  734. width: 210px;
  735. // height: 40px;
  736. padding: 10px;
  737. border: 1px solid #DCDFE6;
  738. border-radius: 4px;
  739. cursor: pointer;
  740. font-size: 14px;
  741. color: #333333;
  742. box-sizing: border-box;
  743. }
  744. .change-chart-btn{
  745. float: right;
  746. color: #409eff;
  747. font-size: 16px;
  748. cursor: pointer;
  749. &::before{
  750. content:'';
  751. display: inline-block;
  752. width: 18px;
  753. height: 18px;
  754. background-image: url('~@/assets/img/chart_m/change.png');
  755. background-size: cover;
  756. position: relative;
  757. top: 4px;
  758. right: 4px;
  759. }
  760. }
  761. }
  762. .min-wrapper {
  763. .el-input__inner {
  764. padding: 0 0 0 5px;
  765. }
  766. margin: 40px 0;
  767. min-height: 400px;
  768. .chartWrapper {
  769. position: relative;
  770. padding: 0 100px;
  771. .range-cont {
  772. position: absolute;
  773. top: 8%;
  774. .min-data-input {
  775. width: 80px;
  776. display: block;
  777. }
  778. &.left {
  779. left: 0px;
  780. }
  781. &.right {
  782. right: 0;
  783. }
  784. }
  785. }
  786. }
  787. }
  788. </style>