|  |  | 
 |  |  |             <el-input  type="textarea" rows="5" v-model="form.auditRemark" placeholder="请输入认证审核备注" v-trim/> | 
 |  |  |           </el-form-item> | 
 |  |  |         </el-form> | 
 |  |  |         <el-button @click="checkDo(2)" type="primary" class="status-red">同意</el-button> | 
 |  |  |         <el-button  @click="checkDo(3)" type="danger" >拒绝</el-button> | 
 |  |  |         <el-button @click="checkDo(2)" :loading="dealing" type="primary" class="status-red">同意</el-button> | 
 |  |  |         <el-button  @click="checkDo(3)" :loading="dealing" type="danger" >拒绝</el-button> | 
 |  |  |       </div> | 
 |  |  |     </div> | 
 |  |  |   </GlobalWindow> | 
 |  |  | 
 |  |  | import GlobalWindow from '@/components/common/GlobalWindow' | 
 |  |  | import BaseOpera from '@/components/base/BaseOpera' | 
 |  |  | import { getById } from '@/api/business/member' | 
 |  |  | import { fetchList as renzhengList,audit } from '@/api/business/identityInfo' | 
 |  |  | import { fetchList as renzhengList, audit } from '@/api/business/identityInfo' | 
 |  |  | export default { | 
 |  |  |   components: { | 
 |  |  |     GlobalWindow | 
 |  |  | 
 |  |  |   extends: BaseOpera, | 
 |  |  |   data () { | 
 |  |  |     return { | 
 |  |  |       dealing: false, | 
 |  |  |       form: { | 
 |  |  |         id: null, | 
 |  |  |         auditRemark: null | 
 |  |  | 
 |  |  |       activeTabs: 0, | 
 |  |  |       type: 0, | 
 |  |  |       info: {}, | 
 |  |  |       pageSize: 10, | 
 |  |  |       page: 1, | 
 |  |  |       total: 0, | 
 |  |  |       tableData: {}, | 
 |  |  |       tableData1: {}, | 
 |  |  |       tableData2: [], | 
 |  |  |       page0: 1, | 
 |  |  |       page1: 1, | 
 |  |  |       loading: false, | 
 |  |  |       export0: false, | 
 |  |  |       searchForm: { | 
 |  |  |         type: 0, | 
 |  |  |         startTime: null, | 
 |  |  |         endTime: null, | 
 |  |  |         optType: null, | 
 |  |  |         acceptMemberId: -1, | 
 |  |  |         releaseMemberId: -1, | 
 |  |  |         transactionNo: null | 
 |  |  |       } | 
 |  |  |       loading: false | 
 |  |  |     } | 
 |  |  |   }, | 
 |  |  |   methods: { | 
 |  |  |     open (title, row) { | 
 |  |  |       this.title = title | 
 |  |  |       this.visible = true | 
 |  |  |       this.activeTabs = 0 | 
 |  |  |       this.type = 0 | 
 |  |  |       this.page0 = 1 | 
 |  |  |       this.pageSize = 10 | 
 |  |  |       this.tableData = {} | 
 |  |  |       this.tableData1 = {} | 
 |  |  |       this.tableData2 = [] | 
 |  |  |       this.id = row.id | 
 |  |  |       this.form.id = this.id | 
 |  |  |       this.form.auditRemark =null | 
 |  |  |       this.memberId = row.memberId | 
 |  |  |       this.searchForm = { | 
 |  |  |         type: 0, | 
 |  |  |         startTime: null, | 
 |  |  |         endTime: null, | 
 |  |  |         optType: null, | 
 |  |  |         acceptMemberId: -1, | 
 |  |  |         releaseMemberId: -1, | 
 |  |  |         transactionNo: null | 
 |  |  |       } | 
 |  |  |       this.getData() | 
 |  |  |     }, | 
 |  |  |     getData () { | 
 |  |  | 
 |  |  |  | 
 |  |  |     }, | 
 |  |  |     checkDo (status) { | 
 |  |  |       console.log( this.$refs.formCheck.length) | 
 |  |  |       console.log(this.$refs.formCheck.length) | 
 |  |  |       this.$refs.formCheck.validate((valid) => { | 
 |  |  |         if (!valid) { | 
 |  |  |           return | 
 |  |  |         } | 
 |  |  |         this.$dialog.actionConfirm('您确认【' + (status === 3 ? '拒绝' : '同意') + '】该申请吗?','操作确认') | 
 |  |  |         this.$dialog.actionConfirm('您确认【' + (status === 3 ? '拒绝' : '同意') + '】该申请吗?', '操作确认') | 
 |  |  |           .then(() => { | 
 |  |  |             this.dealing = true | 
 |  |  |             audit({ | 
 |  |  | 
 |  |  |               auditRemark: this.form.auditRemark | 
 |  |  |             }) | 
 |  |  |               .then(res => { | 
 |  |  |                 this.$tip.apiSuccess('处理成功') | 
 |  |  |                 this.$tip.apiSuccess('操作成功') | 
 |  |  |                 this.getData() | 
 |  |  |                 this.isShowProblem = false | 
 |  |  |                 this.$emit('success') | 
 |  |  |               }) | 
 |  |  |               .catch(e => { | 
 |  |  |                 this.$tip.apiFailed(e) | 
 |  |  |               }) | 
 |  |  |               .finally(() => { | 
 |  |  |                 this.dealing = false |