createChart.vue 21 KB

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