ChartDetail.vue 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500
  1. <script setup>
  2. import {ref,nextTick, reactive,computed} from 'vue'
  3. import apiETAChart from '@/api/chart'
  4. import apiFutureChart from '@/api/futureChart'
  5. import apiCorrelationChart from '@/api/correlationChart'
  6. import apiLineEquationChart from '@/api/lineEquationChart'
  7. import apiStatisticFeatureChart from '@/api/statisticFeatureChart'
  8. import apiCrossVarietyChart from '@/api/crossVarietyChart'
  9. import apiMyETAChart from '@/api/myETA'
  10. import apiDataEDB from '@/api/dataEDB'
  11. import { useRoute, useRouter } from 'vue-router'
  12. import {useChartRender} from '@/hooks/chart/render'
  13. import {yearSelectOpt,sameOptionType} from '@/hooks/chart/config'
  14. import EDBInfo from './components/EDBInfo.vue'
  15. import moment from 'moment'
  16. import { showToast,showDialog} from 'vant'
  17. import ChartSaveOther from './components/ChartSaveOther.vue'
  18. import _ from 'lodash';
  19. import { useWindowSize } from '@vueuse/core'
  20. import {setClipboardData} from '@/hooks/common'
  21. import SetChartEnName from '@/components/SetChartEnName.vue'
  22. import {useCachedViewsStore} from '@/store/modules/cachedViews'
  23. import AddChartToMyETA from '@/views/chartETA/components/AddChartToMyETA.vue'
  24. import { setExtremumDate } from '@/hooks/chart/commonFun.js'
  25. import {myETABtn,useAuthBtn} from '@/hooks/useAuthBtn'
  26. const {checkAuthBtn} = useAuthBtn()
  27. const isMoreActionShow = computed(()=>{
  28. return checkAuthBtn(myETABtn.myChart_refresh)
  29. || checkAuthBtn(myETABtn.myChart_share)
  30. || checkAuthBtn(myETABtn.myChart_move)
  31. || checkAuthBtn(myETABtn.myChart_copyTo)
  32. || checkAuthBtn(myETABtn.myChart_otherSave)
  33. || (checkAuthBtn(myETABtn.myChart_copyWechat)&&checkAuthBtn(myETABtn.myChart_copyOffice))
  34. || checkAuthBtn(myETABtn.myChart_enNameSetting)
  35. || checkAuthBtn(myETABtn.myChart_del)
  36. })
  37. const { width, height } = useWindowSize()
  38. const cachedViewsStore=useCachedViewsStore()
  39. const {options,axisLimitState,chartRender}=useChartRender()
  40. const route=useRoute()
  41. const router=useRouter()
  42. let chartCode=route.query.code
  43. let CHARTINS=null//图表实例
  44. // 获取当前图表所在分类下的所有图表数据 用于上一张下一张切换
  45. let allChartList=ref([])
  46. async function getAllChartList(){
  47. // 如果是从ETA指标库的指标关联的图列表跳转来的
  48. if(route.query.from==='edbRelationChart'){
  49. const res=await apiDataEDB.edbRelationChartList({
  50. PageSize:1000000,
  51. CurrentIndex:1,
  52. EdbInfoId:route.query.edbInfoId
  53. })
  54. if(res.Ret===200){
  55. allChartList.value=res.Data.List||[]
  56. }
  57. return
  58. }
  59. // 我的图库列表跳转来的
  60. if(!route.query.cid) return
  61. const res=await apiMyETAChart.myChartList({
  62. CurrentIndex:1,
  63. PageSize:1000000,
  64. MyChartClassifyId:Number(route.query.cid)
  65. })
  66. if(res.Ret===200){
  67. allChartList.value=res.Data.List||[]
  68. }
  69. }
  70. getAllChartList()
  71. // 切换图上一张下一张
  72. function handleSwitchChart(type){
  73. const index=allChartList.value.findIndex((item)=>item.UniqueCode==chartCode)
  74. let item=null
  75. if(type==='prev'){
  76. item=index===0?allChartList.value[allChartList.value.length-1]:allChartList.value[index-1]
  77. }else{
  78. item=index===allChartList.value.length-1?allChartList.value[0]:allChartList.value[index+1]
  79. }
  80. chartCode=item.UniqueCode
  81. getChartInfo()
  82. }
  83. // 获取图详情
  84. let chartInfoData=null
  85. let chartInfo=ref(null)
  86. let edbList=ref([])//指标数据
  87. async function getChartInfo(){
  88. const res=await apiETAChart.chartInfoByCode({UniqueCode:chartCode})
  89. if(res.Ret!==200) return
  90. chartInfoData=res.Data
  91. chartInfo.value=res.Data.ChartInfo
  92. if([2,5].includes(res.Data.ChartInfo.Source)){
  93. edbList.value=[res.Data.EdbInfoList[0]]
  94. }else{
  95. edbList.value=res.Data.EdbInfoList
  96. }
  97. // 设置 起始日期 和 最新日期
  98. const extremumDate= setExtremumDate(edbList.value)
  99. minDate = new Date(extremumDate.earliestDate)
  100. earliestDate.value = extremumDate.earliestDate
  101. latestDate.value = extremumDate.latestDate
  102. chartState.yearVal=res.Data.ChartInfo.DateType
  103. if(res.Data.ChartInfo.DateType===5){
  104. chartState.startTime=res.Data.ChartInfo.StartDate
  105. chartState.endTime=res.Data.ChartInfo.EndDate
  106. temStartTime.value=res.Data.ChartInfo.StartDate.split('-')
  107. temEndTime.value=res.Data.ChartInfo.EndDate.split('-')
  108. }
  109. if(res.Data.ChartInfo.DateType===6){
  110. chartState.startTime=res.Data.ChartInfo.StartDate
  111. temStartTime.value=res.Data.ChartInfo.StartDate.split('-')
  112. }
  113. if(res.Data.ChartInfo.DateType===20){
  114. // 最近几年
  115. let latestYear = parseInt(latestDate.value.substring(0,4))
  116. chartState.startTime = `${latestYear-chartState.startYear+1}-01-01`
  117. chartState.endTime = `${latestYear}-12-31`
  118. chartState.startTime=res.Data.ChartInfo.StartDate
  119. chartState.endTime=res.Data.ChartInfo.EndDate
  120. temStartTime.value=chartState.startTime.split('-')
  121. temEndTime.value=chartState.endTime.split('-')
  122. }
  123. nextTick(()=>{
  124. CHARTINS=chartRender({
  125. data:res.Data,
  126. renderId:'chart-box',
  127. lang:'zh',
  128. changeLangIsCheck:false,
  129. showChartTitle:false
  130. })
  131. })
  132. }
  133. function openDateSelect(){
  134. // 回显
  135. switch (chartState.yearVal) {
  136. case 3:
  137. temStartTime.value = [2015,1,1]
  138. temEndTime.value = latestDate.value.split('-')
  139. break;
  140. case 9:
  141. temStartTime.value = [2020,1,1]
  142. temEndTime.value = latestDate.value.split('-')
  143. break;
  144. case 4:
  145. temStartTime.value = [2021,1,1]
  146. temEndTime.value = latestDate.value.split('-')
  147. break;
  148. case 11:
  149. temStartTime.value = [2022,1,1]
  150. temEndTime.value = latestDate.value.split('-')
  151. break;
  152. case '':
  153. temStartTime.value = earliestDate.value.split('-')
  154. temEndTime.value = latestDate.value.split('-')
  155. break;
  156. default:
  157. temStartTime.value = chartState.startTime.split('-')
  158. temEndTime.value = chartState.endTime.split('-')
  159. break;
  160. }
  161. chartState.showTimePop=true
  162. }
  163. getChartInfo()
  164. // 选择项发生变化时 非配置项 获取新的图表数据
  165. async function reloadChartInfo(){
  166. const params=sameOptionType.includes(chartInfo.value.ChartType)?{
  167. ChartInfoId: chartInfo.value.ChartInfoId,
  168. DateType: chartState.yearVal,
  169. StartDate: chartState.startTime,
  170. EndDate: chartState.endTime,
  171. }:{
  172. ChartInfoId: chartInfo.value.ChartInfoId,
  173. DateType: chartState.yearVal,
  174. Calendar: chartState.calendarType,//this.calendar_type
  175. StartDate: chartState.startTime,
  176. EndDate:chartState.endTime ,
  177. }
  178. const res=await apiETAChart.chartInfoById(params)
  179. if(res.Ret!==200) return
  180. chartInfo.value=res.Data.ChartInfo
  181. CHARTINS=chartRender({
  182. data:{
  183. ...res.Data,
  184. ChartInfo:{
  185. ...res.Data.ChartInfo,
  186. Calendar:chartState.calendarType||'公历'
  187. }
  188. },
  189. renderId:'chart-box',
  190. lang:'zh',
  191. changeLangIsCheck:false,
  192. showChartTitle:false
  193. })
  194. }
  195. let minDate=new Date(1970, 0, 1)
  196. const maxDate=new Date(2050, 11, 31)
  197. const cYear=moment().format('YYYY')
  198. const cMonth=moment().format('MM')
  199. const cDay=moment().format('dd')
  200. let temStartTime=ref([cYear,cMonth,cDay])
  201. let temEndTime=ref([cYear,cMonth,cDay])
  202. const earliestDate=ref('')
  203. const latestDate=ref('')
  204. let chartState=reactive({
  205. showTimePop:false,
  206. startTime:'',
  207. endTime:'',
  208. yearVal:'',
  209. calendarType:'公历',
  210. startYear:5
  211. })
  212. // 切换年份选项
  213. function handleYearChange(item){
  214. chartState.yearVal=item.value
  215. chartState.startTime=''
  216. chartState.endTime=''
  217. reloadChartInfo()
  218. }
  219. // 确定日期筛选
  220. function handleTimeChange(){
  221. chartState.startTime=temStartTime.value.join('-')
  222. chartState.endTime=temEndTime.value.join('-')
  223. chartState.yearVal=5
  224. reloadChartInfo()
  225. chartState.showTimePop=false
  226. }
  227. // 季节图公历\农历切换
  228. function handleSeasonTypeChange(type){
  229. chartState.calendarType=type
  230. reloadChartInfo()
  231. }
  232. // 上下限调整
  233. let showLimitPop=ref(false)
  234. let axisLimitDataTem=reactive({//左右轴极值
  235. min:'-99999999999999999',
  236. leftMin:0,
  237. leftMax:0,
  238. rightMin:0,
  239. rightMax:0,
  240. rightTwoMin:0,
  241. rightTwoMax:0,
  242. xMin:0,
  243. xMax:0,
  244. })
  245. function handleShowAxisLimitOpt(){
  246. axisLimitDataTem.leftMin=axisLimitState.leftMin
  247. axisLimitDataTem.leftMax=axisLimitState.leftMax
  248. axisLimitDataTem.rightMin=axisLimitState.rightMin
  249. axisLimitDataTem.rightMax=axisLimitState.rightMax
  250. axisLimitDataTem.rightTwoMin=axisLimitState.rightTwoMin
  251. axisLimitDataTem.rightTwoMax=axisLimitState.rightTwoMax
  252. axisLimitDataTem.xMin=axisLimitState.xMin
  253. axisLimitDataTem.xMax=axisLimitState.xMax
  254. showLimitPop.value=true
  255. }
  256. // 极限修改确定
  257. function handleConfirmLimitChange(){
  258. const data=_.cloneDeep(chartInfoData)
  259. // 修改左轴极限
  260. if(axisLimitState.hasLeftAxis){
  261. if(axisLimitState.leftIndex!==-1){
  262. data.EdbInfoList[axisLimitState.leftIndex].MinData=axisLimitDataTem.leftMin
  263. data.EdbInfoList[axisLimitState.leftIndex].MaxData=axisLimitDataTem.leftMax
  264. }else{
  265. // 柱形图 取的ChartInfo中的极值
  266. if(data.ChartInfo.ChartType ===7){
  267. data.ChartInfo.LeftMin=axisLimitDataTem.leftMin
  268. data.ChartInfo.LeftMax=axisLimitDataTem.leftMax
  269. }
  270. // 商品价格曲线
  271. if(data.ChartInfo.ChartType ===8){
  272. data.ChartInfo.LeftMin=axisLimitDataTem.leftMin
  273. data.ChartInfo.LeftMax=axisLimitDataTem.leftMax
  274. }
  275. // 截面散点 取的DataResp
  276. if(data.ChartInfo.ChartType ===10){
  277. data.DataResp.YMinValue=axisLimitDataTem.leftMin
  278. data.DataResp.YMaxValue=axisLimitDataTem.leftMax
  279. }
  280. }
  281. }
  282. // 修改右轴极限
  283. if(axisLimitState.hasRightAxis){
  284. if(axisLimitState.rightIndex!==-1){
  285. data.EdbInfoList[axisLimitState.rightIndex].MinData=axisLimitDataTem.rightMin
  286. data.EdbInfoList[axisLimitState.rightIndex].MaxData=axisLimitDataTem.rightMax
  287. }
  288. }
  289. //修改右2轴极限
  290. if(axisLimitState.hasRightTwoAxis){
  291. if(axisLimitState.rightTwoIndex!==-1){
  292. data.EdbInfoList[axisLimitState.rightTwoIndex].MinData=axisLimitDataTem.rightTwoMin
  293. data.EdbInfoList[axisLimitState.rightTwoIndex].MaxData=axisLimitDataTem.rightTwoMax
  294. }
  295. }
  296. // 修改X轴极限
  297. if(axisLimitState.hasXAxis){
  298. // 截面散点 取的DataResp
  299. if(data.ChartInfo.ChartType ===10){
  300. data.DataResp.XMinValue=axisLimitDataTem.xMin
  301. data.DataResp.XMaxValue=axisLimitDataTem.xMax
  302. }
  303. }
  304. CHARTINS=chartRender({
  305. data:data,
  306. renderId:'chart-box',
  307. lang:'zh',
  308. changeLangIsCheck:false,
  309. showChartTitle:false
  310. })
  311. showLimitPop.value=false
  312. }
  313. // 显示指标详情
  314. let showEDB=ref(false)
  315. let showEDBData=ref({})
  316. function handleShowEDBInfo(item){
  317. showEDBData.value=item
  318. showEDB.value=true
  319. }
  320. // 获取指标数据
  321. async function getItemEDBInfo(item){
  322. const params={
  323. EdbInfoId: item.EdbInfoId,
  324. DateType: chartState.yearVal,
  325. StartDate: chartState.startTime,
  326. EndDate: chartState.endTime,
  327. EdbInfoType: item.EdbInfoType,
  328. LeadValue: item.EdbInfoType ? 0 : item.LeadValue,
  329. LeadUnit: item.EdbInfoType ? '' : item.LeadUnit,
  330. }
  331. return apiETAChart.EDBInfo(params)
  332. }
  333. // 指标配置项修改更新图
  334. async function handleUpdateRender(val,isEdit){
  335. const index=edbList.value.findIndex(_=>_.EdbInfoId==val.EdbInfoId)
  336. // 如果修改过 领先指标\标准指标则重新获取指标数据
  337. if(isEdit){
  338. edbList.value[index]=val
  339. const asyncTasks=edbList.value.map(_item=> getItemEDBInfo(_item))
  340. const results=await Promise.all(asyncTasks)
  341. console.log(results);
  342. results.forEach((item,index)=>{
  343. if(item.Ret==200){
  344. edbList.value[index].DataList=item.Data.EdbInfo.DataList
  345. if(item.Data.EdbInfo.EdbInfoCategoryType===1){
  346. edbList.value[index].LatestDate=item.Data.EdbInfo.LatestDate
  347. }
  348. }
  349. })
  350. }else{
  351. edbList.value[index]=val
  352. }
  353. CHARTINS=chartRender({
  354. data:{
  355. ...chartInfoData,
  356. EdbInfoList:edbList.value
  357. },
  358. renderId:'chart-box',
  359. lang:'zh',
  360. changeLangIsCheck:false,
  361. showChartTitle:false
  362. })
  363. showEDB.value=false
  364. showEDBData.value={}
  365. }
  366. // 更多操作弹窗
  367. let showMoreAction=ref(false)
  368. // 复制到
  369. let myChartClassifyList=[]//我的图库中的所有分类
  370. async function getMyChartClassifyList(){
  371. const res=await apiMyETAChart.myClassifyList()
  372. if(res.Ret===200){
  373. myChartClassifyList=res.Data.List||[]
  374. }
  375. }
  376. getMyChartClassifyList()
  377. let showCopyTo=ref(false)
  378. let copyToOpt=ref([])
  379. async function handleShowCopyTo(){
  380. const res=await apiMyETAChart.chartInMyClassifyList({ChartInfoId:chartInfo.value.ChartInfoId})
  381. if(res.Ret===200){
  382. const arr=res.Data||[]
  383. copyToOpt.value=myChartClassifyList.map(e=>{
  384. return {
  385. ...e,
  386. select:false
  387. }
  388. }).filter((x) => !arr.includes(x.MyChartClassifyId))
  389. showCopyTo.value=true
  390. }
  391. }
  392. async function handleConfirmCopy(){
  393. const arr=[]
  394. copyToOpt.value.map(item=>{
  395. if(item.select){
  396. arr.push(item.MyChartClassifyId)
  397. }
  398. })
  399. if(arr.length===0){
  400. showToast('请选择分类')
  401. return
  402. }
  403. const res=await apiMyETAChart.chartAddToClassify({
  404. ChartInfoId:chartInfo.value.ChartInfoId,
  405. MyChartClassifyId:arr
  406. })
  407. if(res.Ret===200){
  408. showToast('复制成功')
  409. showCopyTo.value=false
  410. }
  411. }
  412. // 移除图表
  413. function handleRemoveChart(){
  414. if(!route.query.cid){
  415. showToast('当前图表所属多个分类,请选中具体分类移出')
  416. return
  417. }
  418. showDialog({
  419. title: '提示',
  420. message: '是否确认移出?',
  421. showCancelButton:true
  422. }).then(() => {
  423. // on close
  424. apiMyETAChart.myChartRemove({
  425. MyChartClassifyId:Number(route.query.cid),
  426. MyChartId:chartInfo.value.MyChartId
  427. }).then(res=>{
  428. if(res.Ret===200){
  429. showToast('移出成功')
  430. cachedViewsStore.removeCaches('MyETAIndex')
  431. cachedViewsStore.removeCaches('MyETASearchList')
  432. setTimeout(() => {
  433. router.back()
  434. }, 1500)
  435. }
  436. })
  437. }).catch(()=>{})
  438. }
  439. //删除图表
  440. function handleDeleteChart(){
  441. showDialog({
  442. title: '提示',
  443. message: '删除后该图表将不能再引用,确认删除吗?',
  444. showCancelButton:true
  445. }).then(() => {
  446. // on close
  447. apiMyETAChart.chartDel({
  448. ChartInfoId:chartInfo.value.ChartInfoId
  449. }).then(res=>{
  450. if(res.Ret===200){
  451. showToast('删除成功')
  452. cachedViewsStore.removeCaches('MyETAIndex')
  453. cachedViewsStore.removeCaches('MyETASearchList')
  454. setTimeout(() => {
  455. router.back()
  456. }, 1500)
  457. }
  458. })
  459. }).catch(()=>{})
  460. }
  461. // 另存为
  462. let showSaveChartOther=ref(false)
  463. // 刷新
  464. async function handleChartRefresh(){
  465. const { Source,ChartInfoId,UniqueCode } = chartInfo.value
  466. let res=null
  467. if(Source===1){
  468. res= await apiETAChart.chartRefresh({ ChartInfoId })
  469. }else if([2,5].includes(Source)){
  470. res=await apiFutureChart.refreshChart({ ChartInfoId })
  471. }else if([3,4].includes(Source)){
  472. res=await apiCorrelationChart.refreshChart({ ChartInfoId })
  473. }else if(Source===6){
  474. res=await apiLineEquationChart.refreshChart({ ChartInfoId })
  475. }else if([7,8,9].includes(Source)) {
  476. res=await apiStatisticFeatureChart.refreshChart({ ChartInfoId })
  477. }else if(Source===10) {
  478. res=await apiCrossVarietyChart.refreshChart({ ChartInfoId })
  479. }
  480. if(res.Ret!==200)return
  481. showToast('刷新成功')
  482. showMoreAction.value=false
  483. Source===1?reloadChartInfo():getChartInfo()
  484. }
  485. //分享
  486. function handleChartShare(){
  487. const url=import.meta.env.VITE_CHART_LINK+`?code=${chartInfo.value.UniqueCode}&fromType=share&lang=ch`
  488. setClipboardData(url)
  489. }
  490. //保存图表:目前myETA里能保存的只有ETA图库的图和商品价格曲线图
  491. function handleChartSave(){
  492. const sourceMap = {
  493. 1: saveChartHandle,
  494. 2: saveCommodityChart,//商品价格曲线
  495. 5: saveCommodityChart,//利润曲线
  496. }
  497. sourceMap[chartInfo.value.Source]&&sourceMap[chartInfo.value.Source]();
  498. }
  499. function saveChartHandle(){
  500. //获取每条线的指标配置
  501. let arr = edbList.value.map((item)=>{
  502. return {
  503. ChartColor: item.ChartColor,
  504. PredictChartColor: item.PredictChartColor,
  505. ChartStyle: item.ChartStyle,
  506. ChartWidth: Number(item.ChartWidth),
  507. EdbInfoId: item.EdbInfoId,
  508. EdbInfoType: item.EdbInfoType,
  509. IsAxis: item.IsAxis,
  510. IsOrder: item.IsOrder,
  511. LeadUnit: item.EdbInfoType ? '' : item.LeadUnit,
  512. LeadValue: item.EdbInfoType ? 0 : Number(item.LeadValue),
  513. MaxData: Number(item.MaxData),
  514. MinData: Number(item.MinData),
  515. }
  516. })
  517. //所有图表的公共参数
  518. let public_param = {
  519. ChartClassifyId: chartInfo.value.ChartClassifyId,
  520. ChartInfoId: chartInfo.value.ChartInfoId,
  521. ChartEdbInfoList: arr,
  522. }
  523. //根据ChartType决定剩余参数
  524. let type_param = {}
  525. switch(chartInfo.value.ChartType){
  526. case 2:
  527. type_param = {
  528. DateType: chartState.yearVal,
  529. StartYear:chartState.startYear || 0,
  530. Calendar: chartState.calendarType,
  531. StartDate: chartState.startTime||'',
  532. EndDate: chartState.endTime||'',
  533. }
  534. break
  535. case 7:
  536. type_param = {
  537. DateType: 6,
  538. LeftMin: String(axisLimitState.leftMin),
  539. LeftMax: String(axisLimitState.leftMax),
  540. }
  541. break
  542. case 10:
  543. type_param = {
  544. DateType: 6,
  545. Calendar: "公历",
  546. ExtraConfig: JSON.stringify({
  547. ...JSON.parse(chartInfo.value.ExtraConfig),
  548. XMinValue: String(axisLimitState.xMin),
  549. XMaxValue: String(axisLimitState.xMax),
  550. YMinValue: String(axisLimitState.leftMin),
  551. YMaxValue: String(axisLimitState.leftMax),
  552. })
  553. }
  554. break
  555. }
  556. if(sameOptionType.includes(chartInfo.value.ChartType)){
  557. type_param = {
  558. DateType: chartState.yearVal,
  559. StartYear:chartState.startYear || 0,
  560. StartDate:chartState.yearVal === 5 || chartState.yearVal === 6
  561. ? chartState.startTime
  562. : '',
  563. EndDate: chartState.yearVal === 5 ? chartState.endTime : '',
  564. }
  565. }
  566. let params = {...public_param,...type_param}
  567. //保存
  568. apiChart.chartSave(params).then(async res=>{
  569. if(res.Ret!==200) return
  570. showToast("保存成功")
  571. setChartImage()
  572. })
  573. }
  574. function saveCommodityChart(){
  575. apiMyETAChart.myETASaveChart({
  576. ChartInfoId:chartInfo.value.ChartInfoId,
  577. LeftMin:String(axisLimitState.leftMin),
  578. LeftMax:String(axisLimitState.leftMax),
  579. }).then(res=>{
  580. if(res.Ret!==200) return
  581. showToast("保存成功")
  582. setChartImage()
  583. })
  584. }
  585. //更新缩略图
  586. async function setChartImage(){
  587. //打开保存图片弹窗
  588. const svgData = CHARTINS.getSVG({
  589. chart: {
  590. width: 340,
  591. height: 230,
  592. }
  593. })
  594. let form = new FormData();
  595. form.append('Img', svgData);
  596. let {Data,Ret} = await apiETAChart.uploadChartImg(form)
  597. if(Ret!==200||!Data) return
  598. await apiETAChart.setChartImg({
  599. ChartInfoId:Number(chartInfo.value.ChartInfoId),
  600. ImageUrl:Data.ResourceUrl
  601. })
  602. }
  603. //保存图片
  604. let savePicDialogShow = ref(false)
  605. let savePicSrc = ref('')
  606. function handleChartSavePicture(){
  607. const {chartWidth,chartHeight} = CHARTINS
  608. const svgData = CHARTINS.getSVG({
  609. chart: {
  610. width: chartWidth,
  611. height: chartHeight,
  612. }
  613. })
  614. console.log(chartWidth,chartHeight);
  615. const canvas = document.createElement('canvas')
  616. const ctx = canvas.getContext('2d')
  617. canvas.width = chartWidth*2
  618. canvas.height = chartHeight*2
  619. const image = new Image()
  620. image.src = 'data:image/svg+xml;charset=utf-8,'+encodeURIComponent(svgData)
  621. image.onload = ()=>{
  622. ctx.drawImage(image, 0, 0,chartWidth*2,chartHeight*2);
  623. savePicSrc.value = canvas.toDataURL('image/png');
  624. savePicDialogShow.value = true
  625. }
  626. }
  627. // 显示修改英文名称弹窗
  628. let showEidtEnName=ref(false)
  629. function handleShowEditEnName(){
  630. showEidtEnName.value=true
  631. }
  632. function handleEditEnNameSuccess(){
  633. chartInfo.value.Source===1?reloadChartInfo():getChartInfo()
  634. }
  635. // 加入我的图库
  636. const isShowAddToMyETADialog=ref(false)
  637. </script>
  638. <template>
  639. <div class="chart-detail-page" v-if="chartInfo">
  640. <div class="chart-title">{{chartInfo.ChartName}}</div>
  641. <!-- 一般曲线图选择时间区间或者季节图选择日期 -->
  642. <div
  643. class="select-time-box"
  644. v-if="(sameOptionType.includes(chartInfo.ChartType)&& chartInfo.Source===1)||chartInfo.ChartType===2"
  645. @click="openDateSelect"
  646. >
  647. <img class="left-icon" src="@/assets/imgs/icon_calendar.png" alt="">
  648. <span :class="['val-box',!chartState.startTime?'val-box_grey':'']">{{chartState.startTime||'开始日期'}} ~ {{chartState.startTime&&!chartState.endTime?'至今':chartState.endTime||'结束日期'}}</span>
  649. <van-icon class="right-icon" name="arrow" />
  650. </div>
  651. <!-- pad端时间和操作按钮模块 -->
  652. <div class="pad-time-action-wrap">
  653. <div class="left-time-box" >
  654. <template v-if="sameOptionType.includes(chartInfo.ChartType)&& chartInfo.Source===1">
  655. <span :class="['item',chartState.yearVal==''?'active':'']" @click="handleYearChange({value:''})">全部</span>
  656. <span
  657. :class="['item',chartState.yearVal==item.value?'active':'']"
  658. v-for="item in yearSelectOpt"
  659. :key="item.value"
  660. @click="handleYearChange(item)"
  661. >{{item.name}}</span>
  662. </template>
  663. <span
  664. class="time-box"
  665. v-if="(sameOptionType.includes(chartInfo.ChartType)&& chartInfo.Source===1)||chartInfo.ChartType===2"
  666. @click="openDateSelect"
  667. >{{chartState.startTime?chartState.startTime+'~'+(chartState.endTime?chartState.endTime:'至今'):'请选择时间段'}}</span>
  668. </div>
  669. <div class="right-action-box">
  670. <div class="item" @click="handleShowAxisLimitOpt" v-if="[1,2,5].includes(chartInfo.Source)&&checkAuthBtn(myETABtn.myChart_editLimit)">
  671. <img src="@/assets/imgs/myETA/icon_limit2.png" alt="">
  672. <span>上下限设置</span>
  673. </div>
  674. <div class="item" @click="showMoreAction=true" v-if="isMoreActionShow||$route.query.from==='edbRelationChart'">
  675. <img src="@/assets/imgs/chartETA/more-icon.png" alt="">
  676. <span>更多设置</span>
  677. </div>
  678. </div>
  679. </div>
  680. <!-- 图渲染区域 -->
  681. <div class="chart-render-wrap">
  682. <!-- pad 切换上一张\下一张 -->
  683. <img class="pad-change-chart-btn" src="@/assets/imgs/icon_arrow2.png" alt="" @click="handleSwitchChart('prev')" v-if="allChartList.length>0">
  684. <img class="pad-change-chart-btn pad-change-chart-next-btn" src="@/assets/imgs/icon_arrow2.png" alt="" @click="handleSwitchChart('next')" v-if="allChartList.length>0">
  685. <div class="chart-box" id="chart-box"></div>
  686. </div>
  687. <!-- 一般曲线图选择时间区间 -->
  688. <div class="select-year-box" v-if="sameOptionType.includes(chartInfo.ChartType)&& chartInfo.Source===1">
  689. <span :class="['item',chartState.yearVal==''?'active':'']" @click="handleYearChange({value:''})">全部</span>
  690. <span
  691. :class="['item',chartState.yearVal==item.value?'active':'']"
  692. v-for="item in yearSelectOpt"
  693. :key="item.value"
  694. @click="handleYearChange(item)"
  695. >{{item.name}}</span>
  696. </div>
  697. <!-- 季节图切换公/农历 -->
  698. <div class="calendar-type-box" v-if="chartInfo.ChartType === 2">
  699. <span
  700. :class="chartState.calendarType=='公历'?'active':''"
  701. @click="handleSeasonTypeChange('公历')"
  702. >公历</span>
  703. <span
  704. :class="chartState.calendarType=='农历'?'active':''"
  705. @click="handleSeasonTypeChange('农历')"
  706. >农历</span>
  707. </div>
  708. <!-- 指标模块 -->
  709. <div class="edb-list-box">
  710. <div class="list-box">
  711. <div class="list-item" v-for="item in edbList" :key="item.EdbInfoId" @click="handleShowEDBInfo(item)">
  712. <span class="date">{{item.LatestDate}}</span>
  713. <span class="edb-name van-ellipsis" :style="{color:item.ChartColor}">{{item.EdbName}}</span>
  714. <span class="value">{{item.LatestValue}}</span>
  715. </div>
  716. </div>
  717. </div>
  718. <!-- 底部悬浮操作模块 -->
  719. <div class="fix-bot-action-box">
  720. <div class="item" @click="handleSwitchChart('prev')" v-if="allChartList.length>0">
  721. <img class="icon" src="@/assets/imgs/icon_arrow.png" alt="">
  722. <div>上一张</div>
  723. </div>
  724. <div class="item" @click="handleSwitchChart('next')" v-if="allChartList.length>0">
  725. <img class="icon" style="transform: rotate(180deg);" src="@/assets/imgs/icon_arrow.png" alt="">
  726. <div>下一张</div>
  727. </div>
  728. <div class="item" @click="handleShowAxisLimitOpt" v-if="[1,2,5].includes(chartInfo.Source)&&checkAuthBtn(myETABtn.myChart_editLimit)">
  729. <img class="icon" src="@/assets/imgs/myETA/icon_limit.png" alt="">
  730. <div>上下限</div>
  731. </div>
  732. <div class="item" @click="showMoreAction=true" v-if="isMoreActionShow||$route.query.from==='edbRelationChart'">
  733. <img class="icon" src="@/assets/imgs/myETA/icon_menu.png" alt="">
  734. <div>更多</div>
  735. </div>
  736. </div>
  737. </div>
  738. <!-- 选择日期弹窗 -->
  739. <van-popup
  740. v-model:show="chartState.showTimePop"
  741. :position="width>650?'center':'bottom'"
  742. :style="width>650?{ width: '400px'}:''"
  743. >
  744. <div class="time-picker-wrap">
  745. <van-picker-group
  746. title="选择起始时间"
  747. :tabs="['开始时间', '结束时间']"
  748. @cancel="chartState.showTimePop=false"
  749. @confirm="handleTimeChange"
  750. >
  751. <van-date-picker
  752. v-model="temStartTime"
  753. :min-date="minDate"
  754. :max-date="maxDate"
  755. :columns-type="['year','month','day']"
  756. />
  757. <van-date-picker
  758. v-model="temEndTime"
  759. :min-date="minDate"
  760. :max-date="maxDate"
  761. :columns-type="['year','month','day']"
  762. />
  763. </van-picker-group>
  764. </div>
  765. </van-popup>
  766. <!-- 指标信息弹窗 -->
  767. <van-popup
  768. v-model:show="showEDB"
  769. :position="width>650?'right':'bottom'"
  770. :round="width>650?false:true"
  771. closeable
  772. :style="width>650?{ width: '400px', height: '100%' }:''"
  773. >
  774. <EDBInfo
  775. :show="showEDB"
  776. :data="showEDBData"
  777. :tableData="edbList"
  778. :chartInfo="chartInfo"
  779. @change="handleUpdateRender"
  780. />
  781. </van-popup>
  782. <!-- 上下限调整弹窗 -->
  783. <van-popup
  784. v-model:show="showLimitPop"
  785. :position="width>650?'center':'bottom'"
  786. round
  787. closeable
  788. :style="width>650?{ width: '400px'}:''"
  789. >
  790. <div class="global-pop-wrap_mobile chart-set-limit-wrap">
  791. <div class="head-box">
  792. <div class="title">上下限设置</div>
  793. </div>
  794. <div class="content">
  795. <!-- 左轴 -->
  796. <div class="item-box" v-if="axisLimitState.hasLeftAxis">
  797. <span class="lable-text">左轴</span>
  798. <div class="input-box">
  799. <div class="item">
  800. <div class="type-text">上限</div>
  801. <div class="step-box">
  802. <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.leftMax" />
  803. </div>
  804. </div>
  805. <div class="item">
  806. <div class="type-text">下限</div>
  807. <div class="step-box">
  808. <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.leftMin" />
  809. </div>
  810. </div>
  811. </div>
  812. </div>
  813. <!-- 右轴 -->
  814. <div class="item-box" v-if="axisLimitState.hasRightAxis">
  815. <span class="lable-text">右轴</span>
  816. <div class="input-box">
  817. <div class="item">
  818. <div class="type-text">上限</div>
  819. <div class="step-box">
  820. <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.rightMax" />
  821. </div>
  822. </div>
  823. <div class="item">
  824. <div class="type-text">下限</div>
  825. <div class="step-box">
  826. <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.rightMin" />
  827. </div>
  828. </div>
  829. </div>
  830. </div>
  831. <!-- 右二轴 -->
  832. <div class="item-box" v-if="axisLimitState.hasRightTwoAxis">
  833. <span class="lable-text">右2轴</span>
  834. <div class="input-box">
  835. <div class="item">
  836. <div class="type-text">上限</div>
  837. <div class="step-box">
  838. <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.rightTwoMax" />
  839. </div>
  840. </div>
  841. <div class="item">
  842. <div class="type-text">下限</div>
  843. <div class="step-box">
  844. <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.rightTwoMin" />
  845. </div>
  846. </div>
  847. </div>
  848. </div>
  849. <!-- x轴 -->
  850. <div class="item-box" v-if="axisLimitState.hasXAxis">
  851. <span class="lable-text">X轴</span>
  852. <div class="input-box">
  853. <div class="item">
  854. <div class="type-text">上限</div>
  855. <div class="step-box">
  856. <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.xMax" />
  857. </div>
  858. </div>
  859. <div class="item">
  860. <div class="type-text">下限</div>
  861. <div class="step-box">
  862. <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.xMin" />
  863. </div>
  864. </div>
  865. </div>
  866. </div>
  867. </div>
  868. <div class="bot-btn-box" @click="handleConfirmLimitChange">确定</div>
  869. </div>
  870. </van-popup>
  871. <!-- 更多操作弹窗 -->
  872. <van-popup
  873. v-model:show="showMoreAction"
  874. :position="width>650?'center':'bottom'"
  875. :style="width>650?{ width: '400px'}:''"
  876. round
  877. >
  878. <div class="more-action-wrap">
  879. <div class="van-ellipsis title-box">{{chartInfo.ChartName}}</div>
  880. <div class="item" @click.stop="handleChartRefresh" v-permission="myETABtn.myChart_refresh">
  881. 刷新
  882. </div>
  883. <div class="item" @click.stop="handleChartShare" v-if="!chartInfo.Disabled&&checkAuthBtn(myETABtn.myChart_share)">
  884. 分享
  885. </div>
  886. <div class="item" @click.stop="handleChartSave" v-if="[1,2,5].includes(chartInfo.Source)&&checkAuthBtn(myETABtn.myChart_save)">
  887. 保存
  888. </div>
  889. <div class="item" @click.stop="handleRemoveChart" v-if="$route.query.iscommon!='true'&&checkAuthBtn(myETABtn.myChart_move)">
  890. 移出
  891. </div>
  892. <div class="item" @click.stop="handleShowCopyTo" v-if="$route.query.iscommon!='true'&&checkAuthBtn(myETABtn.myChart_copyTo)">
  893. 复制到
  894. </div>
  895. <div class="item" @click.stop="isShowAddToMyETADialog=true" v-if="$route.query.from==='edbRelationChart'">
  896. 加入我的图库
  897. </div>
  898. <div class="item" @click.stop="showSaveChartOther=true" v-if="chartInfo.Button.IsCopy&&checkAuthBtn(myETABtn.myChart_otherSave)">
  899. 另存为
  900. </div>
  901. <div class="item" @click.stop="handleChartSavePicture" v-if="!chartInfo.Disabled&&checkAuthBtn(myETABtn.myChart_copyWechat)&&checkAuthBtn(myETABtn.myChart_copyOffice)">
  902. 保存图片
  903. </div>
  904. <div class="item" @click.stop="handleShowEditEnName" v-permission="myETABtn.myChart_enNameSetting">
  905. 设置英文名称
  906. </div>
  907. <div class="item" @click.stop="handleDeleteChart" v-if="chartInfo.IsEdit&&checkAuthBtn(myETABtn.myChart_del)">
  908. 删除
  909. </div>
  910. </div>
  911. </van-popup>
  912. <!-- 复制到 -->
  913. <van-popup
  914. v-model:show="showCopyTo"
  915. :position="width>650?'center':'bottom'"
  916. :round="width>650?true:false"
  917. closeable
  918. >
  919. <div class="global-pop-wrap_mobile chart-copyto-wrap">
  920. <div class="head-box">
  921. <div class="title">复制到</div>
  922. </div>
  923. <div class="content">
  924. <ul>
  925. <li
  926. :class="['item',item.select?'active':'']"
  927. v-for="item in copyToOpt"
  928. :key="item.MyChartClassifyId"
  929. @click="item.select=!item.select"
  930. >{{item.MyChartClassifyName}}</li>
  931. </ul>
  932. <div v-if="copyToOpt.length===0" style="padding:50px 0;text-align:center">暂无分类,快去创建我的分类吧~</div>
  933. </div>
  934. <div class="bot-btn-box" @click="handleConfirmCopy" v-if="copyToOpt.length>0">确定</div>
  935. </div>
  936. </van-popup>
  937. <!-- 另存为 -->
  938. <ChartSaveOther
  939. :source="chartInfo?.Source"
  940. :chartInfo="chartInfo"
  941. :show="showSaveChartOther"
  942. @close="showSaveChartOther=false"
  943. />
  944. <!--保存图片弹窗 -->
  945. <van-popup
  946. v-model:show="savePicDialogShow"
  947. position="center"
  948. round
  949. >
  950. <div class="chart-picture-box">
  951. <img :src="savePicSrc" alt="">
  952. <p style="text-align: center;color:#999;margin-top: 10px;">长按保存图片</p>
  953. </div>
  954. </van-popup>
  955. <!-- 修改英文名称 -->
  956. <van-popup
  957. v-model:show="showEidtEnName"
  958. position="bottom"
  959. :style="{height:'100%'}"
  960. >
  961. <set-chart-en-name
  962. :isShow="showEidtEnName"
  963. :chartInfo="chartInfoData"
  964. @cancel="showEidtEnName=false"
  965. @success="handleEditEnNameSuccess"
  966. />
  967. </van-popup>
  968. <!-- 加入我的图库 -->
  969. <AddChartToMyETA
  970. :isShowDialog="isShowAddToMyETADialog"
  971. :dialogPosition="width>650?'center':'bottom'"
  972. :chartInfo="chartInfo"
  973. @close="isShowAddToMyETADialog=false"
  974. />
  975. </template>
  976. <style lang="scss" scoped>
  977. .chart-detail-page{
  978. padding: $page-padding;
  979. padding-bottom: 120px;
  980. .chart-title{
  981. font-size: 36px;
  982. margin-bottom: 56px;
  983. }
  984. .chart-render-wrap{
  985. .pad-change-chart-btn{
  986. display: none;
  987. }
  988. }
  989. .chart-box{
  990. width: 100%;
  991. height: 700px;
  992. }
  993. .pad-time-action-wrap{
  994. display: none;
  995. }
  996. .select-time-box{
  997. display: flex;
  998. align-items: center;
  999. .left-icon{
  1000. width: 48px;
  1001. height: 48px;
  1002. }
  1003. .right-icon{
  1004. margin-left: auto;
  1005. }
  1006. .val-box{
  1007. margin-left: 32px;
  1008. font-size: 32px;
  1009. &.val-box_grey{
  1010. color: $font-grey_999;
  1011. }
  1012. }
  1013. }
  1014. .select-year-box{
  1015. width: 100vw;
  1016. position: relative;
  1017. left: -$page-padding;
  1018. margin-top: 30px;
  1019. box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  1020. height: 88px;
  1021. display: flex;
  1022. align-items: center;
  1023. overflow-y: auto;
  1024. padding: 0 $page-padding;
  1025. &::-webkit-scrollbar{
  1026. height: 0;
  1027. }
  1028. .item{
  1029. line-height: 88px;
  1030. position: relative;
  1031. height: 100%;
  1032. flex-shrink: 0;
  1033. display: inline-block;
  1034. margin-right: 40px;
  1035. font-size: 32px;
  1036. color: $font-grey_999;
  1037. &.active{
  1038. color: #333;
  1039. &::after{
  1040. content: '';
  1041. display: block;
  1042. width: 50px;
  1043. height: 6px;
  1044. border-radius: 3px;
  1045. background-color: $theme-color;
  1046. position: absolute;
  1047. bottom: 0;
  1048. left: 50%;
  1049. transform: translateX(-50%);
  1050. }
  1051. }
  1052. }
  1053. }
  1054. .calendar-type-box{
  1055. width: 404px;
  1056. margin: 30px auto;
  1057. text-align: center;
  1058. border: 1px solid $theme-color;
  1059. border-radius: 12px;
  1060. overflow: hidden;
  1061. span{
  1062. display: inline-block;
  1063. width: 200px;
  1064. height: 80px;
  1065. line-height: 80px;
  1066. color: $theme-color;
  1067. font-weight: bold;
  1068. &.active{
  1069. background-color: $theme-color;
  1070. color: #fff;
  1071. }
  1072. }
  1073. }
  1074. .edb-list-box{
  1075. margin-top: 20px;
  1076. .list-item{
  1077. padding:18px;
  1078. display: flex;
  1079. gap:0 20px;
  1080. border-bottom: 1px solid #DCDFE6;
  1081. &:last-child{
  1082. border-bottom: none;
  1083. }
  1084. .edb-name{
  1085. flex: 1;
  1086. }
  1087. }
  1088. }
  1089. .fix-bot-action-box{
  1090. position: fixed;
  1091. left: 0;
  1092. bottom: 0;
  1093. right: 0;
  1094. z-index: 99;
  1095. background-color: #fff;
  1096. border-top: 1px solid $border-color;
  1097. height: 112px;
  1098. display: flex;
  1099. align-items: center;
  1100. .item{
  1101. height: 100%;
  1102. flex: 1;
  1103. display: flex;
  1104. flex-direction: column;
  1105. justify-content: center;
  1106. align-items: center;
  1107. font-size: 20px;
  1108. .icon{
  1109. width: 40px;
  1110. height: 40px;
  1111. margin-bottom: 5px;
  1112. }
  1113. }
  1114. }
  1115. }
  1116. .chart-set-limit-wrap{
  1117. .head-box{
  1118. .title{
  1119. padding: 0 $page-padding;
  1120. font-size: 36px;
  1121. font-weight: 600;
  1122. line-height: 120px;
  1123. }
  1124. }
  1125. .bot-btn-box{
  1126. line-height: 112px;
  1127. text-align: center;
  1128. color: $theme-color;
  1129. font-size: 32px;
  1130. }
  1131. .content{
  1132. padding: $page-padding;
  1133. .item-box{
  1134. display: flex;
  1135. align-items: flex-end;
  1136. margin-bottom: 30px;
  1137. .lable-text{
  1138. width: 100px;
  1139. }
  1140. .input-box{
  1141. flex: 1;
  1142. display: flex;
  1143. .item{
  1144. flex: 1;
  1145. text-align: center;
  1146. .type-text{
  1147. margin-bottom: 40px;
  1148. }
  1149. .step-box{
  1150. display: inline-block;
  1151. :deep(.van-stepper){
  1152. display: flex;
  1153. justify-content: center;
  1154. }
  1155. }
  1156. }
  1157. }
  1158. }
  1159. }
  1160. }
  1161. .more-action-wrap{
  1162. .title-box{
  1163. font-size: 36px;
  1164. font-weight: 600;
  1165. text-align: center;
  1166. padding: $page-padding;
  1167. }
  1168. .item{
  1169. display: flex;
  1170. align-items: center;
  1171. justify-content: center;
  1172. padding: 32px 34px;
  1173. border-top: 1px solid $border-color;
  1174. font-size: 32px;
  1175. }
  1176. }
  1177. .chart-copyto-wrap{
  1178. .head-box{
  1179. .title{
  1180. padding: 0 $page-padding;
  1181. font-size: 36px;
  1182. font-weight: 600;
  1183. line-height: 120px;
  1184. }
  1185. }
  1186. .bot-btn-box{
  1187. line-height: 112px;
  1188. text-align: center;
  1189. color: $theme-color;
  1190. font-size: 32px;
  1191. }
  1192. .content{
  1193. .item{
  1194. padding: 32px $page-padding;
  1195. font-size: 32px;
  1196. border-bottom: 1px solid $border-color;
  1197. position: relative;
  1198. &.active{
  1199. color: $theme-color;
  1200. &::after{
  1201. content: '';
  1202. display: block;
  1203. width: 36px;
  1204. height: 36px;
  1205. background-image: url('@/assets/imgs/icon_select2.png');
  1206. background-size: cover;
  1207. background-repeat: no-repeat;
  1208. position: absolute;
  1209. top: 50%;
  1210. right: $page-padding;
  1211. transform: translateY(-50%);
  1212. }
  1213. }
  1214. }
  1215. }
  1216. }
  1217. .chart-picture-box{
  1218. width: 300PX;
  1219. border-radius: 6PX;
  1220. padding: 10PX;
  1221. background-color: #fff;
  1222. img{
  1223. width: 100%;
  1224. display: block;
  1225. }
  1226. }
  1227. @media screen and (min-width:$media-width){
  1228. .chart-detail-page{
  1229. padding: 30px;
  1230. .chart-title{
  1231. font-size: 16px;
  1232. margin-bottom: 30px;
  1233. }
  1234. .chart-render-wrap{
  1235. position: relative;
  1236. .pad-change-chart-btn{
  1237. display: block;
  1238. width: 48px;
  1239. height: 48px;
  1240. position: absolute;
  1241. top: 50%;
  1242. transform: translateY(-50%);
  1243. left: 0px;
  1244. &.pad-change-chart-next-btn{
  1245. right: 0;
  1246. left: auto;
  1247. transform: translateY(-50%) rotate(180deg);
  1248. }
  1249. }
  1250. }
  1251. .chart-box{
  1252. width: 85%;
  1253. height: 370px;
  1254. margin: 0 auto;
  1255. }
  1256. .select-time-box{
  1257. display: none;
  1258. }
  1259. .select-year-box{
  1260. display: none;
  1261. }
  1262. .calendar-type-box{
  1263. width: 224px;
  1264. margin: 20px auto;
  1265. border-radius: 4px;
  1266. span{
  1267. width: 111px;
  1268. height: 38px;
  1269. line-height: 38px;
  1270. }
  1271. }
  1272. .edb-list-box{
  1273. margin-top: 30px;
  1274. .list-item{
  1275. padding: 10px 0;
  1276. }
  1277. }
  1278. .fix-bot-action-box{
  1279. display: none;
  1280. }
  1281. .pad-time-action-wrap{
  1282. display: flex;
  1283. flex-wrap: wrap;
  1284. align-items: center;
  1285. justify-content: space-between;
  1286. .left-time-box{
  1287. flex-shrink: 0;
  1288. margin-bottom: 20px;
  1289. .item{
  1290. display: inline-block;
  1291. width: 80px;
  1292. height: 36px;
  1293. text-align: center;
  1294. line-height: 36px;
  1295. border: 1px solid $theme-color;
  1296. margin-right: 10px;
  1297. border-radius: 3px;
  1298. color: $theme-color;
  1299. &.active{
  1300. color: #fff;
  1301. background-color: $theme-color;
  1302. }
  1303. }
  1304. .time-box{
  1305. display: inline-block;
  1306. padding: 0 15px;
  1307. height: 36px;
  1308. line-height: 36px;
  1309. border: 1px solid $theme-color;
  1310. border-radius: 3px;
  1311. background-color: #F2F3FF;
  1312. color: $theme-color;
  1313. }
  1314. }
  1315. .right-action-box{
  1316. display: flex;
  1317. margin-bottom: 20px;
  1318. .item{
  1319. display: flex;
  1320. color: $theme-color;
  1321. margin-left: 20px;
  1322. img{
  1323. width: 18px;
  1324. height: 18px;
  1325. margin-right: 4px;
  1326. }
  1327. }
  1328. .red{
  1329. color: $theme-red;
  1330. }
  1331. }
  1332. }
  1333. }
  1334. .chart-set-limit-wrap{
  1335. .head-box{
  1336. .title{
  1337. font-size: 18px;
  1338. line-height: 50px;
  1339. padding-left: 16px;
  1340. }
  1341. }
  1342. .bot-btn-box{
  1343. font-size: 16px;
  1344. line-height: 56px;
  1345. border-top-width: 8px;
  1346. }
  1347. .content{
  1348. max-height: 500px;
  1349. padding: 30px;
  1350. .item-box{
  1351. margin-bottom: 15px;
  1352. .lable-text{
  1353. width: 50px;
  1354. }
  1355. .input-box{
  1356. .item{
  1357. .type-text{
  1358. margin-bottom: 20px;
  1359. }
  1360. }
  1361. }
  1362. }
  1363. }
  1364. }
  1365. .more-action-wrap{
  1366. .title-box{
  1367. font-size: 18px;
  1368. padding: 20px $page-padding;
  1369. }
  1370. .item{
  1371. padding: 20px $page-padding;
  1372. font-size: 16px;
  1373. }
  1374. }
  1375. .chart-copyto-wrap{
  1376. width: 375px;
  1377. .head-box{
  1378. .title{
  1379. font-size: 18px;
  1380. line-height: 50px;
  1381. padding-left: 16px;
  1382. }
  1383. }
  1384. .bot-btn-box{
  1385. font-size: 16px;
  1386. line-height: 56px;
  1387. border-top-width: 8px;
  1388. }
  1389. .content{
  1390. max-height: 500px;
  1391. overflow-y: auto;
  1392. .item{
  1393. padding: 16px;
  1394. font-size: 16px;
  1395. &.active{
  1396. &::after{
  1397. width: 18px;
  1398. height: 18px;
  1399. right: 16px;
  1400. }
  1401. }
  1402. }
  1403. }
  1404. }
  1405. .chart-picture-box{
  1406. width: 500PX;
  1407. }
  1408. }
  1409. </style>