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