chartTrendRender.vue 23 KB

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