diff --git a/src/views/driving_inspections/driving_log/drivingLog_info.vue b/src/views/driving_inspections/driving_log/drivingLog_info.vue
index 624d876..1ec768d 100644
--- a/src/views/driving_inspections/driving_log/drivingLog_info.vue
+++ b/src/views/driving_inspections/driving_log/drivingLog_info.vue
@@ -117,6 +117,7 @@
合格
不合格
+
{{item2.REMARK}} |
检查人 |
@@ -131,11 +132,11 @@
/>
检查时间 |
- {{ item1.SIGN_TIME }} |
+ {{ item1.SIGN_TIME }} |
检查照片 |
-
+ |
+ {{data.statusInfo.REVIEW_RESULT === "-1" ? "打回" : "通过"}}详情
基本信息
@@ -170,11 +171,13 @@ const { USER_ID } = route.query;
const data = reactive({
info: {},
certificateList: [],
+ statusInfo: {},
});
const fnGetData = async () => {
if (!USER_ID) return;
const resData = await getPractitionerInfo({ USER_ID });
data.info = resData.pd;
+ data.statusInfo = resData.statusInfo
resData.certificateList.forEach((item) => {
item.ID_PHOTO_FRONT = FILE_URL + item.ID_PHOTO_FRONT;
if (item.ID_PHOTO_BACK) {
@@ -190,6 +193,11 @@ const fnGetData = async () => {
item.ID_PHOTO_BACK = null;
}
});
+ data.certificateList.forEach((item) => {
+ if(!item.ALLOW_QUALIFICATION || item.ALLOW_QUALIFICATION.includes("null")) {
+ item.ALLOW_QUALIFICATION = null;
+ }
+ })
};
fnGetData();
|