|
@@ -0,0 +1,1207 @@
|
|
|
+<script setup name="ChartETAChartDetail">
|
|
|
+import {nextTick, onMounted,ref,reactive} from 'vue'
|
|
|
+import {showDialog, showToast} from 'vant'
|
|
|
+import apiChart from '@/api/chart'
|
|
|
+import { useRoute, useRouter } from 'vue-router'
|
|
|
+import { useWindowSize } from '@vueuse/core'
|
|
|
+import {yearSelectOpt,sameOptionType} from '@/hooks/chart/config'
|
|
|
+import {useChartRender} from '@/hooks/chart/render'
|
|
|
+import moment from 'moment'
|
|
|
+import EdbInfo from './components/EdbInfo.vue'
|
|
|
+import SourceDetail from './components/SourceDetail.vue'
|
|
|
+import TreeSelectPop from './components/TreeSelectPop.vue'
|
|
|
+import AddChartToMyETA from './components/AddChartToMyETA.vue'
|
|
|
+import SetChartEnName from './components/SetChartEnName.vue'
|
|
|
+import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
|
+import _ from 'lodash';
|
|
|
+
|
|
|
+
|
|
|
+const {options,axisLimitState,chartRender}=useChartRender()
|
|
|
+const { width } = useWindowSize()
|
|
|
+const cachedViewsStore=useCachedViewsStore()
|
|
|
+const route=useRoute()
|
|
|
+const router=useRouter()
|
|
|
+
|
|
|
+let routeQueryData=reactive({
|
|
|
+ chartType:route.query.chartType,
|
|
|
+ id:route.query.id,
|
|
|
+ chartClassifyId:route.query.chartClassifyId,
|
|
|
+})
|
|
|
+
|
|
|
+let currentLang = ref('')
|
|
|
+
|
|
|
+//获取图详情
|
|
|
+let chartInfoData=null
|
|
|
+let chartInfo=ref(null)
|
|
|
+//highchart图表
|
|
|
+let highChart = ref(null)
|
|
|
+let edbList=ref([])//指标数据
|
|
|
+async function getChartDetail(e){
|
|
|
+ const params=sameOptionType.includes(Number(routeQueryData.chartType))?{
|
|
|
+ ChartInfoId:Number(routeQueryData.id),
|
|
|
+ DateType: chartState.yearVal,
|
|
|
+ StartDate: chartState.startTime,
|
|
|
+ EndDate: chartState.endTime,
|
|
|
+ }:{
|
|
|
+ ChartInfoId:Number(routeQueryData.id),
|
|
|
+ Calendar: chartState.calendarType,//this.calendar_type
|
|
|
+ SeasonStartDate: chartState.startTime,
|
|
|
+ SeasonEndDate:chartState.endTime ,
|
|
|
+ }
|
|
|
+ const res=await apiChart.chartInfoById(params)
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ chartInfoData=res.Data
|
|
|
+ chartInfo.value=res.Data.ChartInfo
|
|
|
+ chartActions.value = getChartActions(res.Data.ChartInfo)
|
|
|
+ if(res.Data.ChartInfo.Source===2){
|
|
|
+ edbList.value=[res.Data.EdbInfoList[0]]
|
|
|
+ }else{
|
|
|
+ edbList.value=res.Data.EdbInfoList
|
|
|
+ }
|
|
|
+ if(e==='init'){
|
|
|
+ chartState.yearVal=res.Data.ChartInfo.DateType
|
|
|
+ }
|
|
|
+
|
|
|
+ nextTick(()=>{
|
|
|
+ highChart.value = chartRender({
|
|
|
+ data:{
|
|
|
+ ...res.Data,
|
|
|
+ ChartInfo:{
|
|
|
+ ...res.Data.ChartInfo,
|
|
|
+ Calendar:chartState.calendarType||'公历'
|
|
|
+ },
|
|
|
+ },
|
|
|
+ renderId:'chart-box',
|
|
|
+ lang:currentLang.value,
|
|
|
+ changeLangIsCheck:false,
|
|
|
+ showChartTitle:false
|
|
|
+ })
|
|
|
+ })
|
|
|
+
|
|
|
+}
|
|
|
+onMounted(() => {
|
|
|
+ currentLang.value = localStorage.getItem('chartETALange')==='EN'?'en':'zh'
|
|
|
+ initChartState(route.query)
|
|
|
+ getChartDetail('init')
|
|
|
+})
|
|
|
+
|
|
|
+const minDate=new Date(1970, 0, 1)
|
|
|
+const maxDate=new Date(2050, 11, 31)
|
|
|
+const cYear=moment().format('YYYY')
|
|
|
+const cMonth=moment().format('MM')
|
|
|
+let temStartTime=ref([cYear,cMonth])
|
|
|
+let temEndTime=ref([cYear,cMonth])
|
|
|
+let chartState=reactive({
|
|
|
+ showTimePop:false,
|
|
|
+ startTime:'',
|
|
|
+ endTime:'',
|
|
|
+ yearVal:'',
|
|
|
+ calendarType:'公历'
|
|
|
+})
|
|
|
+// 切换年份选项
|
|
|
+function handleYearChange(item){
|
|
|
+ chartState.yearVal=item.value
|
|
|
+ chartState.startTime=''
|
|
|
+ chartState.endTime=''
|
|
|
+ getChartDetail()
|
|
|
+}
|
|
|
+// 确定日期筛选
|
|
|
+function handleTimeChange(){
|
|
|
+ chartState.startTime=temStartTime.value.join('-')
|
|
|
+ chartState.endTime=temEndTime.value.join('-')
|
|
|
+ chartState.yearVal=6
|
|
|
+ getChartDetail()
|
|
|
+ chartState.showTimePop=false
|
|
|
+}
|
|
|
+
|
|
|
+// 季节图公历\农历切换
|
|
|
+function handleSeasonTypeChange(type){
|
|
|
+ chartState.calendarType=type
|
|
|
+ getChartDetail()
|
|
|
+}
|
|
|
+
|
|
|
+// 上下限调整
|
|
|
+let showLimitPop=ref(false)
|
|
|
+let axisLimitDataTem=reactive({//左右轴极值
|
|
|
+ min:'-99999999999999999',
|
|
|
+ leftMin:0,
|
|
|
+ leftMax:0,
|
|
|
+ rightMin:0,
|
|
|
+ rightMax:0,
|
|
|
+ rightTwoMin:0,
|
|
|
+ rightTwoMax:0,
|
|
|
+ xMin:0,
|
|
|
+ xMax:0,
|
|
|
+})
|
|
|
+function handleShowAxisLimitOpt(){
|
|
|
+ axisLimitDataTem.leftMin=axisLimitState.leftMin
|
|
|
+ axisLimitDataTem.leftMax=axisLimitState.leftMax
|
|
|
+
|
|
|
+ axisLimitDataTem.rightMin=axisLimitState.rightMin
|
|
|
+ axisLimitDataTem.rightMax=axisLimitState.rightMax
|
|
|
+
|
|
|
+ axisLimitDataTem.rightTwoMin=axisLimitState.rightTwoMin
|
|
|
+ axisLimitDataTem.rightTwoMax=axisLimitState.rightTwoMax
|
|
|
+
|
|
|
+ axisLimitDataTem.xMin=axisLimitState.xMin
|
|
|
+ axisLimitDataTem.xMax=axisLimitState.xMax
|
|
|
+
|
|
|
+ showLimitPop.value=true
|
|
|
+}
|
|
|
+// 极限修改确定
|
|
|
+function handleConfirmLimitChange(){
|
|
|
+ const data=_.cloneDeep(chartInfoData)
|
|
|
+
|
|
|
+ // 修改左轴极限
|
|
|
+ if(axisLimitState.hasLeftAxis){
|
|
|
+ if(axisLimitState.leftIndex!==-1){
|
|
|
+ data.EdbInfoList[axisLimitState.leftIndex].MinData=axisLimitDataTem.leftMin
|
|
|
+ data.EdbInfoList[axisLimitState.leftIndex].MaxData=axisLimitDataTem.leftMax
|
|
|
+ }else{
|
|
|
+ // 柱形图 取的ChartInfo中的极值
|
|
|
+ if(data.ChartInfo.ChartType ===7){
|
|
|
+ data.ChartInfo.LeftMin=axisLimitDataTem.leftMin
|
|
|
+ data.ChartInfo.LeftMax=axisLimitDataTem.leftMax
|
|
|
+ }
|
|
|
+ // 商品价格曲线
|
|
|
+ if(data.ChartInfo.ChartType ===8){
|
|
|
+ data.ChartInfo.LeftMin=axisLimitDataTem.leftMin
|
|
|
+ data.ChartInfo.LeftMax=axisLimitDataTem.leftMax
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ // 截面散点 取的DataResp
|
|
|
+ if(data.ChartInfo.ChartType ===10){
|
|
|
+ data.DataResp.YMinValue=axisLimitDataTem.leftMin
|
|
|
+ data.DataResp.YMaxValue=axisLimitDataTem.leftMax
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 修改右轴极限
|
|
|
+ if(axisLimitState.hasRightAxis){
|
|
|
+ if(axisLimitState.rightIndex!==-1){
|
|
|
+ data.EdbInfoList[axisLimitState.rightIndex].MinData=axisLimitDataTem.rightMin
|
|
|
+ data.EdbInfoList[axisLimitState.rightIndex].MaxData=axisLimitDataTem.rightMax
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ //修改右2轴极限
|
|
|
+ if(axisLimitState.hasRightTwoAxis){
|
|
|
+ if(axisLimitState.rightTwoIndex!==-1){
|
|
|
+ data.EdbInfoList[axisLimitState.rightTwoIndex].MinData=axisLimitDataTem.rightTwoMin
|
|
|
+ data.EdbInfoList[axisLimitState.rightTwoIndex].MaxData=axisLimitDataTem.rightTwoMax
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 修改X轴极限
|
|
|
+ if(axisLimitState.hasXAxis){
|
|
|
+ // 截面散点 取的DataResp
|
|
|
+ if(data.ChartInfo.ChartType ===10){
|
|
|
+ data.DataResp.XMinValue=axisLimitDataTem.xMin
|
|
|
+ data.DataResp.XMaxValue=axisLimitDataTem.xMax
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ highChart.value = chartRender({
|
|
|
+ data:data,
|
|
|
+ renderId:'chart-box',
|
|
|
+ lang:currentLang.value,
|
|
|
+ changeLangIsCheck:false,
|
|
|
+ showChartTitle:false
|
|
|
+ })
|
|
|
+
|
|
|
+ showLimitPop.value=false
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+// 显示指标详情
|
|
|
+let showEDB=ref(false)
|
|
|
+let showEDBData=ref({})
|
|
|
+function handleShowEDBInfo(item){
|
|
|
+ showEDBData.value=item
|
|
|
+ showEDB.value=true
|
|
|
+}
|
|
|
+//显示数据来源详情
|
|
|
+let showSourceDetail = ref(false)
|
|
|
+function handleShowSourceDetail(){
|
|
|
+ showSourceDetail.value = true
|
|
|
+}
|
|
|
+//显示更多操作栏
|
|
|
+let showMoreAction = ref(false)
|
|
|
+let chartActions = ref([])
|
|
|
+function getChartActions(chartInfo){
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ type:'refresh',
|
|
|
+ label:'刷新',
|
|
|
+ show:true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type:'share',
|
|
|
+ label:'分享',
|
|
|
+ show:!Boolean(chartInfo.Disabled)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type:'saveOther',
|
|
|
+ label:'另存为',
|
|
|
+ show:true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type:'savePic',
|
|
|
+ label:'保存图片',
|
|
|
+ show:true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type:'setEnName',
|
|
|
+ label:'设置英文名称',
|
|
|
+ show:true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type:'addToMyETA',
|
|
|
+ label:'加入我的图库',
|
|
|
+ show:true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type:'delete',
|
|
|
+ label:'删除',
|
|
|
+ show:chartInfo.IsEdit
|
|
|
+ }
|
|
|
+ ]
|
|
|
+}
|
|
|
+
|
|
|
+function handleActionClick(action){
|
|
|
+ const eventMap = {
|
|
|
+ 'refresh':refreshChart,
|
|
|
+ 'share':getShareLink,
|
|
|
+ 'saveOther':openSaveChartOtherDialog,
|
|
|
+ 'savePic':saveChartPic,
|
|
|
+ 'setEnName':openSetChartEnNameDialog,
|
|
|
+ 'addToMyETA':openAddToMyETADialog,
|
|
|
+ 'delete':deleteChart
|
|
|
+ }
|
|
|
+ eventMap[action.type]()
|
|
|
+ //showMoreAction.value = false
|
|
|
+}
|
|
|
+//刷新图表
|
|
|
+function refreshChart(){
|
|
|
+ apiChart.chartRefresh({
|
|
|
+ ChartInfoId:chartInfo.value.ChartInfoId
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ getChartDetail()
|
|
|
+ showToast({message:'刷新成功',type:'success'})
|
|
|
+ })
|
|
|
+}
|
|
|
+let confirmFlag = ref(true)
|
|
|
+//获取分享链接
|
|
|
+async function getShareLink(){
|
|
|
+ const currentLang = localStorage.getItem('chartETALange')==='EN'?'en':'ch'
|
|
|
+ //若当前语言设置为英文,则检测图表
|
|
|
+ if(currentLang==='en') {
|
|
|
+ !checkChartEnOption()&&(
|
|
|
+ await showDialog({
|
|
|
+ title: '提示',
|
|
|
+ message: '英文名称未输入完整,分享图表上可能出现空名称的情况,确定继续分享吗?',
|
|
|
+ showCancelButton:true
|
|
|
+ }).then(() => {
|
|
|
+ confirmFlag.value = true
|
|
|
+ }).catch(()=>{
|
|
|
+ confirmFlag.value = false
|
|
|
+ })
|
|
|
+ )
|
|
|
+ }
|
|
|
+ if(!confirmFlag.value) return
|
|
|
+ const linkUrl = `${import.meta.env.VITE_CHART_LINK}?code=${chartInfo.value.UniqueCode}&fromType=share&lang=${currentLang}`
|
|
|
+ //console.log('url',linkUrl)
|
|
|
+ if(navigator.clipboard&&window.isSecureContext){
|
|
|
+ try{
|
|
|
+ await navigator.clipboard.writeText(linkUrl)
|
|
|
+ showToast({message:'复制链接成功',type:'success'})
|
|
|
+ }catch(err){
|
|
|
+ console.log(err);
|
|
|
+ showToast({message:'复制链接失败',type:'fail'})
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ const input = document.createElement('input')
|
|
|
+ input.setAttribute('readonly','readonly')
|
|
|
+ input.value = linkUrl
|
|
|
+ document.body.appendChild(input)
|
|
|
+ input.select();
|
|
|
+ document.execCommand('copy');
|
|
|
+ document.body.removeChild(input);
|
|
|
+ showToast({message:'复制链接成功',type:'success'})
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+function checkChartEnOption(){
|
|
|
+ if(!chartInfo.value.ChartNameEn) return false
|
|
|
+ for(const data of chartInfoData.EdbInfoList){
|
|
|
+ if(data.EdbNameEn==""||(data.UnitEn==""&&data.Unit!="")){
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return true
|
|
|
+}
|
|
|
+
|
|
|
+let isShowSaveOtherDialog = ref(false)
|
|
|
+let catalogNodes = ref([])
|
|
|
+//另存为
|
|
|
+async function openSaveChartOtherDialog(){
|
|
|
+ const res = await apiChart.ETAChartClassifyList()
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ catalogNodes.value = res.Data?res.Data.AllNodes:[]||[]
|
|
|
+ isShowSaveOtherDialog.value = true
|
|
|
+}
|
|
|
+function saveOther(ClassifyId){
|
|
|
+ apiChart.ETAChartSaveOther({
|
|
|
+ ChartInfoId:chartInfo.value.ChartInfoId,
|
|
|
+ ChartName:chartInfo.value.ChartName+'(1)',
|
|
|
+ ChartClassifyId:ClassifyId
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ showToast({message:'另存为成功',type:'success'})
|
|
|
+ isShowSaveOtherDialog.value = false
|
|
|
+ })
|
|
|
+}
|
|
|
+let savePicDialogShow = ref(false)
|
|
|
+let savePicSrc = ref('')
|
|
|
+//保存图片
|
|
|
+function saveChartPic(){
|
|
|
+ const {chartWidth,chartHeight} = highChart.value
|
|
|
+ //打开保存图片弹窗
|
|
|
+ const svgData = highChart.value.getSVG({
|
|
|
+ chart: {
|
|
|
+ width: chartWidth,
|
|
|
+ height: chartHeight,
|
|
|
+ }
|
|
|
+ })
|
|
|
+ const canvas = document.createElement('canvas')
|
|
|
+ const ctx = canvas.getContext('2d')
|
|
|
+ canvas.width = chartWidth*2
|
|
|
+ canvas.height = chartHeight*2
|
|
|
+ const image = new Image()
|
|
|
+ image.src = 'data:image/svg+xml;charset=utf-8,'+encodeURIComponent(svgData)
|
|
|
+ image.onload = ()=>{
|
|
|
+ ctx.drawImage(image, 0, 0,chartWidth*2,chartHeight*2);
|
|
|
+ savePicSrc.value = canvas.toDataURL('image/png');
|
|
|
+ savePicDialogShow.value = true
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+let setChartEnDialogShow = ref(false)
|
|
|
+//设置英文名称
|
|
|
+function openSetChartEnNameDialog(){
|
|
|
+ setChartEnDialogShow.value = true
|
|
|
+}
|
|
|
+function closeSetNameDialog(type){
|
|
|
+ if(type==='save'){
|
|
|
+ getChartDetail()
|
|
|
+ }
|
|
|
+ setChartEnDialogShow.value = false
|
|
|
+}
|
|
|
+
|
|
|
+let isShowAddToMyETADialog = ref(false)
|
|
|
+//加入我的图库
|
|
|
+function openAddToMyETADialog(){
|
|
|
+ isShowAddToMyETADialog.value = true
|
|
|
+}
|
|
|
+//删除图表
|
|
|
+function deleteChart(){
|
|
|
+ showDialog({
|
|
|
+ title: '提示',
|
|
|
+ message: '删除后该图表将不能再引用,确认删除吗?',
|
|
|
+ showCancelButton:true
|
|
|
+ }).then(() => {
|
|
|
+ apiChart.deleteClassify({
|
|
|
+ ChartClassifyId:Number(routeQueryData.chartClassifyId),
|
|
|
+ ChartInfoId:Number(routeQueryData.id),
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret===200){
|
|
|
+ cachedViewsStore.removeCaches('ChartETAList')
|
|
|
+ cachedViewsStore.removeCaches('ChartETASearch')
|
|
|
+ showToast('删除成功')
|
|
|
+ setTimeout(() => {
|
|
|
+ router.back()
|
|
|
+ }, 1000);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }).catch(()=>{
|
|
|
+
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+//获取图排序列表数据
|
|
|
+const chartSortListData=ref([])
|
|
|
+async function getChartSortList(){
|
|
|
+ const res=await apiChart.chartLocate({
|
|
|
+ KeyWord:route.query.keyword||'',
|
|
|
+ ChartClassifyId:Number(route.query.chartClassifyId),
|
|
|
+ IsShowMe:route.query.IsShowMe=='true'?true:false
|
|
|
+ })
|
|
|
+ if(res.Ret===200){
|
|
|
+ chartSortListData.value=res.Data||[]
|
|
|
+ }
|
|
|
+}
|
|
|
+getChartSortList()
|
|
|
+
|
|
|
+// 切换图
|
|
|
+async function handleSwitchChart(type){
|
|
|
+ const index=chartSortListData.value.findIndex((item)=>item.ChartInfoId==routeQueryData.id)
|
|
|
+ let item=null
|
|
|
+ if(type==='prev'){
|
|
|
+ item=index===0?chartSortListData.value[chartSortListData.value.length-1]:chartSortListData.value[index-1]
|
|
|
+ }else{
|
|
|
+ item=index===chartSortListData.value.length-1?chartSortListData.value[0]:chartSortListData.value[index+1]
|
|
|
+ }
|
|
|
+ //切换前重置chartState
|
|
|
+
|
|
|
+ routeQueryData.id=item.ChartInfoId
|
|
|
+ routeQueryData.chartType=item.ChartType
|
|
|
+ routeQueryData.chartClassifyId=item.ChartClassifyId
|
|
|
+ initChartState({...item,...routeQueryData})
|
|
|
+ getChartDetail('init')
|
|
|
+}
|
|
|
+function initChartState(data){
|
|
|
+ chartState.showTimePop=false
|
|
|
+ chartState.startTime=sameOptionType.includes(Number(data.chartType))?data.StartDate:data.SeasonStartDate
|
|
|
+ chartState.endTime=sameOptionType.includes(Number(data.chartType))?data.EndDate:data.SeasonEndDate
|
|
|
+ chartState.yearVal=data.DateType
|
|
|
+ chartState.calendarType=data.Calendar
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+</script>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <div class="chart-detail-page" v-if="chartInfo">
|
|
|
+ <div class="chart-title">{{currentLang==='en'?(chartInfo.ChartNameEn||chartInfo.ChartName):chartInfo.ChartName}}</div>
|
|
|
+
|
|
|
+ <!-- 一般曲线图选择时间区间或者季节图选择日期 -->
|
|
|
+ <div
|
|
|
+ class="select-time-box"
|
|
|
+ v-if="sameOptionType.includes(chartInfo.ChartType)||chartInfo.ChartType===2"
|
|
|
+ @click="chartState.showTimePop=true"
|
|
|
+ >
|
|
|
+ <img class="left-icon" src="@/assets/imgs/icon_calendar.png" alt="">
|
|
|
+ <span :class="['val-box',!chartState.startTime?'val-box_grey':'']">{{chartState.startTime||'开始日期'}} ~ {{chartState.endTime||'结束日期'}}</span>
|
|
|
+ <van-icon class="right-icon" name="arrow" />
|
|
|
+ </div>
|
|
|
+ <!-- pad端时间和操作按钮模块 -->
|
|
|
+ <div class="pad-time-action-wrap">
|
|
|
+ <div class="left-time-box">
|
|
|
+ <template v-if="sameOptionType.includes(chartInfo.ChartType)">
|
|
|
+ <span :class="['item',chartState.yearVal==''?'active':'']" @click="handleYearChange({value:''})">全部</span>
|
|
|
+ <span
|
|
|
+ :class="['item',chartState.yearVal==item.value?'active':'']"
|
|
|
+ v-for="item in yearSelectOpt"
|
|
|
+ :key="item.value"
|
|
|
+ @click="handleYearChange(item)"
|
|
|
+ >{{item.name}}</span>
|
|
|
+ </template>
|
|
|
+ <span
|
|
|
+ class="time-box"
|
|
|
+ v-if="sameOptionType.includes(chartInfo.ChartType)||chartInfo.ChartType===2"
|
|
|
+ @click="chartState.showTimePop=true"
|
|
|
+ >
|
|
|
+ {{chartState.startTime?`${chartState.startTime} ~ ${chartState.endTime||'至今'}`:'请选择时间段'}}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ <div class="right-action-box">
|
|
|
+ <div class="item" @click="showMoreAction=true" >
|
|
|
+ <img src="@/assets/imgs/chartETA/more-icon.png" alt="">
|
|
|
+ <span>更多设置</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 图渲染区域 -->
|
|
|
+ <div class="chart-render-wrap">
|
|
|
+ <!-- pad 切换上一张\下一张 -->
|
|
|
+ <img class="pad-change-chart-btn" src="@/assets/imgs/icon_arrow2.png" alt="" @click="handleSwitchChart('prev')" v-if="chartSortListData.length>0">
|
|
|
+ <img class="pad-change-chart-btn pad-change-chart-next-btn" src="@/assets/imgs/icon_arrow2.png" alt="" @click="handleSwitchChart('next')" v-if="chartSortListData.length>0">
|
|
|
+ <div class="chart-box" id="chart-box"></div>
|
|
|
+ <!-- 作者 -->
|
|
|
+ <div class="author-box" style="text-align:right">作者:{{chartInfo.SysUserRealName}}</div>
|
|
|
+ </div>
|
|
|
+ <!-- 手机端选择时间区间模块 -->
|
|
|
+ <div class="select-year-box" v-if="sameOptionType.includes(chartInfo.ChartType)">
|
|
|
+ <span :class="['item',chartState.yearVal==''?'active':'']" @click="handleYearChange({value:''})">全部</span>
|
|
|
+ <span
|
|
|
+ :class="['item',chartState.yearVal==item.value?'active':'']"
|
|
|
+ v-for="item in yearSelectOpt"
|
|
|
+ :key="item.value"
|
|
|
+ @click="handleYearChange(item)"
|
|
|
+ >{{item.name}}</span>
|
|
|
+ </div>
|
|
|
+ <!-- 季节图切换公/农历 -->
|
|
|
+ <div class="calendar-type-box" v-if="chartInfo.ChartType === 2">
|
|
|
+ <span
|
|
|
+ :class="chartState.calendarType=='公历'?'active':''"
|
|
|
+ @click="handleSeasonTypeChange('公历')"
|
|
|
+ >公历</span>
|
|
|
+ <span
|
|
|
+ :class="chartState.calendarType=='农历'?'active':''"
|
|
|
+ @click="handleSeasonTypeChange('农历')"
|
|
|
+ >农历</span>
|
|
|
+ </div>
|
|
|
+ <!-- 指标模块 -->
|
|
|
+ <div class="edb-list-box">
|
|
|
+ <!-- pad 设置上下限按钮 -->
|
|
|
+ <div class="pad-limit-set-btn" @click="handleShowAxisLimitOpt" v-if="chartInfo.Source!=3&&chartInfo.ChartType!=8">设置上下限</div>
|
|
|
+ <!-- <div class="list-lable">指标信息</div> -->
|
|
|
+ <div class="list-box">
|
|
|
+ <div class="list-item" v-for="item in edbList" :key="item.EdbInfoId" @click="handleShowEDBInfo(item)">
|
|
|
+ <span class="date">{{item.LatestDate}}</span>
|
|
|
+ <span class="edb-name van-ellipsis" :style="{color:item.ChartColor}">{{item.EdbName}}</span>
|
|
|
+ <span class="value">{{item.LatestValue}}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 底部悬浮操作模块 -->
|
|
|
+ <div class="fix-bot-action-box">
|
|
|
+ <div class="item" @click="handleSwitchChart('prev')" v-if="chartSortListData.length>0">
|
|
|
+ <img class="icon" src="@/assets/imgs/icon_arrow.png" alt="">
|
|
|
+ <div>上一张</div>
|
|
|
+ </div>
|
|
|
+ <div class="item" @click="handleSwitchChart('next')" v-if="chartSortListData.length>0">
|
|
|
+ <img class="icon" style="transform: rotate(180deg);" src="@/assets/imgs/icon_arrow.png" alt="">
|
|
|
+ <div>下一张</div>
|
|
|
+ </div>
|
|
|
+ <div class="item" @click="handleShowAxisLimitOpt" v-if="chartInfo.Source!=3&&chartInfo.ChartType!=8">
|
|
|
+ <img class="icon" src="@/assets/imgs/myETA/icon_limit.png" alt="">
|
|
|
+ <div>上下限</div>
|
|
|
+ </div>
|
|
|
+ <div class="item" @click="showMoreAction=true">
|
|
|
+ <img class="icon" src="@/assets/imgs/myETA/icon_menu.png" alt="">
|
|
|
+ <div>更多</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 选择日期弹窗 -->
|
|
|
+ <van-popup
|
|
|
+ v-model:show="chartState.showTimePop"
|
|
|
+ :position="width>650?'center':'bottom'"
|
|
|
+ :style="width>650?{ width: '400px'}:''"
|
|
|
+ >
|
|
|
+ <div class="time-picker-wrap">
|
|
|
+ <van-picker-group
|
|
|
+ title="选择起始时间"
|
|
|
+ :tabs="['开始时间', '结束时间']"
|
|
|
+ @cancel="chartState.showTimePop=false"
|
|
|
+ @confirm="handleTimeChange"
|
|
|
+ >
|
|
|
+ <van-date-picker
|
|
|
+ v-model="temStartTime"
|
|
|
+ :min-date="minDate"
|
|
|
+ :max-date="maxDate"
|
|
|
+ :columns-type="chartInfo.ChartType==2?['year']:['year','month']"
|
|
|
+ />
|
|
|
+ <van-date-picker
|
|
|
+ v-model="temEndTime"
|
|
|
+ :min-date="minDate"
|
|
|
+ :max-date="maxDate"
|
|
|
+ :columns-type="chartInfo.ChartType==2?['year']:['year','month']"
|
|
|
+ />
|
|
|
+ </van-picker-group>
|
|
|
+ </div>
|
|
|
+ </van-popup>
|
|
|
+ <!-- 指标详情弹窗 -->
|
|
|
+ <van-popup
|
|
|
+ v-model:show="showEDB"
|
|
|
+ :position="width>650?'right':'bottom'"
|
|
|
+ round
|
|
|
+ closeable
|
|
|
+ :style="width>650?{ width: '400px', height: '100%' }:''"
|
|
|
+ >
|
|
|
+ <EdbInfo
|
|
|
+ :show="showEDB"
|
|
|
+ :data="showEDBData"
|
|
|
+ :tableData="edbList"
|
|
|
+ @showSourceDetail="handleShowSourceDetail"
|
|
|
+ />
|
|
|
+ </van-popup>
|
|
|
+ <!-- 数据来源弹窗-->
|
|
|
+ <van-popup
|
|
|
+ v-model:show="showSourceDetail"
|
|
|
+ position="center"
|
|
|
+ round
|
|
|
+ closeable
|
|
|
+ :style="{ width: '400px'}"
|
|
|
+ >
|
|
|
+ <SourceDetail
|
|
|
+ :show="showSourceDetail"
|
|
|
+ :EdbInfoId="showEDBData.EdbInfoId"
|
|
|
+ />
|
|
|
+ </van-popup>
|
|
|
+ <!-- 上下限调整弹窗 -->
|
|
|
+ <van-popup
|
|
|
+ v-model:show="showLimitPop"
|
|
|
+ :position="width>650?'center':'bottom'"
|
|
|
+ round
|
|
|
+ closeable
|
|
|
+ :style="width>650?{ width: '400px'}:''"
|
|
|
+ >
|
|
|
+ <div class="global-pop-wrap_mobile chart-set-limit-wrap">
|
|
|
+ <div class="head-box">
|
|
|
+ <div class="title">上下限设置</div>
|
|
|
+ </div>
|
|
|
+ <div class="content">
|
|
|
+ <!-- 左轴 -->
|
|
|
+ <div class="item-box" v-if="axisLimitState.hasLeftAxis">
|
|
|
+ <span class="lable-text">左轴</span>
|
|
|
+ <div class="input-box">
|
|
|
+ <div class="item">
|
|
|
+ <div class="type-text">上限</div>
|
|
|
+ <div class="step-box">
|
|
|
+ <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.leftMax" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <div class="type-text">下限</div>
|
|
|
+ <div class="step-box">
|
|
|
+ <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.leftMin" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 右轴 -->
|
|
|
+ <div class="item-box" v-if="axisLimitState.hasRightAxis">
|
|
|
+ <span class="lable-text">右轴</span>
|
|
|
+ <div class="input-box">
|
|
|
+ <div class="item">
|
|
|
+ <div class="type-text">上限</div>
|
|
|
+ <div class="step-box">
|
|
|
+ <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.rightMax" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <div class="type-text">下限</div>
|
|
|
+ <div class="step-box">
|
|
|
+ <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.rightMin" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 右二轴 -->
|
|
|
+ <div class="item-box" v-if="axisLimitState.hasRightTwoAxis">
|
|
|
+ <span class="lable-text">右2轴</span>
|
|
|
+ <div class="input-box">
|
|
|
+ <div class="item">
|
|
|
+ <div class="type-text">上限</div>
|
|
|
+ <div class="step-box">
|
|
|
+ <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.rightTwoMax" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <div class="type-text">下限</div>
|
|
|
+ <div class="step-box">
|
|
|
+ <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.rightTwoMin" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- x轴 -->
|
|
|
+ <div class="item-box" v-if="axisLimitState.hasXAxis">
|
|
|
+ <span class="lable-text">X轴</span>
|
|
|
+ <div class="input-box">
|
|
|
+ <div class="item">
|
|
|
+ <div class="type-text">上限</div>
|
|
|
+ <div class="step-box">
|
|
|
+ <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.xMax" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <div class="type-text">下限</div>
|
|
|
+ <div class="step-box">
|
|
|
+ <van-stepper input-width="60px" :min="axisLimitDataTem.min" v-model.number="axisLimitDataTem.xMin" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="bot-btn-box" @click="handleConfirmLimitChange">确定</div>
|
|
|
+ </div>
|
|
|
+ </van-popup>
|
|
|
+ <!-- 更多设置弹窗 -->
|
|
|
+ <van-popup
|
|
|
+ v-model:show="showMoreAction"
|
|
|
+ :position="width>650?'center':'bottom'"
|
|
|
+ round
|
|
|
+ closeable
|
|
|
+ :style="width>650?{ width: '400px'}:''"
|
|
|
+ >
|
|
|
+ <div class="global-pop-wrap_mobile chart-more-action-wrap">
|
|
|
+ <div class="head-box">
|
|
|
+ <div class="title van-ellipsis">{{chartInfo.ChartName}}</div>
|
|
|
+ </div>
|
|
|
+ <div class="action-box">
|
|
|
+ <template v-for="item in chartActions" :key="item.types">
|
|
|
+ <div class="action-item" v-if="item.show" @click="handleActionClick(item)">
|
|
|
+ {{item.label}}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </van-popup>
|
|
|
+ <!-- 另存为弹窗 -->
|
|
|
+ <TreeSelectPop
|
|
|
+ :isShowDialog="isShowSaveOtherDialog"
|
|
|
+ :dialogPosition="width>650?'center':'bottom'"
|
|
|
+ :catalogNodes="catalogNodes"
|
|
|
+ :chartInfo="chartInfo"
|
|
|
+ popTitle="另存为"
|
|
|
+ @close="isShowSaveOtherDialog=false"
|
|
|
+ @confirmMove="saveOther"
|
|
|
+ />
|
|
|
+ <!-- 加入我的图库弹窗 -->
|
|
|
+ <AddChartToMyETA
|
|
|
+ :isShowDialog="isShowAddToMyETADialog"
|
|
|
+ :dialogPosition="width>650?'center':'bottom'"
|
|
|
+ :chartInfo="chartInfo"
|
|
|
+ @close="isShowAddToMyETADialog=false"
|
|
|
+ />
|
|
|
+ <!--保存图片弹窗 -->
|
|
|
+ <van-popup
|
|
|
+ v-model:show="savePicDialogShow"
|
|
|
+ position="center"
|
|
|
+ round
|
|
|
+ closeable
|
|
|
+ :style="{width:'80%',padding:'30px'}"
|
|
|
+ >
|
|
|
+ <img :src="savePicSrc" alt="" style="width:100%;box-sizing: border-box;">
|
|
|
+ <p style="text-align: center;color:#999;margin-top: 10px;">长按保存图片</p>
|
|
|
+ </van-popup>
|
|
|
+ <!-- 设置英文名称弹窗 -->
|
|
|
+ <van-popup
|
|
|
+ v-model:show="setChartEnDialogShow"
|
|
|
+ position="bottom"
|
|
|
+ :style="{width:'100%',height:'100%'}"
|
|
|
+ >
|
|
|
+ <SetChartEnName
|
|
|
+ :isShow="setChartEnDialogShow"
|
|
|
+ :chartInfo="chartInfoData"
|
|
|
+ :chartType="Number(route.query.chartType)"
|
|
|
+ @close="closeSetNameDialog"
|
|
|
+ />
|
|
|
+ </van-popup>
|
|
|
+
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<style lang="scss">
|
|
|
+.chart-detail-page{
|
|
|
+ .rename-wrap{
|
|
|
+ padding:48px;
|
|
|
+ input{
|
|
|
+ padding: 24px 32px;
|
|
|
+ border-radius: 12px;
|
|
|
+ background-color: #F6F6F6;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .label{
|
|
|
+ color: #666666;
|
|
|
+ margin-bottom: 32px;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ @media screen and (min-width:$media-width){
|
|
|
+ .rename-wrap{
|
|
|
+ padding:24px;
|
|
|
+ input{
|
|
|
+ padding: 12px 16px;
|
|
|
+ border-radius: 6px;
|
|
|
+ background-color: #F6F6F6;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .label{
|
|
|
+ margin-bottom: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|
|
|
+<style scoped lang="scss">
|
|
|
+.chart-detail-page{
|
|
|
+ padding: $page-padding;
|
|
|
+ padding-bottom: 120px;
|
|
|
+ .chart-title{
|
|
|
+ font-size: 36px;
|
|
|
+ margin-bottom: 56px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .chart-render-wrap{
|
|
|
+ .pad-change-chart-btn{
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .chart-box{
|
|
|
+ width: 100%;
|
|
|
+ height: 700px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .select-time-box{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding-bottom: 32px;
|
|
|
+ border-bottom: 1px solid $border-color;
|
|
|
+ .left-icon{
|
|
|
+ width: 48px;
|
|
|
+ height: 48px;
|
|
|
+ }
|
|
|
+ .right-icon{
|
|
|
+ margin-left: auto;
|
|
|
+ }
|
|
|
+ .val-box{
|
|
|
+ margin-left: 32px;
|
|
|
+ font-size: 32px;
|
|
|
+ &.val-box_grey{
|
|
|
+ color: $font-grey_999;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .select-year-box{
|
|
|
+ width: 100vw;
|
|
|
+ position: relative;
|
|
|
+ left: -$page-padding;
|
|
|
+ margin-top: 30px;
|
|
|
+ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
|
|
|
+ height: 88px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ overflow-y: auto;
|
|
|
+ padding: 0 $page-padding;
|
|
|
+ &::-webkit-scrollbar{
|
|
|
+ height: 0;
|
|
|
+ }
|
|
|
+ .item{
|
|
|
+ line-height: 88px;
|
|
|
+ position: relative;
|
|
|
+ height: 100%;
|
|
|
+ flex-shrink: 0;
|
|
|
+ display: inline-block;
|
|
|
+ margin-right: 40px;
|
|
|
+ font-size: 32px;
|
|
|
+ color: $font-grey_999;
|
|
|
+ &.active{
|
|
|
+ color: #333;
|
|
|
+ &::after{
|
|
|
+ content: '';
|
|
|
+ display: block;
|
|
|
+ width: 50px;
|
|
|
+ height: 6px;
|
|
|
+ border-radius: 3px;
|
|
|
+ background-color: $theme-color;
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .calendar-type-box{
|
|
|
+ width: 404px;
|
|
|
+ margin: 30px auto;
|
|
|
+ text-align: center;
|
|
|
+ border: 1px solid $theme-color;
|
|
|
+ border-radius: 12px;
|
|
|
+ overflow: hidden;
|
|
|
+ span{
|
|
|
+ display: inline-block;
|
|
|
+ width: 200px;
|
|
|
+ height: 80px;
|
|
|
+ line-height: 80px;
|
|
|
+ color: $theme-color;
|
|
|
+ font-weight: bold;
|
|
|
+ &.active{
|
|
|
+ background-color: $theme-color;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .pad-time-action-wrap{
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .edb-list-box{
|
|
|
+ .pad-limit-set-btn{
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .list-lable{
|
|
|
+ font-size: 36px;
|
|
|
+ color: #000;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ margin-top: 40px;
|
|
|
+ }
|
|
|
+ .list-item{
|
|
|
+ padding:18px;
|
|
|
+ display: flex;
|
|
|
+ gap:0 20px;
|
|
|
+ border-bottom: 1px solid #DCDFE6;
|
|
|
+ &:last-child{
|
|
|
+ border-bottom: none;
|
|
|
+ }
|
|
|
+ .edb-name{
|
|
|
+ flex: 1;
|
|
|
+ /* text-align: center; */
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .fix-bot-action-box{
|
|
|
+ position: fixed;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ right: 0;
|
|
|
+ z-index: 99;
|
|
|
+ background-color: #fff;
|
|
|
+ border-top: 1px solid $border-color;
|
|
|
+ height: 112px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ .item{
|
|
|
+ height: 100%;
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 20px;
|
|
|
+ .icon{
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .chart-set-limit-wrap{
|
|
|
+ .head-box{
|
|
|
+ .title{
|
|
|
+ padding: 0 $page-padding;
|
|
|
+ font-size: 36px;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 120px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .bot-btn-box{
|
|
|
+ line-height: 112px;
|
|
|
+ text-align: center;
|
|
|
+ color: $theme-color;
|
|
|
+ font-size: 32px;
|
|
|
+ }
|
|
|
+ .content{
|
|
|
+ padding: $page-padding;
|
|
|
+ .item-box{
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-end;
|
|
|
+ margin-bottom: 30px;
|
|
|
+ .lable-text{
|
|
|
+ width: 100px;
|
|
|
+ }
|
|
|
+ .input-box{
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ .item{
|
|
|
+ flex: 1;
|
|
|
+ text-align: center;
|
|
|
+ .type-text{
|
|
|
+ margin-bottom: 40px;
|
|
|
+ }
|
|
|
+ .step-box{
|
|
|
+ display: inline-block;
|
|
|
+ :deep(.van-stepper){
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ .chart-more-action-wrap{
|
|
|
+ .head-box{
|
|
|
+ .title{
|
|
|
+ width: 100%;
|
|
|
+ padding:34px 100px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ font-size: 36px;
|
|
|
+ font-weight: 600;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .action-box{
|
|
|
+ .action-item{
|
|
|
+ text-align: center;
|
|
|
+ padding:32px 84px;
|
|
|
+ border-bottom: 1px solid #DCDFE6;
|
|
|
+ &:last-child{
|
|
|
+ border-bottom: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ @media screen and (min-width:$media-width){
|
|
|
+ padding:30px;
|
|
|
+ .chart-title{
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ margin-bottom: 30px;
|
|
|
+ }
|
|
|
+ .chart-render-wrap{
|
|
|
+ position: relative;
|
|
|
+ .pad-change-chart-btn{
|
|
|
+ display: block;
|
|
|
+ width: 48px;
|
|
|
+ height: 48px;
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ left: 0px;
|
|
|
+ &.pad-change-chart-next-btn{
|
|
|
+ right: 0;
|
|
|
+ left: auto;
|
|
|
+ transform: translateY(-50%) rotate(180deg);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .chart-box{
|
|
|
+ width: 85%;
|
|
|
+ height: 370px;
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ .select-time-box,.select-year-box,.fix-bot-action-box{
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .pad-time-action-wrap{
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ .left-time-box{
|
|
|
+ flex-shrink: 0;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ .item{
|
|
|
+ display: inline-block;
|
|
|
+ width: 80px;
|
|
|
+ height: 36px;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 36px;
|
|
|
+ border: 1px solid $theme-color;
|
|
|
+ margin-right: 10px;
|
|
|
+ border-radius: 3px;
|
|
|
+ &.active{
|
|
|
+ color: #fff;
|
|
|
+ background-color: $theme-color;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .time-box{
|
|
|
+ display: inline-block;
|
|
|
+ padding: 0 15px;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+ border: 1px solid $theme-color;
|
|
|
+ border-radius: 3px;
|
|
|
+ background-color: #F2F3FF;
|
|
|
+ color: $theme-color;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .right-action-box{
|
|
|
+ display: flex;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ .item{
|
|
|
+ display: flex;
|
|
|
+ color: $theme-color;
|
|
|
+ margin-left: 20px;
|
|
|
+ img{
|
|
|
+ width: 15px;
|
|
|
+ height: 15px;
|
|
|
+ margin-right: 4px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .calendar-type-box{
|
|
|
+ width: 224px;
|
|
|
+ margin: 20px auto;
|
|
|
+ border-radius: 4px;
|
|
|
+ span{
|
|
|
+ width: 111px;
|
|
|
+ height: 38px;
|
|
|
+ line-height: 38px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .edb-list-box{
|
|
|
+ position: relative;
|
|
|
+ left: -30px;
|
|
|
+ border-top: 1px solid $border-color;
|
|
|
+ width: 100vw;
|
|
|
+ padding: 0 30px;
|
|
|
+ margin-top: 20px;
|
|
|
+ .pad-limit-set-btn{
|
|
|
+ display: block;
|
|
|
+ text-align: right;
|
|
|
+ margin: 20px 0;
|
|
|
+ color: $theme-color;
|
|
|
+ }
|
|
|
+ .list-lable{
|
|
|
+ margin-top: 20px;
|
|
|
+ font-size: 16px;
|
|
|
+ margin-bottom: 14px;
|
|
|
+ }
|
|
|
+ .list-box{
|
|
|
+ //border: 1px solid $border-color;
|
|
|
+ .list-item{
|
|
|
+ padding: 18px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .chart-set-limit-wrap{
|
|
|
+ .head-box{
|
|
|
+ .title{
|
|
|
+ font-size: 18px;
|
|
|
+ line-height: 50px;
|
|
|
+ padding-left: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .bot-btn-box{
|
|
|
+ font-size: 16px;
|
|
|
+ line-height: 56px;
|
|
|
+ border-top-width: 8px;
|
|
|
+ }
|
|
|
+ .content{
|
|
|
+ max-height: 500px;
|
|
|
+ padding: 30px;
|
|
|
+ .item-box{
|
|
|
+ margin-bottom: 15px;
|
|
|
+ .lable-text{
|
|
|
+ width: 50px;
|
|
|
+ }
|
|
|
+ .input-box{
|
|
|
+ .item{
|
|
|
+ .type-text{
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .chart-more-action-wrap{
|
|
|
+ .head-box{
|
|
|
+ .title{
|
|
|
+ padding:17px 50px;
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .action-box{
|
|
|
+ .action-item{
|
|
|
+ padding:16px 42px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|