|
|
|
@ -251,7 +251,8 @@
|
|
|
|
|
</a-descriptions>
|
|
|
|
|
</a-tab-pane>
|
|
|
|
|
</a-tabs>
|
|
|
|
|
<div style="height: 40px;" v-if="props.isAuditList">
|
|
|
|
|
<div style="height: 80px;" v-if="props.isAuditList">
|
|
|
|
|
<a-input v-model:value="biaozhuyijian" style="margin-bottom: 10px;"/>
|
|
|
|
|
<a-button type="primary" style="margin-right: 15px;" @click="changeBiaozhu(1)">通过</a-button>
|
|
|
|
|
<a-button type="primary" danger @click="changeBiaozhu(2)">疑似问题</a-button>
|
|
|
|
|
</div>
|
|
|
|
@ -340,6 +341,7 @@
|
|
|
|
|
const activeKey = ref('1');
|
|
|
|
|
const geomsList = ref();
|
|
|
|
|
const imageList = ref([]);
|
|
|
|
|
const biaozhuyijian = ref('')
|
|
|
|
|
console.log('props', props.showInfoData);
|
|
|
|
|
watch(
|
|
|
|
|
() => props.showInfoData,
|
|
|
|
@ -631,7 +633,7 @@
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
const changeBiaozhu = (type: number) => {
|
|
|
|
|
UpdateDroneCaseInfoBiaoZhu({id: props.showInfoData.id, biaozhu: type}).then(res => {
|
|
|
|
|
UpdateDroneCaseInfoBiaoZhu({id: props.showInfoData.id, biaozhu: type, biaozhuyijian: biaozhuyijian.value}).then(res => {
|
|
|
|
|
message.success('标注成功')
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
@ -703,7 +705,7 @@
|
|
|
|
|
}
|
|
|
|
|
::v-deep .ant-tabs .ant-tabs-content-holder {
|
|
|
|
|
overflow: auto;
|
|
|
|
|
height: calc(80vh - 40px);
|
|
|
|
|
height: calc(80vh - 80px);
|
|
|
|
|
overflow: auto;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
}
|
|
|
|
|