|  |  |  | 
|---|
|  |  |  | <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> | 
|---|
|  |  |  | 
|---|
|  |  |  | 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" | 
|---|
|  |  |  | 
|---|
|  |  |  | /> | 
|---|
|  |  |  | <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> | 
|---|
|  |  |  | 
|---|
|  |  |  | <!--  同意/拒绝 --> | 
|---|
|  |  |  | <el-dialog | 
|---|
|  |  |  | append-to-body | 
|---|
|  |  |  | :title="apprTitle" | 
|---|
|  |  |  | :title="param.status == 2 ? '同意' : '拒绝'" | 
|---|
|  |  |  | :visible.sync="isShowAppr" | 
|---|
|  |  |  | width="480px" | 
|---|
|  |  |  | > | 
|---|
|  |  |  | 
|---|
|  |  |  | handleAppr (val) { | 
|---|
|  |  |  | this.$set(this.param, 'status', val) | 
|---|
|  |  |  | this.isShowAppr = true | 
|---|
|  |  |  | this.$nextTick(() => { | 
|---|
|  |  |  | this.$refs.ruleForm.clearValidate() | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | confirm () { | 
|---|
|  |  |  | console.log('--') | 
|---|