|
|
@@ -54,12 +54,12 @@
|
|
|
<div style="font-weight: 700">{{item.status_name}}--{{item.is_auto?'系统自动审核':'人工审核'}}</div>
|
|
|
</el-col>
|
|
|
<el-col :span="10" :offset="2">
|
|
|
- <div>{{item.nickname}} {{item.audit_date}}</div>
|
|
|
+ <div><span class="lblue point" @click="openUser(item.audit_uid)">{{item.nickname}}</span> {{item.audit_date}}</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-row style="margin-top: 10px" v-if="item.status == '3'">
|
|
|
+ <el-row style="margin-top: 10px">
|
|
|
<el-col :span="12">
|
|
|
- <div style="font-weight: 700">拒绝理由:</div>
|
|
|
+ <div style="font-weight: 700">消息通知:</div>
|
|
|
<div style="padding: 5px">
|
|
|
{{item.audit_data.reason || ''}}
|
|
|
</div>
|
|
|
@@ -213,6 +213,11 @@
|
|
|
a.click();
|
|
|
|
|
|
},
|
|
|
+ openUser(uid){
|
|
|
+ window.open(
|
|
|
+ this.$store.state.domainConfig.siteUrl + `/rooter/user/${uid}`
|
|
|
+ );
|
|
|
+ }
|
|
|
},
|
|
|
created() {
|
|
|
this.ids = this.getUrlParam("id");
|