|
@@ -93,6 +93,12 @@ function handleTimeChange(){
|
|
|
chartState.showTimePop=false
|
|
|
}
|
|
|
|
|
|
+// 季节图公历\农历切换
|
|
|
+function handleSeasonTypeChange(type){
|
|
|
+ chartState.calendarType=type
|
|
|
+ getChartDetail()
|
|
|
+}
|
|
|
+
|
|
|
// 上下限调整
|
|
|
let showLimitPop=ref(false)
|
|
|
let axisLimitDataTem=reactive({//左右轴极值
|
|
@@ -528,4 +534,51 @@ function handleConfirmLimitChange(){
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+.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;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
</style>
|