Merge branch 'main' of http://123.132.248.154:10000/HC_YFZX/CaiYuanYiTiHua
commit
d6324198ef
|
|
@ -184,6 +184,10 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="label">情况说明:</div>
|
||||
<div class="item-value" style="flex:2">
|
||||
<a-input v-model:value="props.infoData.resubmitremark" disabled/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
</template>
|
||||
</BasicTable>
|
||||
<a-modal width="75%" style="top: 30px;" v-model:open="openModal" title="线索审核" :destroyOnClose="true" :footer="null">
|
||||
<InfoModal :infoData="infoData.info" @handleOk="handleOk" @closeModal="closeModal" :control="false" :type="type"/>
|
||||
<InfoModal :infoData="infoData.info" @handleOk="handleOk" @closeModal="closeModal" :control="false" :type="type" :modalLoading="false"/>
|
||||
</a-modal>
|
||||
</PageWrapper>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
</template>
|
||||
</BasicTable>
|
||||
<a-modal width="75%" style="top: 30px;" v-model:open="openModal" title="线索审核" :destroyOnClose="true" :footer="null">
|
||||
<InfoModal :infoData="infoData.info" @handleOk="handleOk" @closeModal="closeModal" :control="false" :type="type"/>
|
||||
<InfoModal :infoData="infoData.info" @handleOk="handleOk" @closeModal="closeModal" :control="false" :type="type" :modalLoading="false"/>
|
||||
</a-modal>
|
||||
</PageWrapper>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
</template>
|
||||
</BasicTable>
|
||||
<a-modal width="75%" style="top: 8px;" v-model:open="openModal" title="线索审核" :destroyOnClose="true" :footer="null">
|
||||
<InfoModal :infoData="infoData.info" @handleOk="handleOk" @closeModal="closeModal" :control="false"/>
|
||||
<InfoModal :infoData="infoData.info" @handleOk="handleOk" @closeModal="closeModal" :control="false" :modalLoading="false"/>
|
||||
</a-modal>
|
||||
</PageWrapper>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -222,6 +222,16 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="item">
|
||||
<div class="label">情况说明:</div>
|
||||
<div class="item-value" style="flex:2">
|
||||
<a-input v-model:value="props.infoData.resubmitremark" disabled/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item"></div>
|
||||
<div class="item"></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="item" style="width: 100%;">
|
||||
<div class="label">图片:</div>
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
</template>
|
||||
</BasicTable>
|
||||
<a-modal width="75%" style="top: 8px;" v-model:open="openModal" title="线索审核" :destroyOnClose="true" :footer="null">
|
||||
<InfoModal :infoData="infoData.info" @handleOk="handleOk" @closeModal="closeModal" :control="false"/>
|
||||
<InfoModal :infoData="infoData.info" @handleOk="handleOk" @closeModal="closeModal" :control="false" :modalLoading="false"/>
|
||||
</a-modal>
|
||||
</PageWrapper>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
<div class="legend">
|
||||
<div v-if="subject == '非法采矿'" class="button-item router-button" style="position: absolute;top: -50px;width: 200px;left: 0px;background-size: 100% 100%;height: 37px;
|
||||
font-size: 16px;cursor: pointer" @click="goRouter">汇总表</div>
|
||||
<div class="legend-item" v-for="(item, index) in legends" :key="index">
|
||||
<div :class="`legend-item ${subject == '耕地非粮化'? 'flh-item': ''}`" v-for="(item, index) in legends" :key="index">
|
||||
<div class="legend-dot" :style="{ background: item.color }"></div>
|
||||
<div class="legend-label">{{ item.label }}</div>
|
||||
</div>
|
||||
|
|
@ -287,7 +287,11 @@ watchEffect(() => {
|
|||
break;
|
||||
case '耕地非粮化':
|
||||
title = 'Subject_GDFLH';
|
||||
defaultColor.value = '#F70303';
|
||||
legends.value.push({
|
||||
label: '默认',
|
||||
color: '#FFFFFF',
|
||||
});
|
||||
defaultColor.value = '#FFFFFF';
|
||||
break;
|
||||
case '重点问题':
|
||||
title = 'Subject_ZDWT';
|
||||
|
|
@ -631,6 +635,9 @@ watchEffect(() => {
|
|||
margin-left: 12px;
|
||||
}
|
||||
}
|
||||
.flh-item{
|
||||
width: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
/**图层控制 视频监控**/
|
||||
|
|
|
|||
|
|
@ -301,6 +301,9 @@
|
|||
padding: 0px 2px;
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
&::after {
|
||||
content: '';
|
||||
width: 2px;
|
||||
|
|
|
|||
Loading…
Reference in New Issue