弹框自定义狂赌问题解决
This commit is contained in:
commit
a83131abb5
@ -24,8 +24,9 @@
|
|||||||
| 2026-06-26 | <br /> | 14 | 地图抽吸 碰撞检测 放大到具体层级锚点抽吸了但是 popup 弹框还在显示 | ⚠ | <br /> |
|
| 2026-06-26 | <br /> | 14 | 地图抽吸 碰撞检测 放大到具体层级锚点抽吸了但是 popup 弹框还在显示 | ⚠ | <br /> |
|
||||||
| 2026-06-26 | <br /> | 15 | 地图比如积石峡 放大到层级被公伯峡隐藏掉了,然后在放大才显示 抽吸的问题 | ⚠ | <br /> |
|
| 2026-06-26 | <br /> | 15 | 地图比如积石峡 放大到层级被公伯峡隐藏掉了,然后在放大才显示 抽吸的问题 | ⚠ | <br /> |
|
||||||
| 2026-06-26 | <br /> | 16 | 运行情况 计划开始运行时间 接口没接 | ⚠ | <br /> |
|
| 2026-06-26 | <br /> | 16 | 运行情况 计划开始运行时间 接口没接 | ⚠ | <br /> |
|
||||||
| 2026-07-01 | 王 | 17 | 所有弹框加拖动 | <br /> | <br /> |
|
| 2026-07-01 | 王 | 17 | 所有弹框加拖动 | ✅ | <br /> |
|
||||||
| 2026-07-01 | 王 | 18 | 所有弹框检查宽度有的是固定的 | <br /> | <br /> |
|
| 2026-07-01 | 王 | 18 | 所有弹框检查宽度有的是固定的 | ✅ | <br /> |
|
||||||
|
| 2026-07-01 | 王 | 18 | 所有导出的添加 | <br /> | <br /> |
|
||||||
| 2026-07-02 | 扈 | 19 | 地图点击基地切换偶发性会全部展示出来所有锚点 | <br /> | <br /> |
|
| 2026-07-02 | 扈 | 19 | 地图点击基地切换偶发性会全部展示出来所有锚点 | <br /> | <br /> |
|
||||||
| 2026-07-03 | 汤 | 20 | 图例数据关了选中配置需要添加一个字段是默认不显示 | <br /> | <br /> |
|
| 2026-07-03 | 汤 | 20 | 图例数据关了选中配置需要添加一个字段是默认不显示 | <br /> | <br /> |
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
<a-modal
|
<a-modal
|
||||||
v-model:open="modalVisible"
|
v-model:open="modalVisible"
|
||||||
title="水电开发情况"
|
title="水电开发情况"
|
||||||
width="1536px"
|
width="80%"
|
||||||
:footer="null"
|
:footer="null"
|
||||||
:destroy-on-close="true"
|
:destroy-on-close="true"
|
||||||
>
|
>
|
||||||
|
|||||||
@ -42,7 +42,7 @@
|
|||||||
<a-modal
|
<a-modal
|
||||||
v-model:open="modalVisible"
|
v-model:open="modalVisible"
|
||||||
title="环境监测数据接入情况"
|
title="环境监测数据接入情况"
|
||||||
width="1536px"
|
width="80%"
|
||||||
:footer="null"
|
:footer="null"
|
||||||
:destroy-on-close="true"
|
:destroy-on-close="true"
|
||||||
>
|
>
|
||||||
|
|||||||
@ -53,7 +53,7 @@
|
|||||||
</SidePanelItem>
|
</SidePanelItem>
|
||||||
|
|
||||||
<!-- 设施详情弹框 -->
|
<!-- 设施详情弹框 -->
|
||||||
<a-modal v-model:open="modalVisibleone" :title="'设施详情'" width="1536px" :footer="null">
|
<a-modal v-model:open="modalVisibleone" :title="'设施详情'" width="80%" :footer="null">
|
||||||
<div v-if="currentItem" class="detail-container">
|
<div v-if="currentItem" class="detail-container">
|
||||||
<ArtsDetail :dataSource="currentItem" :index="getCurrentRealIndex()" />
|
<ArtsDetail :dataSource="currentItem" :index="getCurrentRealIndex()" />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -4,9 +4,17 @@
|
|||||||
:datetimePicker="datetimePicker"
|
:datetimePicker="datetimePicker"
|
||||||
@update-values="handlePanelChange"
|
@update-values="handlePanelChange"
|
||||||
>
|
>
|
||||||
<a-spin :spinning="loading" style="width: 100%;">
|
<a-spin :spinning="loading" style="width: 100%">
|
||||||
<div ref="chartContainer" class="chart-container" v-show="sourceData.length > 0"></div>
|
<div
|
||||||
<a-empty v-show="sourceData.length === 0" description="暂无数据" class="empty-container" />
|
ref="chartContainer"
|
||||||
|
class="chart-container"
|
||||||
|
v-show="sourceData.length > 0"
|
||||||
|
></div>
|
||||||
|
<a-empty
|
||||||
|
v-show="sourceData.length === 0"
|
||||||
|
description="暂无数据"
|
||||||
|
class="empty-container"
|
||||||
|
/>
|
||||||
</a-spin>
|
</a-spin>
|
||||||
</SidePanelItem>
|
</SidePanelItem>
|
||||||
</template>
|
</template>
|
||||||
@ -296,8 +304,12 @@ onUnmounted(() => {
|
|||||||
}
|
}
|
||||||
.empty-container {
|
.empty-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 200px;
|
height: 200px;
|
||||||
|
p{
|
||||||
|
text-indent:0px !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -30,7 +30,7 @@
|
|||||||
<a-modal
|
<a-modal
|
||||||
v-model:open="modalVisible"
|
v-model:open="modalVisible"
|
||||||
title="环保设施情况"
|
title="环保设施情况"
|
||||||
width="1536px"
|
width="80%"
|
||||||
:footer="null"
|
:footer="null"
|
||||||
>
|
>
|
||||||
<HuanbaoModTwoLayers
|
<HuanbaoModTwoLayers
|
||||||
|
|||||||
@ -55,7 +55,7 @@
|
|||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:scrollY="380"
|
:scrollY="380"
|
||||||
:scrollX="100"
|
|
||||||
:list-url="vmsstbprptGetKendoList"
|
:list-url="vmsstbprptGetKendoList"
|
||||||
:search-params="searchParams"
|
:search-params="searchParams"
|
||||||
:transform-data="customTransform"
|
:transform-data="customTransform"
|
||||||
@ -834,8 +834,7 @@ const handleResize = () => {
|
|||||||
width: 35%;
|
width: 35%;
|
||||||
height: 482px;
|
height: 482px;
|
||||||
// position: relative;
|
// position: relative;
|
||||||
min-width: 521px;
|
|
||||||
|
|
||||||
.pie-chart {
|
.pie-chart {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|||||||
@ -37,7 +37,7 @@
|
|||||||
<a-modal
|
<a-modal
|
||||||
v-model:open="modalVisible"
|
v-model:open="modalVisible"
|
||||||
:title="'生态流量泄放方式'"
|
:title="'生态流量泄放方式'"
|
||||||
width="1536px"
|
width="80%"
|
||||||
@cancel="handleModalCancel"
|
@cancel="handleModalCancel"
|
||||||
>
|
>
|
||||||
<STLLXFFS
|
<STLLXFFS
|
||||||
|
|||||||
@ -676,7 +676,7 @@ onUnmounted(() => {
|
|||||||
.chart-section {
|
.chart-section {
|
||||||
width: 35%;
|
width: 35%;
|
||||||
height: 482px;
|
height: 482px;
|
||||||
min-width: 521px;
|
|
||||||
|
|
||||||
.pie-chart {
|
.pie-chart {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
<a-modal
|
<a-modal
|
||||||
v-model:open="modalVisible"
|
v-model:open="modalVisible"
|
||||||
title="泄放方式分布情况"
|
title="泄放方式分布情况"
|
||||||
width="1536px"
|
width="80%"
|
||||||
:footer="null"
|
:footer="null"
|
||||||
@cancel="handleModalCancel"
|
@cancel="handleModalCancel"
|
||||||
>
|
>
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
<a-modal
|
<a-modal
|
||||||
v-model:open="modalVisible"
|
v-model:open="modalVisible"
|
||||||
title="水电开发情况"
|
title="水电开发情况"
|
||||||
width="1536px"
|
width="80%"
|
||||||
:footer="null"
|
:footer="null"
|
||||||
:destroy-on-close="true"
|
:destroy-on-close="true"
|
||||||
>
|
>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user