diff --git a/front/src/views/personalCenter/components/MyApply.vue b/front/src/views/personalCenter/components/MyApply.vue index 2b593d2f..508e8bd2 100644 --- a/front/src/views/personalCenter/components/MyApply.vue +++ b/front/src/views/personalCenter/components/MyApply.vue @@ -48,7 +48,8 @@
申请日期:{{ item.createDate || item.startTime }}
-
+ +
过期时间:{{ item.expireDate || '' }}
- + + + @@ -237,9 +240,17 @@ function changeApplyState(item, index) { } } +const cilckRowData = ref({}) +let detailModalTitle = '申请详情'; const showDetail = (item) => { + cilckRowData.value = item; // 西海岸-申请时间过期,提示 if (isXiHaiAn) { + // 西海岸、单兵无人机设备 + if (item.tbDeviceDTO) { + detailModalTitle = item.tbDeviceDTO.name ? item.tbDeviceDTO.name + '申请详情' : '申请详情' + } + console.log('detailModalTitle------------>', detailModalTitle); if (item.expireDate) { let diff = moment().diff(moment(item.expireDate), 'seconds') if (diff > 0) { @@ -251,7 +262,6 @@ const showDetail = (item) => { getByApplyFlag(item.applyFlag).then((res) => { if (res.data.code == 0) { refObj.value = res.data.data - detailsVisible.value = true processDefinitionName.value = item.processDefinitionName businessKey.value = item.businessKey