@@ -60,7 +60,7 @@ export default {
},
computed: {
isDeath() {
- return this.detail.status === '1'
+ return this.detail.status === '1' || !this.detail.can_click
isLogin() {
return this.detail.user_info
@@ -58,7 +58,7 @@ export default {
})
btnDisabled(item) {
- return item.btn_name !== "申请认证"
+ return item.btn_name !== "申请认证" || !item.can_click
async getList() {
let res = await this.$post('/api/cert/getList', {page})