违法用地-持续监管-继续持续监管按钮只有待审核状态的图斑显示
parent
de41b71f31
commit
cf7c31eb36
|
|
@ -98,7 +98,13 @@
|
|||
v-if="isKeepSupervision"
|
||||
style="display: flex; justify-content: right; margin-top: 10px; gap: 10px"
|
||||
>
|
||||
<a-button type="primary" @click="funCheckCxjgPic"> 继续持续监管 </a-button>
|
||||
<a-button
|
||||
v-if="props.showInfoRecord.piccheck == '待审核'"
|
||||
type="primary"
|
||||
@click="funCheckCxjgPic"
|
||||
>
|
||||
继续持续监管
|
||||
</a-button>
|
||||
<a-button type="primary" @click="moveInIllegalSubejctOpen = true">
|
||||
转入违法用地
|
||||
</a-button>
|
||||
|
|
@ -532,7 +538,7 @@
|
|||
|
||||
const MapboxComponent = ref();
|
||||
const mapConfig = ref({});
|
||||
const props = defineProps(['showInfoData', 'hiddenInfoMap']);
|
||||
const props = defineProps(['showInfoData', 'hiddenInfoMap', 'showInfoRecord']);
|
||||
const activeKey = ref('1');
|
||||
const geomsList = ref();
|
||||
const imageList = ref([]);
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@
|
|||
<a-button type="primary" style="margin-right: 25px" @click="prevData">上一条</a-button>
|
||||
<a-button type="primary" @click="nextData">下一条</a-button>
|
||||
</div>
|
||||
<ShowInfoModal :showInfoData="showInfoData" />
|
||||
<ShowInfoModal :showInfoData="showInfoData" :showInfoRecord="showInfoRecord" />
|
||||
</div>
|
||||
</a-modal>
|
||||
<a-modal
|
||||
|
|
@ -128,6 +128,7 @@
|
|||
countyid: null,
|
||||
});
|
||||
const showInfoData = ref();
|
||||
const showInfoRecord = ref();
|
||||
const showInfoOpen = ref(false);
|
||||
const searchParams = ref({
|
||||
page: 1,
|
||||
|
|
@ -191,8 +192,8 @@
|
|||
// 直接下载接口返回的二进制流
|
||||
function handleExport() {
|
||||
let params = { ...searchParams.value };
|
||||
delete params['page'];
|
||||
delete params['limit'];
|
||||
// delete params['page'];
|
||||
// delete params['limit'];
|
||||
let url = VITE_GLOB_API_URL + '/api/DroneCaseInfoSingle/ExportCaseInfoCxjgShapefile';
|
||||
let fileName = '持续监管列表矢量数据' + new Date().getTime() + '.zip';
|
||||
axios({
|
||||
|
|
@ -229,6 +230,7 @@
|
|||
}
|
||||
function viewAccount(record) {
|
||||
showInfoId.value = record.Id;
|
||||
showInfoRecord.value = record;
|
||||
getDetailData();
|
||||
}
|
||||
function getDetailData() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue