jiangping
2024-08-22 26ee9f01a9c27a671f8d39f42e4e19c5c3e7c6b5
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('--')