石超 2025-06-05 15:42:59 +08:00
commit 44f33bfd86
2 changed files with 10 additions and 8 deletions

View File

@ -95,16 +95,10 @@
}}</a-descriptions-item> }}</a-descriptions-item>
</a-descriptions> </a-descriptions>
<div <div
v-if="isKeepSupervision" v-if="isKeepSupervision && props.showInfoRecord.piccheck == '待审核'"
style="display: flex; justify-content: right; margin-top: 10px; gap: 10px" style="display: flex; justify-content: right; margin-top: 10px; gap: 10px"
> >
<a-button <a-button type="primary" @click="funCheckCxjgPic"> </a-button>
v-if="props.showInfoRecord.piccheck == '待审核'"
type="primary"
@click="funCheckCxjgPic"
>
继续持续监管
</a-button>
<a-button type="primary" @click="moveInIllegalSubejctOpen = true"> <a-button type="primary" @click="moveInIllegalSubejctOpen = true">
转入违法用地 转入违法用地
</a-button> </a-button>

View File

@ -324,10 +324,14 @@
await getTableData(searchParams.value); await getTableData(searchParams.value);
setTimeout(() => { setTimeout(() => {
showInfoId.value = tableData.value[tableData.value.length - 1].Id; showInfoId.value = tableData.value[tableData.value.length - 1].Id;
let index = tableData.value.findIndex((item) => item.Id == showInfoId.value);
showInfoRecord.value = tableData.value[index];
}, 10); }, 10);
return; return;
} else { } else {
showInfoId.value = prevShowDataId.value; showInfoId.value = prevShowDataId.value;
let index = tableData.value.findIndex((item) => item.Id == showInfoId.value);
showInfoRecord.value = tableData.value[index];
} }
} }
async function nextData() { async function nextData() {
@ -344,9 +348,13 @@
await getTableData(searchParams.value); await getTableData(searchParams.value);
setTimeout(() => { setTimeout(() => {
showInfoId.value = tableData.value[0].Id; showInfoId.value = tableData.value[0].Id;
let index = tableData.value.findIndex((item) => item.Id == showInfoId.value);
showInfoRecord.value = tableData.value[index];
}, 10); }, 10);
} else { } else {
showInfoId.value = nextShowDataId.value; showInfoId.value = nextShowDataId.value;
let index = tableData.value.findIndex((item) => item.Id == showInfoId.value);
showInfoRecord.value = tableData.value[index];
} }
} }
// //