瀏覽代碼

开发者对接

threethousanddream 1 月之前
父節點
當前提交
ceace52aef
共有 1 個文件被更改,包括 9 次插入1 次删除
  1. 9 1
      src/views/system/develop.vue

+ 9 - 1
src/views/system/develop.vue

@@ -39,7 +39,12 @@
         <el-table-column label="申请人" prop="userNickName"></el-table-column>
         <el-table-column label="申请人账号" prop="userId"></el-table-column>
         <el-table-column label="申请时间" prop="createTime"></el-table-column>
-        <el-table-column label="认证信息" prop="userAccount"></el-table-column>
+        <el-table-column label="认证信息">
+          <template v-slot="{row}">
+            <el-button type="text" @click="onShowAuth(row)">{{ row.instType === 1 ? '个人认证' : '企业认证' }}
+            </el-button>
+          </template>
+        </el-table-column>
         <el-table-column label="审核状态">
           <template v-slot="{row}">
             <div class="status-box" v-if="row.status===3">
@@ -141,6 +146,9 @@ let state = reactive({
 onMounted(() => {
   getData()
 })
+const onShowAuth = row => {
+  console.log(row)
+}
 const onApplyBatch = () => {
   state.batchFlag = true
   state.auditForm = {id: '', pass: true, reason: '',}