editChart.vue 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480
  1. <template>
  2. <div class="editchart-container" id="box">
  3. <span
  4. class="slide-icon slide-right"
  5. @click="isSlideLeft = !isSlideLeft"
  6. v-show="isSlideLeft"
  7. >
  8. <i class="el-icon-d-arrow-right"></i>
  9. </span>
  10. <div class="left-cont" v-show="!isSlideLeft" id="left">
  11. <div class="left-top">
  12. <el-button
  13. type="primary"
  14. @click="saveHandle"
  15. :disabled="chartInfo.ChartType === 5 && tableData.length !== 2"
  16. ><!-- 保存 -->{{$t('Dialog.confirm_save_btn')}}</el-button>
  17. <el-button v-permission="permissionBtn.chartLibPermission.chartLib_otherSave"
  18. type="primary" @click="saveChartOtherHandle"><!-- 另存为 -->{{$t('Table.save_as')}}</el-button>
  19. <el-button type="primary" plain @click="$router.replace({
  20. path: '/chartsetting',
  21. query: {
  22. code: chartInfo.UniqueCode,
  23. id: chartInfo.ChartInfoId
  24. }
  25. })"><!-- 取消 -->{{$t('Dialog.cancel_btn')}}</el-button>
  26. </div>
  27. <div class="left-min">
  28. <el-form
  29. ref="diaForm"
  30. label-position="top"
  31. label-width="80px"
  32. :model="chartInfo"
  33. :rules="chartRules"
  34. >
  35. <el-form-item :label="$t('EtaChartAddPage.label_chart_type')" prop="ChartType">
  36. <el-select
  37. v-model="chartInfo.ChartType"
  38. placeholder="请选择生成样式"
  39. style="width: 90%"
  40. @change="needWatch=true;"
  41. >
  42. <el-option
  43. v-for="item in styleArr"
  44. :key="item.key"
  45. :label="item.label"
  46. :value="item.key"
  47. >
  48. </el-option>
  49. </el-select>
  50. </el-form-item>
  51. <el-form-item :label="$t('EtaChartAddPage.label_chart_theme')" prop="Theme">
  52. <el-select
  53. v-model="chartInfo.ChartThemeId"
  54. placeholder="请选择图表主题"
  55. style="width: 90%"
  56. @change="changeThemeHandle"
  57. >
  58. <el-option
  59. v-for="item in chartThemeArr"
  60. :key="item.ChartThemeId"
  61. :label="item.ChartThemeName"
  62. :value="item.ChartThemeId"
  63. >
  64. </el-option>
  65. </el-select>
  66. </el-form-item>
  67. <el-form-item label="">
  68. <div class="search-cont" v-if="chartInfo.ChartType!==10">
  69. <div>
  70. <label><!-- 选择指标 -->{{$t('Edb.choose_edb')}}:</label>
  71. <el-radio-group v-model="edbFromType">
  72. <el-radio :label="0" style="margin-right: 15px"><!-- ETA指标 -->{{$t('Edb.eta_name')}}</el-radio>
  73. <el-radio :label="1"><!-- ETA预测指标 -->{{$t('Edb.eta_predictor_name')}}</el-radio>
  74. </el-radio-group>
  75. </div>
  76. <el-select
  77. v-model="search_txt"
  78. v-loadMore="searchLoad"
  79. ref="searchRef"
  80. :filterable="!search_txt"
  81. remote
  82. clearable
  83. :placeholder="$t('Edb.InputHolderAll.input_name_orid')"
  84. style="width:90%;margin-top: 10px;display: block;"
  85. :remote-method="searchHandle"
  86. @click.native="inputFocusHandle"
  87. @change="selectTarget($event && searchOptions.find(_ => _.EdbInfoId === $event))"
  88. >
  89. <i slot="prefix" class="el-input__icon el-icon-search"></i>
  90. <el-option
  91. v-for="item in searchOptions"
  92. :key="item.EdbInfoId"
  93. :label="chart_lang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName"
  94. :value="item.EdbInfoId"
  95. :disabled="!item.HaveOperaAuth"
  96. >
  97. <edbDetailPopover :info="item">
  98. <div slot="reference">
  99. <img
  100. :src="$icons.lock_ico2"
  101. width="18"
  102. height="18"
  103. style="vertical-align:middle"
  104. v-if="!item.HaveOperaAuth"
  105. />
  106. {{chart_lang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName }}
  107. </div>
  108. </edbDetailPopover>
  109. </el-option>
  110. </el-select>
  111. </div>
  112. </el-form-item>
  113. <el-form-item :label="$t('Chart.Detail.chart_name')" prop="ChartName">
  114. <el-input
  115. v-model="chartInfo.ChartName"
  116. style="width: 90%"
  117. :placeholder="$t('Dialog.require_vaild')"
  118. clearable
  119. />
  120. </el-form-item>
  121. <el-form-item :label="$t('Chart.Detail.chart_classify')" prop="classify">
  122. <el-cascader
  123. v-model="chartInfo.classify"
  124. :options="classifyOptions"
  125. :props="levelProps"
  126. style="width: 90%"
  127. :placeholder="$t('Chart.InputHolderAll.input_classify')"
  128. />
  129. </el-form-item>
  130. <el-form-item :label="$t('Chart.Detail.chart_unit')" prop="Unit" v-if="[7,11].includes(chartInfo.ChartType)">
  131. <el-select
  132. v-model="chartInfo.Unit"
  133. filterable
  134. allow-create
  135. default-first-option
  136. clearable
  137. @change="changeUnit"
  138. :placeholder="$t('Chart.InputHolderAll.input_common',{label:$t('Chart.Detail.chart_unit')})">
  139. <el-option
  140. v-for="item in UnitOptions"
  141. :key="item.label"
  142. :label="item.label"
  143. :value="item.value">
  144. </el-option>
  145. </el-select>
  146. </el-form-item>
  147. </el-form>
  148. <div class="xaxis-range-cont" v-if="chartInfo.ChartType===2 && tableData && tableData.length>0">
  149. <!-- 仅用于季节性图配置 -->
  150. <div style="margin-bottom: 12px;" class="xaxis-range-tip">
  151. {{$t('EtaChartAddPage.label_xserie_range')}}<!-- 横坐标显示范围 -->
  152. <el-tooltip>
  153. <div slot="content" v-html="$t('EtaChartAddPage.xserie_range_tip')">
  154. </div>
  155. <img src="~@/assets/img/icons/question_mark_black.png" style="height: 16px;cursor: pointer;margin-left: 6px;" />
  156. </el-tooltip>
  157. </div>
  158. <el-date-picker
  159. style="width: 45%;"
  160. v-model="SeasonExtraConfig.XStartDate"
  161. value-format="MM-dd"
  162. popper-class="x-range-picker-date"
  163. format="MM-dd"
  164. :placeholder="$t('Common.ph_time_start')"
  165. @change="xAxisChange"
  166. :clearable="false"
  167. ></el-date-picker>
  168. <el-date-picker
  169. style="width: 45%;"
  170. v-model="SeasonExtraConfig.XEndDate"
  171. value-format="MM-dd"
  172. popper-class="x-range-picker-date"
  173. format="MM-dd"
  174. :placeholder="$t('Common.ph_time_end')"
  175. @change="xAxisChange"
  176. :clearable="false"
  177. ></el-date-picker>
  178. <el-checkbox
  179. :label="$t('EtaChartAddPage.label_cross_year')"
  180. v-model="isSpanYear"
  181. :disabled="isSpanYearDisable"
  182. style="margin-top: 12px;"
  183. @change="changeIsSpanYear"
  184. ></el-checkbox>
  185. <br />
  186. <div class="legend-set-text" @click="openLegendEditDia">
  187. <span>{{$t('EtaChartAddPage.label_legend_set')}}<!-- 图例名称设置 --></span>
  188. <img src="~@/assets/img/icons/edit-blue.png" />
  189. </div>
  190. </div>
  191. <div class="targetset-cont">
  192. <!-- 仅用于散点图配置提出 -->
  193. <div class="scatter-setting" v-if="chartInfo.ChartType === 5 && tableData.length">
  194. <div style="display: flex;margin-right: 15px;">
  195. <span style="margin-right: 3px"><!-- 散点颜色: -->{{$t('Chart.Detail.scatter_color')}}:</span>
  196. <el-color-picker
  197. v-model="tableData[0].ChartColor"
  198. size="mini"
  199. show-alpha
  200. :predefine="predefineColors"
  201. ></el-color-picker>
  202. </div>
  203. <el-checkbox v-model="tableData[0].IsOrder"><!-- 逆序 -->{{$t('Chart.Detail.re_order')}}</el-checkbox>
  204. </div>
  205. <el-collapse v-model="activeNames" class="target-list" v-if="tableData.length&&![7,10,11].includes(chartInfo.ChartType)">
  206. <el-collapse-item v-for="(item,index) in tableData" :key="item.EdbInfoId" :disabled="[2,5].includes(chartInfo.ChartType)">
  207. <template slot="title">
  208. <span class="text_oneLine">{{currentLang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName}}</span>
  209. <!-- 当为季节性图的第二个轴时,隐藏删除按钮 -->
  210. <i class="el-icon-delete del-icon" @click.stop="delTarget(item)" v-if="!(chartInfo.ChartType===2&&index===1)"></i>
  211. </template>
  212. <ul class="setting-cont">
  213. <!-- 堆叠图 或组合图中的堆叠类型 非第一项隐藏配置 -->
  214. <template v-if="showYOptionsHandle(item,index)">
  215. <li>
  216. <el-checkbox v-model="item.IsOrder"><!-- 逆序 -->{{$t('Chart.Detail.re_order')}}</el-checkbox>
  217. </li>
  218. <li>
  219. <el-radio-group v-model="item.IsAxis" size="mini" @input="isChangeEdbAxis=true">
  220. <el-radio-button :label="1"><!-- 左轴 -->{{$t('Chart.Detail.l_axis')}}</el-radio-button>
  221. <el-radio-button :label="0"><!-- 右轴 -->{{$t('Chart.Detail.r_axis')}}</el-radio-button>
  222. <!-- 指标有右轴时才可以选右2轴 不然没有右2这个概念的意义 -->
  223. <el-radio-button
  224. v-if="[1,6].includes(chartInfo.ChartType)"
  225. :label="2"
  226. :disabled="(tableData.findIndex(_ => _.IsAxis===0) === -1)
  227. || (tableData.findIndex(_ => _.IsAxis===0) === index
  228. && tableData.filter(_ => _.IsAxis===0).length === 1)"
  229. ><!-- 右2轴 -->{{$t('Chart.Detail.rtwo_axis')}}</el-radio-button>
  230. </el-radio-group>
  231. </li>
  232. </template>
  233. <li style="min-width: 250px">
  234. <el-radio
  235. v-model="item.EdbInfoType"
  236. :label="1"
  237. @change="getPreviewSplineInfo"
  238. ><!-- 标准指标 -->{{$t('Chart.Detail.stand_lead')}}</el-radio
  239. >
  240. <div style="margin-top: 15px">
  241. <el-radio
  242. v-model="item.EdbInfoType"
  243. :label="0"
  244. style="margin-right: 10px"
  245. @change="getPreviewSplineInfo"
  246. ><!-- 领先指标 -->{{$t('Chart.Detail.leading_lead')}}</el-radio
  247. >
  248. <template v-if="item.EdbInfoType === 0">
  249. <!-- 领先 -->{{$t('EtaChartAddPage.label_lead')}}
  250. <el-input
  251. style="width: 60px"
  252. size="mini"
  253. type="number"
  254. min="0"
  255. v-model="item.LeadValue"
  256. @change="getPreviewSplineInfo"
  257. @keyup.native="filterCode(item)"
  258. ></el-input>
  259. <el-select
  260. v-model="item.LeadUnit"
  261. placeholder=""
  262. style="width: 60px"
  263. size="mini"
  264. @change="getPreviewSplineInfo"
  265. >
  266. <el-option
  267. v-for="item in fre_options"
  268. :key="item"
  269. :label="item"
  270. :value="item"
  271. >
  272. </el-option>
  273. </el-select>
  274. </template>
  275. </div>
  276. </li>
  277. <li>
  278. <div style="display: flex">
  279. <span style="margin-right: 3px"><!-- 线条颜色 -->{{$t('Chart.Detail.line_color')}}:</span>
  280. <el-color-picker
  281. v-model="item.ChartColor"
  282. size="mini"
  283. show-alpha
  284. :predefine="predefineColors"
  285. ></el-color-picker>
  286. </div>
  287. <div style="display: flex;margin-top: 12px" v-if="item.EdbInfoCategoryType === 1">
  288. <span style="margin-right: 3px"><!-- 预测值颜色 -->{{$t('Chart.Detail.predict_color')}}:</span>
  289. <el-color-picker
  290. v-model="item.PredictChartColor"
  291. size="mini"
  292. show-alpha
  293. :predefine="predefineColors"
  294. ></el-color-picker>
  295. </div>
  296. <div
  297. style="margin-top: 12px"
  298. v-if="chartInfo.ChartType === 1
  299. || (chartInfo.ChartType === 6 &&item.ChartStyle==='spline')"
  300. >
  301. <!-- 线条粗细 -->{{$t('Chart.Detail.line_size')}}:
  302. <el-input
  303. style="width: 60px"
  304. size="mini"
  305. type="number"
  306. :min="1"
  307. v-model="item.ChartWidth"
  308. />
  309. </div>
  310. </li>
  311. <li v-if="chartInfo.ChartType === 6">
  312. <div style="display: flex">
  313. <span style="margin-right: 3px"><!-- 生成样式 -->{{$t('Chart.label_create_sty')}}:</span>
  314. <el-select
  315. v-model="item.ChartStyle"
  316. placeholder="请选择生成样式"
  317. style="width: 50%"
  318. class="edb-item-style"
  319. >
  320. <el-option
  321. v-for="item in chartItemStyleArr"
  322. :key="item.key"
  323. :label="item.label"
  324. :value="item.value"
  325. >
  326. </el-option>
  327. </el-select>
  328. </div>
  329. </li>
  330. </ul>
  331. </el-collapse-item>
  332. </el-collapse>
  333. <!-- 奇怪柱状图配置 -->
  334. <bar-option
  335. v-if="[7,11].includes(chartInfo.ChartType)"
  336. ref="BarOptRef"
  337. :chartInfo="chartInfo"
  338. :edblist="tableData"
  339. :datedata="chartInfo.ChartType===7?barDateList:radarChartData.YDataList"
  340. :initData="chartInfo.ChartType===7?initBarOptions:(chartInfo.ExtraConfig&&JSON.parse(chartInfo.ExtraConfig))"
  341. @getData="barOptionPreviewMap"
  342. />
  343. <!-- 截面散点图 -->
  344. <sectional-scatter-option
  345. v-if="chartInfo.ChartType===10"
  346. ref="SectionScatterOptRef"
  347. :chartInfo="chartInfo"
  348. :initData="chartInfo.ExtraConfig?JSON.parse(chartInfo.ExtraConfig):null"
  349. :edbInfoData="tableData"
  350. :IsNameDefault="IsNameDefault"
  351. @getData="getSectionScatterData"
  352. @modifySeriesName="IsNameDefault = false"
  353. />
  354. <!-- 标识区 标记线 图表说明 -->
  355. <markersSection
  356. ref="markerSectionRef"
  357. :chartType="chartInfo.ChartType"
  358. :chartInfo="chartInfo"
  359. :tableData="tableData"
  360. @update="setChartMarkerInfo"
  361. @updateSeason="updateSeasonChart"
  362. @previewSeason="previewSeasonChart"
  363. @previewSeasonRight="previewSeasonRight"
  364. />
  365. </div>
  366. </div>
  367. <span
  368. class="move-btn resize"
  369. v-drag
  370. id="resize"
  371. ></span>
  372. <span class="slide-icon slide-left" @click="isSlideLeft = !isSlideLeft">
  373. <i class="el-icon-d-arrow-left"></i>
  374. </span>
  375. </div>
  376. <div class="right-cont" id="right" :style="isSlideLeft ? 'width:100%' : `width:80%`">
  377. <div class="chart-min-cont" v-if="tableData.length">
  378. <div class="cont-top">
  379. <div class="top-left">
  380. <!-- 默认曲线图 -->
  381. <template v-if="sameOptionType.includes(chartInfo.ChartType)">
  382. <el-button
  383. type="primary"
  384. v-for="item in yearSelector"
  385. :key="item.value"
  386. size="medium"
  387. :plain="item.value !== year_select"
  388. class="year-btn"
  389. @click.native="changeYear(item)"
  390. >{{ item.name }}</el-button
  391. >
  392. <el-button type="text" class="btn-sty" @click="openDateDia">{{
  393. dateTip
  394. }}</el-button>
  395. </template>
  396. <!-- 季节性图选择年份区间 -->
  397. <!-- <date-picker
  398. v-else-if="chartInfo.ChartType === 2"
  399. v-model="season_year"
  400. type="month"
  401. value-type="format"
  402. range
  403. placeholder="年份日期选择"
  404. @change="seasonYearChange"
  405. /> -->
  406. <div v-else-if="chartInfo.ChartType === 2" style="padding: 10px 20px;border: 1px solid #eee;border-radius: 8px;cursor: pointer;"
  407. @click="openDateDia">
  408. {{ season_year && season_year.length>0 ? season_year[0]+'~'+season_year[1]:"年份日期选择" }}
  409. </div>
  410. </div>
  411. </div>
  412. <div class="cont-bottom">
  413. <div class="chart-show-cont" v-if="!chartInfo.WarnMsg&&options.series">
  414. <div class="chartWrapper" id="chartWrapper">
  415. <h2
  416. class="chart-title"
  417. v-show="chartInfo.ChartName"
  418. :style="`
  419. textAlign:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.align};
  420. fontSize:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.style.fontSize}px;
  421. color:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.style.color}
  422. `"
  423. >
  424. {{ chartInfo.ChartName }}
  425. </h2>
  426. <Chart :options="options" :chartInfo="chartInfo" ref="chartRef" />
  427. <!-- <div class="range-cont left" v-if="leftIndex != -1">
  428. <el-input
  429. style="width: 60px; display: block"
  430. size="mini"
  431. type="number"
  432. placeholder="上限"
  433. v-model="tableData[leftIndex].MaxData"
  434. />
  435. <el-input
  436. class="min-data-input"
  437. size="mini"
  438. type="number"
  439. placeholder="下限"
  440. v-model="tableData[leftIndex].MinData"
  441. />
  442. </div>
  443. <div class="range-cont right" v-if="rightIndex != -1">
  444. <el-input
  445. style="width: 60px; display: block"
  446. size="mini"
  447. type="number"
  448. placeholder="上限"
  449. v-model="tableData[rightIndex].MaxData"
  450. />
  451. <el-input
  452. class="min-data-input"
  453. size="mini"
  454. type="number"
  455. placeholder="下限"
  456. v-model="tableData[rightIndex].MinData"
  457. />
  458. </div>
  459. <div class="range-cont rightTwo" v-if="rightTwoIndex != -1">
  460. <el-input
  461. style="width: 60px; display: block"
  462. size="mini"
  463. type="number"
  464. placeholder="上限"
  465. v-model="tableData[rightTwoIndex].MaxData"
  466. />
  467. <el-input
  468. class="min-data-input"
  469. size="mini"
  470. type="number"
  471. placeholder="下限"
  472. v-model="tableData[rightTwoIndex].MinData"
  473. />
  474. </div> -->
  475. <!-- 需求:曲线图、堆积柱状图、组合图加入新指标时上下限自动调整 -->
  476. <template v-if="![7,10,11].includes(chartInfo.ChartType)">
  477. <div class="range-cont left" v-if="leftIndex !== -1">
  478. <el-input
  479. style="width: 60px; display: block"
  480. size="mini"
  481. type="number"
  482. placeholder="上限"
  483. v-model="chartLimit.max"
  484. @change="changeLimit"
  485. />
  486. <el-input
  487. class="min-data-input"
  488. size="mini"
  489. type="number"
  490. placeholder="下限"
  491. v-model="chartLimit.min"
  492. @change="changeLimit"
  493. />
  494. </div>
  495. <div class="range-cont right" v-if="rightIndex !== -1">
  496. <el-input
  497. style="width: 60px; display: block"
  498. size="mini"
  499. type="number"
  500. placeholder="上限"
  501. v-model="chartLimit.rightMax"
  502. @change="changeLimit"
  503. />
  504. <el-input
  505. class="min-data-input"
  506. size="mini"
  507. type="number"
  508. placeholder="下限"
  509. v-model="chartLimit.rightMin"
  510. @change="changeLimit"
  511. />
  512. </div>
  513. <!-- 右2上下限设置 -->
  514. <div class="range-cont rightTwo" v-if="rightTwoIndex !== -1">
  515. <el-input
  516. style="width: 60px; display: block"
  517. size="mini"
  518. type="number"
  519. placeholder="上限"
  520. v-model="chartLimit.rightTwoMax"
  521. @change="changeLimit"
  522. />
  523. <el-input
  524. class="min-data-input"
  525. size="mini"
  526. type="number"
  527. placeholder="下限"
  528. v-model="chartLimit.rightTwoMin"
  529. @change="changeLimit"
  530. />
  531. </div>
  532. </template>
  533. <!-- 后续新图专用上下限 和其他数据依赖不公用 柱形图 截面散点-->
  534. <template v-if="[7,10,11].includes(chartInfo.ChartType)">
  535. <div class="range-cont left">
  536. <el-input
  537. style="width: 60px; display: block"
  538. size="mini"
  539. type="number"
  540. placeholder="上限"
  541. v-model="chartLimit.max"
  542. @change="changeLimit"
  543. />
  544. <el-input
  545. class="min-data-input"
  546. size="mini"
  547. type="number"
  548. placeholder="下限"
  549. v-model="chartLimit.min"
  550. @change="changeLimit"
  551. />
  552. </div>
  553. <!-- x轴上下限 -->
  554. <div class="range-cont bottom" v-if="chartLimit.x_min||chartLimit.x_max">
  555. <el-input
  556. class="left"
  557. size="mini"
  558. type="number"
  559. placeholder="下限"
  560. v-model="chartLimit.x_min"
  561. @change="changeLimit"
  562. />
  563. <el-input
  564. class="left"
  565. size="mini"
  566. type="number"
  567. placeholder="上限"
  568. v-model="chartLimit.x_max"
  569. @change="changeLimit"
  570. />
  571. </div>
  572. </template>
  573. </div>
  574. <div class="chart-bottom-insruction-info">
  575. <div class="chart-source">
  576. <span
  577. v-if="chartInfo.SourcesFrom"
  578. :style="`
  579. color: ${JSON.parse(chartInfo.SourcesFrom).isShow ? JSON.parse(chartInfo.SourcesFrom).color : '#999'};
  580. fontSize: ${ JSON.parse(chartInfo.SourcesFrom).fontSize }px;
  581. `"
  582. ><!-- 来源 -->{{$t('Chart.Detail.source')}}:{{ JSON.parse(chartInfo.SourcesFrom).text}}</span>
  583. <el-switch
  584. v-if="chartInfo.SourcesFrom"
  585. v-model="chartInfo.SourcesFromVisable"
  586. :active-value="true"
  587. :inactive-value="false"
  588. style="margin:0 15px;"
  589. @change="changeSourceVisable"
  590. />
  591. <span class="editsty" @click="isShowSourceDialog=true"><!-- 编辑 -->{{$t('Chart.chart_edit_btn')}}</span>
  592. </div>
  593. <!-- 公历农历切换 只用于季节性图 -->
  594. <el-radio-group
  595. v-model="calendar_type"
  596. class="calendar-cont"
  597. v-if="chartInfo.ChartType === 2"
  598. @change="getPreviewSplineInfo"
  599. >
  600. <el-radio-button label="公历">{{$t('Chart.calendar_gre')}}</el-radio-button>
  601. <el-radio-button label="农历">{{$t('Chart.calendar_lunar')}}</el-radio-button>
  602. </el-radio-group>
  603. <!-- 图表说明 -->
  604. <div
  605. class="chart-instruction"
  606. v-if="chartInfo.Instructions&&JSON.parse(chartInfo.Instructions).isShow"
  607. v-text="JSON.parse(chartInfo.Instructions).text"
  608. :style="`
  609. color: ${JSON.parse(chartInfo.Instructions).color};
  610. fontSize: ${ JSON.parse(chartInfo.Instructions).fontSize }px
  611. `"
  612. ></div>
  613. </div>
  614. <span class="chart-author"><!-- 作者 -->{{$t('Chart.Detail.author')}}:{{ chartInfo.SysUserRealName }}</span>
  615. </div>
  616. <!-- 异常显示 -->
  617. <p class="error-tip" style="min-height: 400px" v-if="chartInfo.WarnMsg">{{chartInfo.WarnMsg}}</p>
  618. <!-- 关联指标 -->
  619. <chartRelationEdbList
  620. :chartInfo="chartInfo"
  621. :tableData="tableData"
  622. :updateData="updateData"
  623. @changeTableData="changeTableData"
  624. @delTarget="delTarget"
  625. @copyCode="copyCode"
  626. @viewTarget="viewTarget"
  627. />
  628. </div>
  629. </div>
  630. <div class="nodata" v-else>
  631. <tableNoData :text="$t('Common.no_info_msg')"/>
  632. </div>
  633. </div>
  634. <!-- 日期端选择弹窗 -->
  635. <DateChooseDia
  636. :isDateDia="isDateDia"
  637. :dateForm="dateForm"
  638. :earliestDate="earliestDate"
  639. @cancel="isDateDia = false"
  640. @dateBack="dataChangeBack"
  641. />
  642. <!-- 季节性 图例设置 -->
  643. <LegendEditDia
  644. :isEditLegend="legendEditDiaShow"
  645. :legendList="SeasonExtraConfig.ChartLegend"
  646. @cancel="legendEditDiaShow = false"
  647. @saveLegend="saveLegend"
  648. />
  649. <!-- 图表另存 -->
  650. <SaveChartOther
  651. :show.sync="isShowSaveOther"
  652. :data="chartInfo"
  653. />
  654. <!-- 数据来源编辑弹窗 -->
  655. <chartSourceEditDia
  656. :isShow.sync="isShowSourceDialog"
  657. :chartInfo="chartInfo"
  658. @update="value => {chartInfo.SourcesFrom=JSON.stringify({...value,isShow:chartInfo.SourcesFromVisable})}"
  659. />
  660. </div>
  661. </template>
  662. <script>
  663. import { dataBaseInterface } from '@/api/api.js';
  664. import { chartSetMixin } from './mixins/chartPublic';
  665. import {unitSelectList} from '@/utils/defaultOptions.js'
  666. import addOrEditMixn from './mixins/addOreditMixin';
  667. import Chart from './components/chart';
  668. import DateChooseDia from './components/DateChooseDia';
  669. import SaveChartOther from './components/SaveChartOther';
  670. import barOption from './components/barOptionSection.vue';
  671. import sectionalScatterOption from './components/sectionalScatterOption.vue';
  672. import LegendEditDia from './components/LegendEditDia.vue';
  673. import markersSection from './components/markersSection.vue';
  674. import chartSourceEditDia from './components/chartSourceEditDialog.vue';
  675. import chartRelationEdbList from './components/chartReleationEdbTable.vue';
  676. export default {
  677. components: { Chart,DateChooseDia,SaveChartOther,barOption,sectionalScatterOption,LegendEditDia,markersSection,chartSourceEditDia,chartRelationEdbList },
  678. directives: {
  679. drag(el, bindings) {
  680. el.onmousedown = function (e) {
  681. var init = e.clientX;
  682. // console.log(init);
  683. var box = $('#box')[0];
  684. // console.log(box.clientWidth)
  685. let total_wid = box.offsetWidth;
  686. var left = $('#left')[0];
  687. var right = $('#right')[0];
  688. var initWidth = left.offsetWidth;
  689. document.onmousemove = function (e) {
  690. var end = e.clientX;
  691. var newWidth = end - init + initWidth;
  692. left.style.width = newWidth + 'px';
  693. right.style.width = newWidth > 300 ? total_wid - newWidth + 'px' : total_wid - 320 + 'px';
  694. };
  695. document.onmouseup = function () {
  696. document.onmousemove = document.onmouseup = null;
  697. e.releaseCapture && e.releaseCapture();
  698. };
  699. e.setCapture && e.setCapture();
  700. return false;
  701. };
  702. },
  703. },
  704. watch: {
  705. tableData: {
  706. handler(newval, oldval) {
  707. if(newval) {
  708. if([7,10,11].includes(this.chartInfo.ChartType)) {
  709. // 奇怪柱形图
  710. this.chartInfo.ChartType === 7 && this.barDateList.length && this.$refs.BarOptRef && this.$refs.BarOptRef.getBarData();
  711. //雷达图
  712. this.chartInfo.ChartType === 11 && this.$refs.BarOptRef && this.$refs.BarOptRef.getBarData();
  713. }else {
  714. //只有当新增指标or切换左右轴时,才更新上下限
  715. if(this.updateLimit){
  716. this.EdbAxisChange()
  717. }
  718. this.setAddChartDefault();
  719. newval.length && !this.chartInfo.WarnMsg && this.setChartOptionHandle(newval);
  720. }
  721. // 设置起始日期和最新日期
  722. this.setExtremumDate()
  723. }
  724. },
  725. deep: true,
  726. },
  727. },
  728. mixins: [chartSetMixin,addOrEditMixn],
  729. computed:{
  730. UnitOptions(){
  731. return unitSelectList()
  732. }
  733. },
  734. data() {
  735. return {
  736. isSlideLeft: false,
  737. search_txt: '',
  738. activeNames: '',
  739. /* right */
  740. calendar_type: '公历',//默认公历
  741. season_year:'',//季节图时间段
  742. initBarOptions: null,//编辑时回显的barOptions数据
  743. needWatch: false,
  744. IsNameDefault:true,
  745. /* UnitOptions:unitArr */
  746. };
  747. },
  748. methods: {
  749. /* 获取图表详情 */
  750. getChartInfo() {
  751. dataBaseInterface
  752. .getChartByCode({
  753. UniqueCode: this.$route.query.code,
  754. })
  755. .then((res) => {
  756. if (res.Ret !== 200) return;
  757. const { ChartInfo,EdbInfoList,BarChartInfo} = res.Data;
  758. const {SeriesList=[]} = ChartInfo.ExtraConfig?JSON.parse(ChartInfo.ExtraConfig):{}
  759. const {IsNameDefault=true} = SeriesList.length?SeriesList[0]:[]
  760. this.IsNameDefault = IsNameDefault
  761. this.chartInfo = {
  762. ...ChartInfo,
  763. ChartName: this.currentLang==='en'?ChartInfo.ChartNameEn:ChartInfo.ChartName,
  764. classify: [ChartInfo.ChartClassify[0].ParentId,...ChartInfo.ChartClassify.map(item => item.ChartClassifyId)],
  765. Unit: ChartInfo.ChartType===7
  766. ? (this.currentLang==='en'?BarChartInfo.UnitEn:BarChartInfo.Unit)
  767. : (this.currentLang==='en'?ChartInfo.UnitEn:ChartInfo.Unit),
  768. SourcesFromVisable: ChartInfo.SourcesFrom ? JSON.parse(ChartInfo.SourcesFrom).isShow : true,
  769. };
  770. //处理下历史默认来源
  771. this.setDefaultSourceFrom();
  772. //初始化标识线/区/图表说明
  773. this.$refs.markerSectionRef.initData(ChartInfo);
  774. //季节性图处理SeasonAverageConfig,SeasonRightEdbConfig
  775. if(this.chartInfo.ChartType===2){
  776. const {MaxMinLimits,SamePeriodAverage,SamePeriodStandardDeviation,RightAxis} = res.Data.DataResp
  777. this.chartInfo.SeasonAverageConfig = {MaxMinLimits,SamePeriodAverage,SamePeriodStandardDeviation}
  778. this.chartInfo.SeasonRightConfig = RightAxis
  779. const tempData = _.cloneDeep(this.chartInfo.SeasonAverageConfig)
  780. tempData.RightAxis = _.cloneDeep(RightAxis)
  781. tempData.RightInfo = _.cloneDeep((RightAxis.EdbInfoList&&RightAxis.EdbInfoList[0])||{})
  782. if(tempData.RightAxis.IndicatorType!==1){
  783. tempData.RightInfo = EdbInfoList[1]||{}
  784. }
  785. delete tempData.MaxMinLimits.List
  786. delete tempData.SamePeriodAverage.List
  787. delete tempData.SamePeriodStandardDeviation.List
  788. delete tempData.RightAxis.EdbInfoList
  789. this.$refs.markerSectionRef.initSeasonData(tempData)
  790. }
  791. this.tableData = EdbInfoList;
  792. this.updateData = this.tableData.map(item=>{
  793. return this.formatUpdateData(item)
  794. })
  795. this.calendar_type = this.chartInfo.Calendar; //日历类型
  796. this.setDefaultPreviewOption() // 设置配置项
  797. this.$nextTick(()=>{
  798. this.setDefaultDateSelect(); //设置默认的日期选中
  799. })
  800. if(this.chartInfo.ChartType === 7) {
  801. //特殊柱形图数据
  802. this.initBarData(res.Data)
  803. this.initBarOptions = BarChartInfo;
  804. }
  805. //截面散点图
  806. this.chartInfo.ChartType === 10 && this.initSectionScatterData(res.Data);
  807. //雷达图
  808. this.chartInfo.ChartType === 11 && this.initRadarData(res.Data);
  809. this.getThemeList();
  810. //初始化上下限
  811. this.setLimitData(this.tableData)
  812. });
  813. },
  814. /* 设置默认时间选中项 */
  815. setDefaultDateSelect() {
  816. this.year_select = this.chartInfo.DateType;
  817. this.select_date = [this.chartInfo.StartDate, this.chartInfo.EndDate];
  818. this.count_year = this.chartInfo.StartYear;
  819. // this.calendar_type = this.chartInfo.Calendar; //日历类型
  820. if(this.chartInfo.ChartType==2){
  821. if(this.year_select==20){
  822. let latestYear = parseInt(this.tableData[0].LatestDate.substring(0,4))
  823. this.season_year=[`${latestYear-this.count_year+1}-01-01`,`${latestYear}-12-31`]
  824. }else if(this.year_select==6){
  825. this.season_year = [this.chartInfo.SeasonStartDate,this.tableData[0].LatestDate];
  826. }else{
  827. this.season_year = [this.chartInfo.SeasonStartDate,this.chartInfo.SeasonEndDate]
  828. }
  829. }
  830. this.dateTip =
  831. this.chartInfo.DateType === 5
  832. ? `${this.chartInfo.StartDate}~${this.chartInfo.EndDate}`
  833. : this.chartInfo.DateType === 6
  834. ? /* `${this.chartInfo.StartDate}~至今` */ this.$t('Chart.data_tip_since',{date:this.chartInfo.StartDate})
  835. : this.chartInfo.DateType === 20
  836. ?/* `最近${this.chartInfo.StartYear}年` */ this.$t('Chart.date_tip_count',{year:this.chartInfo.StartYear})
  837. :/* '请选择时间段' */this.$t('Chart.choose_time');
  838. },
  839. // 设置配置项
  840. setDefaultPreviewOption(){
  841. if(this.chartInfo.ChartType==2){
  842. this.count_year = this.chartInfo.StartYear
  843. // if(!(this.chartInfo.SeasonEndDate && this.chartInfo.SeasonStartDate)){
  844. // // 获取最近日期的年
  845. // let latestYear = parseInt(this.latestDate.substring(0,4))
  846. // this.season_year=[`${latestYear-this.count_year+1}-01-01`,`${latestYear}-12-31`]
  847. // }
  848. if(this.chartInfo.SeasonExtraConfig){
  849. this.SeasonExtraConfig = JSON.parse(this.chartInfo.SeasonExtraConfig)
  850. // console.log(this.SeasonExtraConfig);
  851. this.isSpanYear=!!this.SeasonExtraConfig.JumpYear
  852. this.isSpanYearDisable=
  853. !!(new Date(`2023-${this.SeasonExtraConfig.XStartDate}`) > new Date(`2023-${this.SeasonExtraConfig.XEndDate}`) ||
  854. new Date(`2023-${this.SeasonExtraConfig.XStartDate}`) == new Date(`2023-${this.SeasonExtraConfig.XEndDate}`))
  855. }
  856. // 图例名称 需要在DataList中取,SeasonExtraConfig里面的可能是旧的
  857. this.SeasonExtraConfig.ChartLegend=[]
  858. const chartDataHandle = this.calendar_type === "农历"?
  859. this.tableData[0].DataList.filter((item, index) => index > 0):
  860. this.tableData[0].DataList
  861. chartDataHandle.map(item =>{
  862. this.SeasonExtraConfig.ChartLegend.push({Name:item.Years,Value:item.ChartLegend})
  863. })
  864. }
  865. },
  866. /* 保存 */
  867. saveHandle() {
  868. if(!this.tableData.length)
  869. return this.$message.warning(/* '暂未选择指标' */this.$t('ToolBox.CommodityPriceChart.tips_msg05'));
  870. this.$refs.diaForm.validate((valid) => {
  871. if(valid) {
  872. // 季节图只允许添加一个指标
  873. if(this.chartInfo.ChartType === 2 && this.tableData.length > 1) {}
  874. //return this.$message.warning(/* '您选择的图表样式为季节性图表,只支持单指标画图' */this.$t('Chart.OptMsg.season_one_msg'));
  875. if(this.chartInfo.ChartType === 7 && !this.$refs.BarOptRef.dateList.length)
  876. return this.$message.warning(/*'请添加日期'*/this.$t('ToolBox.CommodityPriceChart.tips_msg06'));
  877. if(this.chartInfo.ChartType === 10 && !this.$refs.SectionScatterOptRef.seriesArr[0].edbs)
  878. return this.$message.warning(/* '请添加系列指标' */this.$t('Chart.OptMsg.season_add_hint'));
  879. if(this.chartInfo.ChartType === 2){
  880. if(!(this.SeasonExtraConfig.XStartDate && this.SeasonExtraConfig.XEndDate)){
  881. return this.$message.warning(/* '横坐标显示范围不能为空' */this.$t('Chart.OptMsg.season_area_hint'));
  882. }
  883. }
  884. let db_arr = this.tableData.map(item => ({
  885. ChartColor: item.ChartColor,
  886. PredictChartColor: item.PredictChartColor,
  887. ChartStyle: item.ChartStyle,
  888. ChartWidth: Number(item.ChartWidth),
  889. EdbInfoId: item.EdbInfoId,
  890. EdbAliasName: item.EdbAliasName,
  891. EdbInfoType: item.EdbInfoType,
  892. IsAxis: item.IsAxis,
  893. IsOrder: item.IsOrder,
  894. LeadUnit: item.EdbInfoType ? '' : item.LeadUnit,
  895. LeadValue: item.EdbInfoType ? 0 : Number(item.LeadValue),
  896. MaxData: Number(item.MaxData),
  897. MinData: Number(item.MinData)
  898. })
  899. )
  900. let hasLimitChange = Boolean(this.chartInfo.MinMaxSave)
  901. //需检测上下限是否修改
  902. if(![7,10,11].includes(this.chartInfo.ChartType)&&!this.chartInfo.MinMaxSave){
  903. const limitSame= this.getLimitInfo()
  904. hasLimitChange = !limitSame
  905. }
  906. if(![10,11].includes(this.chartInfo.ChartType)){
  907. //每个数据转换需要检测是否合法
  908. for(let i=0;i<db_arr.length;i++){
  909. const {IsConvert,ConvertType,ConvertValue} = this.updateData[i]
  910. //计算方式是否合法
  911. if(IsConvert&&!this.checkConver(ConvertType,ConvertValue)){
  912. //提示语:第${i+1}个指标数据转换不合法,请检查数值
  913. return this.$message.warning(this.$t('EtaChartAddPage.data_transformation_list_hint',{num:i+1}))
  914. }
  915. //如果类型为对数,检测数据是否包含负数
  916. if(IsConvert&&ConvertType===3){
  917. if(!this.checkEdbData(this.tableData[i].DataList)){
  918. //提示语:第${i+1}个指标数据含有负数或0,无法进行对数运算,请检查
  919. return this.$message.warning(this.$t('EtaChartAddPage.data_transformation_list_hint2',{num:i+1}))
  920. }
  921. }
  922. }
  923. db_arr = db_arr.map((item,index)=>{
  924. const {IsConvert,ConvertType,ConvertValue,ConvertUnit,ConvertEnUnit} = this.updateData[index]
  925. return {
  926. ...item,
  927. IsConvert:Number(IsConvert),
  928. ConvertType:IsConvert?ConvertType:1,
  929. ConvertValue:IsConvert?Number(ConvertValue):100,
  930. ConvertUnit:IsConvert?ConvertUnit:'',
  931. ConvertEnUnit:IsConvert?ConvertEnUnit:''
  932. }
  933. })
  934. }
  935. const { ChartType,ChartName,ChartThemeId,SourcesFrom,Instructions,MarkersLines,MarkersAreas,ChartThemeStyle } = this.chartInfo;
  936. let public_param = {
  937. ChartClassifyId: this.chartInfo.classify.length ? this.chartInfo.classify[this.chartInfo.classify.length - 1] : 0,
  938. ChartInfoId: this.chartInfo.ChartInfoId,
  939. ChartEdbInfoList: db_arr,
  940. ChartName,
  941. ChartType,
  942. ChartThemeId,
  943. SourcesFrom,
  944. Instructions,
  945. MarkersLines,
  946. MarkersAreas,
  947. ChartThemeStyle
  948. }
  949. //提交参数
  950. const typePrams = this.getSaveParamsByChartType(public_param);
  951. let params = this.sameOptionType.includes(this.chartInfo.ChartType)
  952. ? {
  953. ...public_param,
  954. DateType: this.year_select,
  955. StartYear: this.count_year || 0,
  956. StartDate:
  957. [5,6].includes(this.year_select)
  958. ? this.select_date[0]
  959. : '',
  960. EndDate: this.year_select === 5 ? this.select_date[1] : '',
  961. }
  962. : typePrams
  963. let svg = this.$refs.chartRef.chart.getSVG({
  964. chart: {
  965. width: 340,
  966. height: 230,
  967. }
  968. });
  969. if(![7,10,11].includes(this.chartInfo.ChartType)){
  970. const {
  971. min,max,rightMin,rightMax,rightTwoMin,rightTwoMax
  972. } = this.chartLimit
  973. params = {
  974. ...params,
  975. LeftMin:min+'',
  976. LeftMax:max+'',
  977. RightMin:rightMin+'',
  978. RightMax:rightMax+'',
  979. Right2Min:rightTwoMin+'',
  980. Right2Max:rightTwoMax+'',
  981. MinMaxSave:Number(hasLimitChange)
  982. }
  983. }
  984. //如果是季节性图,在这里加上同期/右轴的参数
  985. if(this.chartInfo.ChartType===2){
  986. //const {MaxMinLimits={},SamePeriodAverage={},SamePeriodStandardDeviation={}} = this.chartInfo.SeasonAverageConfig||{}
  987. const {SeasonRightConfig={}} = this.chartInfo
  988. const tempData = _.cloneDeep(this.chartInfo.SeasonAverageConfig||{})
  989. delete tempData.MaxMinLimits.List
  990. delete tempData.SamePeriodAverage.List
  991. delete tempData.SamePeriodStandardDeviation.List
  992. const tempConfig = _.cloneDeep(SeasonRightConfig)
  993. delete tempConfig.EdbInfoList
  994. const {MaxMinLimits={},SamePeriodAverage={},SamePeriodStandardDeviation={}} = tempData||{}
  995. params.SeasonExtraConfig = {
  996. ...this.SeasonExtraConfig,
  997. MaxMinLimits:MaxMinLimits.IsAdd?MaxMinLimits:{},
  998. SamePeriodAverage:SamePeriodAverage.IsAdd?SamePeriodAverage:{},
  999. SamePeriodStandardDeviation:SamePeriodStandardDeviation.IsAdd?SamePeriodStandardDeviation:{},
  1000. RightAxis:SeasonRightConfig.IsAdd?tempConfig:{}//右轴的具体配置
  1001. }
  1002. }
  1003. dataBaseInterface.chartEdit(params).then(res => {
  1004. if(res.Ret !== 200) return;
  1005. this.$message.success('编辑成功');
  1006. if(this.$route.query.from === 'mychart') {
  1007. window.close();
  1008. }else {
  1009. this.$router.replace({
  1010. path: '/chartsetting',
  1011. query: {
  1012. code: res.Data.UniqueCode,
  1013. id: res.Data.ChartInfoId
  1014. }
  1015. })
  1016. }
  1017. })
  1018. }
  1019. })
  1020. },
  1021. },
  1022. mounted() {
  1023. this.getMenu();
  1024. this.getChartBaseSetting()
  1025. this.getChartInfo();
  1026. this.reloadRightWid();
  1027. window.addEventListener('resize', this.reloadRightWid);
  1028. },
  1029. destroyed() {
  1030. window.removeEventListener('resize', this.reloadRightWid);
  1031. }
  1032. };
  1033. </script>
  1034. <style lang="scss">
  1035. .editchart-container {
  1036. $font-small: 12px; $font-normal: 14px;
  1037. display: flex;
  1038. *{ box-sizing: border-box; }
  1039. .el-form--label-top .el-form-item__label {
  1040. padding: 0;
  1041. }
  1042. .el-form-item {
  1043. margin-bottom: 8px;
  1044. }
  1045. .el-input-number .el-input__inner {
  1046. padding: 0 34px 0 4px;
  1047. }
  1048. .target-other-name .el-input__inner {
  1049. padding: 0 30px 0 5px !important;
  1050. height: 40px !important;
  1051. line-height: 40px !important;
  1052. }
  1053. .el-color-picker--mini .el-color-picker__trigger {
  1054. width: 60px;
  1055. height: 25px;
  1056. padding: 0;
  1057. }
  1058. .el-color-picker--mini .el-color-picker__mask {
  1059. width: 60px;
  1060. height: 25px;
  1061. }
  1062. .slide-icon {
  1063. padding: 20px 0;
  1064. /* display: block; */
  1065. box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  1066. border-radius: 5px;
  1067. cursor: pointer;
  1068. position: absolute;
  1069. top: 50%;
  1070. transform: translateY(-50%);
  1071. z-index: 99;
  1072. &:hover {
  1073. background-color: rgba(0, 0, 0, 0.05);
  1074. }
  1075. &.slide-left {
  1076. right: 0;
  1077. }
  1078. &.slide-right {
  1079. left: 0;
  1080. }
  1081. }
  1082. .left-cont {
  1083. width: 400px;
  1084. min-width: 300px;
  1085. background: #fff;
  1086. margin-right: 20px;
  1087. border: 1px solid #ececec;
  1088. border-radius: 4px;
  1089. box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
  1090. height: calc(100vh - 113px);
  1091. overflow: hidden;
  1092. position: relative;
  1093. box-sizing: border-box;
  1094. .left-top {
  1095. padding: 15px 20px;
  1096. border: 1px solid #ececec;
  1097. box-shadow: 0px 3px 6px rgba(167, 167, 167, 0.09);
  1098. }
  1099. .left-min {
  1100. padding: 30px 20px;
  1101. max-height: calc(100vh - 194px);
  1102. overflow-y: auto;
  1103. .search-cont {
  1104. color: #606266;
  1105. }
  1106. .xaxis-range-cont{
  1107. color: #606266;
  1108. margin-top: 20px;
  1109. .xaxis-range-tip{
  1110. display: flex;
  1111. align-items: center;
  1112. justify-content: flex-start;
  1113. .hint-message{
  1114. font-size: 15px;
  1115. line-height: 22px;
  1116. }
  1117. }
  1118. .legend-set-text{
  1119. font-size: 15px;
  1120. color: #1B7BDE;
  1121. display: inline-flex;
  1122. align-items: center;
  1123. justify-content: flex-start;
  1124. margin-top: 20px;
  1125. cursor: pointer;
  1126. img{
  1127. height: 16px;
  1128. margin-left: 5px;
  1129. }
  1130. }
  1131. }
  1132. .targetset-cont {
  1133. padding: 30px 0 20px;
  1134. .el-input__inner {
  1135. height: 27px;
  1136. line-height: 27px;
  1137. padding: 0 4px;
  1138. }
  1139. .el-collapse-item.is-disabled .el-collapse-item__header {
  1140. color: #333;
  1141. }
  1142. .target-list {
  1143. border: 1px solid #DCDFE6;
  1144. .del-icon {
  1145. position: absolute;
  1146. right: 10px;
  1147. font-size: 16px;
  1148. color: #f00;
  1149. cursor: pointer;
  1150. }
  1151. .setting-cont {
  1152. padding: 20px 20px 0;
  1153. li {
  1154. padding-bottom: 20px;
  1155. margin-bottom: 20px;
  1156. border-bottom: 1px solid #DCDFE6;
  1157. &:last-child {
  1158. padding-bottom: 0;
  1159. margin-bottom: 0;
  1160. border-bottom: none;
  1161. }
  1162. }
  1163. }
  1164. }
  1165. .el-collapse-item__header {
  1166. background-color: #F0F2F5;
  1167. margin-bottom: 0;
  1168. border-bottom: 1px solid #DCDFE6;
  1169. padding: 0 30px;
  1170. .el-collapse-item__arrow {
  1171. position: absolute;
  1172. left: 8px;
  1173. }
  1174. }
  1175. .scatter-setting {
  1176. display: flex;
  1177. margin-bottom: 20px;
  1178. }
  1179. }
  1180. }
  1181. .move-btn {
  1182. height: 100%;
  1183. width: 4px;
  1184. position: absolute;
  1185. right: 0px;
  1186. top: 0;
  1187. &:hover {
  1188. cursor: col-resize;
  1189. }
  1190. }
  1191. }
  1192. .right-cont {
  1193. width: 80%;
  1194. .mx-datepicker {
  1195. width: 220px !important;
  1196. }
  1197. /* =================== */
  1198. .chart-min-cont {
  1199. background: #fff;
  1200. border: 1px solid #ececec;
  1201. height: calc(100vh - 118px);
  1202. overflow: auto;
  1203. /* overflow: hidden; */
  1204. border-radius: 4px;
  1205. box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
  1206. .cont-top {
  1207. padding: 12px 30px;
  1208. border-bottom: 1px solid #ececec;
  1209. display: flex;
  1210. justify-content: space-between;
  1211. align-items: center;
  1212. box-shadow: 0px 3px 6px rgba(167, 167, 167, 0.09);
  1213. .top-left {
  1214. .year-btn {
  1215. margin-right: 5px;
  1216. margin-bottom: 5px;
  1217. }
  1218. .btn-sty {
  1219. border: 1px solid #409eff;
  1220. }
  1221. .date-setting{
  1222. border: 1px solid #DCDFE6;
  1223. border-radius: 4px;
  1224. cursor: pointer;
  1225. color: #333333;
  1226. line-height: 16px;
  1227. }
  1228. }
  1229. .top-right {
  1230. font-size: 16px;
  1231. .join_txt {
  1232. color: #409eff;
  1233. cursor: pointer;
  1234. &:hover {
  1235. text-decoration: underline;
  1236. }
  1237. }
  1238. .collected {
  1239. color: #f00;
  1240. cursor: pointer;
  1241. &:hover {
  1242. text-decoration: underline;
  1243. }
  1244. }
  1245. .span-item {
  1246. color: #409eff;
  1247. cursor: pointer;
  1248. &:hover {
  1249. text-decoration: underline;
  1250. }
  1251. .el-icon-collection,
  1252. .el-icon-document-copy {
  1253. color: #409eff;
  1254. }
  1255. }
  1256. }
  1257. }
  1258. .cont-bottom {
  1259. padding: 20px 30px;
  1260. .error-tip{ color: #D03F28; font-size: 16px; margin-bottom: 25px; }
  1261. /* height: calc(100vh - 250px);
  1262. overflow: auto; */
  1263. .el-input__inner {
  1264. height: 27px;
  1265. line-height: 27px;
  1266. padding: 0 4px;
  1267. }
  1268. .el-input-number .el-input__inner {
  1269. padding: 0 34px 0 4px;
  1270. }
  1271. .highcharts-range-selector-group {
  1272. display: none;
  1273. .highcharts-input-group {
  1274. display: none;
  1275. }
  1276. }
  1277. .highcharts-axis-title {
  1278. display: block;
  1279. }
  1280. .calendar-cont {
  1281. display: block;
  1282. margin: 10px auto 0;
  1283. text-align: center;
  1284. }
  1285. /* =================== */
  1286. .chart-show-cont {
  1287. padding: 0 150px 60px 120px;
  1288. position: relative;
  1289. .chart-title {
  1290. font-size: 16px;
  1291. font-weight: normal;
  1292. text-align: center;
  1293. margin-bottom: 10px;
  1294. }
  1295. .chart-author {
  1296. font-size: 14px;
  1297. color: #333;
  1298. position: absolute;
  1299. bottom: 20px;
  1300. right: 50px;
  1301. }
  1302. .chartWrapper {
  1303. position: relative;
  1304. .range-cont {
  1305. position: absolute;
  1306. top: 15%;
  1307. .min-data-input {
  1308. width: 60px;
  1309. display: block;
  1310. }
  1311. &.left {
  1312. left: -80px;
  1313. }
  1314. &.right {
  1315. right: -65px;
  1316. }
  1317. &.rightTwo {
  1318. right: -130px;
  1319. }
  1320. &.bottom {
  1321. width: 100%;
  1322. display: flex;
  1323. justify-content: space-between;
  1324. top: auto;
  1325. right: 0;
  1326. bottom: -2%;
  1327. .left {
  1328. width: 60px;
  1329. display: block;
  1330. flex-shrink: 0;
  1331. }
  1332. }
  1333. }
  1334. }
  1335. }
  1336. .options-cont {
  1337. display: flex;
  1338. flex-wrap: wrap;
  1339. justify-content: space-between;
  1340. }
  1341. }
  1342. }
  1343. .nodata {
  1344. height: calc(100vh - 120px);
  1345. background-color: #fff;
  1346. text-align: center;
  1347. font-size: 16px;
  1348. color: #666;
  1349. padding: 100px 0;
  1350. }
  1351. @media screen and (min-width: 1711px){
  1352. .min-data-input {
  1353. margin-top: 310px;
  1354. }
  1355. .btn-sty {
  1356. padding: 10px;
  1357. }
  1358. .year-btn,.btn-sty {
  1359. font-size: $font-normal;
  1360. }
  1361. .date-setting{
  1362. width: 210px;
  1363. height: 40px;
  1364. padding: 12px;
  1365. font-size: $font-normal;
  1366. }
  1367. }
  1368. @media screen and (max-width: 1710px){
  1369. .min-data-input {
  1370. margin-top: 230px;
  1371. }
  1372. .year-btn {
  1373. font-size: $font-small;
  1374. margin-left: 5px;
  1375. margin-right: 5px;
  1376. margin-bottom: 5px;
  1377. padding: 6px 12px;
  1378. }
  1379. .btn-sty {
  1380. font-size: $font-small;
  1381. margin-left: 5px;
  1382. padding: 6px;
  1383. border: 1px solid #409eff;
  1384. }
  1385. .date-setting{
  1386. width: 180px;
  1387. height: 36px;
  1388. padding: 10px;
  1389. font-size: $font-small;
  1390. }
  1391. }
  1392. }
  1393. .expand-wrap{
  1394. display: flex;
  1395. justify-content: center;
  1396. align-items: center;
  1397. gap:30px;
  1398. .el-checkbox{
  1399. margin-right: 15px;
  1400. }
  1401. .el-input{
  1402. width:100px;
  1403. height:27px;
  1404. line-height: 27px;
  1405. .el-input__icon{
  1406. line-height: 27px;
  1407. }
  1408. }
  1409. }
  1410. }
  1411. </style>
  1412. <style lang="scss">
  1413. .edb-item-style .el-input__icon {
  1414. line-height: 27px;
  1415. }
  1416. /*他不要下拉选择框 QAQ */
  1417. .x-range-picker-date {
  1418. display: none;
  1419. }
  1420. </style>