|
|
@ -2,17 +2,17 @@ |
|
|
|
<el-dialog :visible.sync="visible" :title="dataForm.flag === '1' ? '查看' : '审核'" :close-on-click-modal="false" :close-on-press-escape="false"> |
|
|
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" label-width="120px"> |
|
|
|
<el-form-item label="姓名" prop="name"> |
|
|
|
<el-input v-model="dataForm.name" placeholder="姓名"></el-input> |
|
|
|
<el-input v-model="dataForm.name" placeholder="姓名" disabled></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="身份证" prop="idCard"> |
|
|
|
<el-input v-model="dataForm.idCard" placeholder="身份证"></el-input> |
|
|
|
<el-input v-model="dataForm.idCard" placeholder="身份证" disabled></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="手机号" prop="mobile"> |
|
|
|
<el-input v-model="dataForm.mobile" placeholder="手机号"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="与房主关系" prop="yfzgx"> |
|
|
|
<el-input v-model="dataForm.yfzgx" placeholder="与房主关系"></el-input> |
|
|
|
<el-input v-model="dataForm.mobile" placeholder="手机号" disabled></el-input> |
|
|
|
</el-form-item> |
|
|
|
<!--<el-form-item label="与房主关系" prop="yfzgx">--> |
|
|
|
<!--<el-input v-model="dataForm.yfzgx" placeholder="与房主关系" disabled></el-input>--> |
|
|
|
<!--</el-form-item>--> |
|
|
|
<el-form-item label="照片" prop="imgList"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<label v-for="(item,index) in dataForm.imgList" :key="index"> |
|
|
@ -20,14 +20,14 @@ |
|
|
|
</label> |
|
|
|
</template> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="审核原因" prop="reason"> |
|
|
|
<el-form-item v-if="dataForm.flag === '2'" label="审核原因" prop="reason"> |
|
|
|
<textarea v-model="dataForm.reason" placeholder="请输入审核原因" class="blacklist-reason"></textarea> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<template slot="footer"> |
|
|
|
<el-button @click="visible = false">{{ $t('cancel') }}</el-button> |
|
|
|
<el-button type="danger" @click="dataFormSubmitHandle('2')">{{ $t('checkBTGBtn') }}</el-button> |
|
|
|
<el-button type="primary" @click="dataFormSubmitHandle('1')">{{ $t('checkTGBtn') }}</el-button> |
|
|
|
<el-button v-if="dataForm.flag === '2'" type="danger" @click="dataFormSubmitHandle('2')">{{ $t('checkBTGBtn') }}</el-button> |
|
|
|
<el-button v-if="dataForm.flag === '2'" type="primary" @click="dataFormSubmitHandle('1')">{{ $t('checkTGBtn') }}</el-button> |
|
|
|
</template> |
|
|
|
<el-dialog :visible.sync="dialogVisible" :modal="false"> |
|
|
|
<img width="100%" :src="dialogImageUrl" alt=""> |
|
|
|