From 26ee9f01a9c27a671f8d39f42e4e19c5c3e7c6b5 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期四, 22 八月 2024 15:00:11 +0800
Subject: [PATCH] 最新版本

---
 admin/src/views/task/visSubDetail.vue |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/admin/src/views/task/visSubDetail.vue b/admin/src/views/task/visSubDetail.vue
index b9595dc..d8e4b15 100644
--- a/admin/src/views/task/visSubDetail.vue
+++ b/admin/src/views/task/visSubDetail.vue
@@ -5,7 +5,7 @@
         <div class="header">
           <div class="left">
             <div class="h1">{{ cateList[type] }}</div>
-            <div class="time">鎻愪氦鏃堕棿锛歿{ info.createDate }}</div>
+            <div class="time">鎻愪氦鏃堕棿锛歿{ info.createTime }}</div>
           </div>
           <div class="right">{{ statusMap[info.status] }}</div>
         </div>
@@ -68,7 +68,13 @@
               label="璇佷欢绫诲瀷"
               prop="idcardTypeName"
               min-width="80"
-            />
+            >
+              <template slot-scope="{ row }">
+                <span v-if="row.idcardType == 0">韬唤璇�</span>
+                <span v-if="row.idcardType == 1">娓境璇佷欢</span>
+                <span v-if="row.idcardType == 2">鎶ょ収</span>
+              </template>
+            </el-table-column>
             <el-table-column
               label="璇佷欢鍙风爜"
               prop="idCardDecode"
@@ -81,7 +87,7 @@
             />
             <el-table-column label="浜鸿劯鐓х墖" prop="" min-width="80">
               <template slot-scope="{ row }">
-                <el-image :src="row.prefix" :preview-src-list="[row.prefix]">
+                <el-image :src="row.prefix + row.faceImg" :preview-src-list="[row.prefix + row.faceImg]">
                 </el-image>
               </template>
             </el-table-column>
@@ -238,7 +244,7 @@
     <!--  鍚屾剰/鎷掔粷 -->
     <el-dialog
       append-to-body
-      :title="apprTitle"
+      :title="param.status == 2 ? '鍚屾剰' : '鎷掔粷'"
       :visible.sync="isShowAppr"
       width="480px"
     >
@@ -400,6 +406,9 @@
     handleAppr (val) {
       this.$set(this.param, 'status', val)
       this.isShowAppr = true
+      this.$nextTick(() => {
+        this.$refs.ruleForm.clearValidate()
+      })
     },
     confirm () {
       console.log('--')

--
Gitblit v1.9.3