|
@@ -373,7 +373,7 @@ getChartList()
|
|
|
</div>
|
|
|
</van-dialog>
|
|
|
<!-- 移动分类 弹窗-->
|
|
|
- <van-popup v-model:show="moveClassState.isShowPopup" round position="bottom">
|
|
|
+ <van-popup v-model:show="moveClassState.isShowPopup" round :position="width>650?'center':'bottom'" class="move-popup">
|
|
|
<van-picker
|
|
|
title="移动至"
|
|
|
:columns="catalogNodes"
|
|
@@ -386,6 +386,7 @@ getChartList()
|
|
|
<AddChartToMyETA
|
|
|
:isShowDialog="addChartState.isShowDialog"
|
|
|
:chartInfo="addChartState.chartInfo"
|
|
|
+ :dialogPosition="width>650?'center':'bottom'"
|
|
|
@close="addChartState.isShowDialog=false"
|
|
|
/>
|
|
|
<!-- 移动/另存为图表 弹窗 -->
|
|
@@ -394,6 +395,7 @@ getChartList()
|
|
|
:popTitle="moveChartState.popTitle"
|
|
|
:catalogNodes="moveChartState.catalogNodes"
|
|
|
:chartInfo="moveChartState.chartInfo"
|
|
|
+ :dialogPosition="width>650?'center':'bottom'"
|
|
|
@close="moveChartState.isShowDialog=false"
|
|
|
@confirmMove="MoveChart"
|
|
|
/>
|
|
@@ -422,6 +424,9 @@ getChartList()
|
|
|
.catalog-list-wrap{
|
|
|
width: 30%;
|
|
|
}
|
|
|
+ .move-popup{
|
|
|
+ width:375px;
|
|
|
+ }
|
|
|
.rename-wrap{
|
|
|
padding:24px;
|
|
|
input{
|