|
@@ -2,7 +2,8 @@
|
|
<div class="page">
|
|
<div class="page">
|
|
<div class="page-top flex flex-col justify-center items-center">
|
|
<div class="page-top flex flex-col justify-center items-center">
|
|
<!-- <img class="logo" :src="supplierInfo.logo" /> -->
|
|
<!-- <img class="logo" :src="supplierInfo.logo" /> -->
|
|
- <div class="name mt-2" v-text="supplierInfo.shopName + '认证记录'"></div>
|
|
|
|
|
|
+ <!-- <div class="name mt-2" v-text="supplierInfo.shopName + '认证记录'"></div> -->
|
|
|
|
+ <div class="name mt-2">认证记录</div>
|
|
</div>
|
|
</div>
|
|
<div class="page-content">
|
|
<div class="page-content">
|
|
<template v-if="clubInfo">
|
|
<template v-if="clubInfo">
|
|
@@ -154,7 +155,7 @@ export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
clubInfo: null,
|
|
clubInfo: null,
|
|
- authId: ''
|
|
|
|
|
|
+ authId: '',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -171,14 +172,14 @@ export default {
|
|
clubUserId: this.clubUserId,
|
|
clubUserId: this.clubUserId,
|
|
})
|
|
})
|
|
|
|
|
|
- if(!result.data.auth) return
|
|
|
|
|
|
+ if (!result.data.auth) return
|
|
|
|
|
|
this.authId = result.data.auth.authId
|
|
this.authId = result.data.auth.authId
|
|
|
|
|
|
const res = await this.$http.api.fetchClubAuthInfoData({
|
|
const res = await this.$http.api.fetchClubAuthInfoData({
|
|
authId: result.data.auth.authId,
|
|
authId: result.data.auth.authId,
|
|
})
|
|
})
|
|
-
|
|
|
|
|
|
+
|
|
this.clubInfo = res.data
|
|
this.clubInfo = res.data
|
|
} catch (error) {
|
|
} catch (error) {
|
|
console.log(error)
|
|
console.log(error)
|
|
@@ -186,7 +187,9 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
onToDeviceList() {
|
|
onToDeviceList() {
|
|
- this.$router.push(`${this.routePrefix}/record/device?authId=${this.authId}`)
|
|
|
|
|
|
+ this.$router.push(
|
|
|
|
+ `${this.routePrefix}/record/device?authId=${this.authId}`
|
|
|
|
+ )
|
|
},
|
|
},
|
|
onEdit() {
|
|
onEdit() {
|
|
this.$router.push(`${this.routePrefix}/record/club/edit`)
|
|
this.$router.push(`${this.routePrefix}/record/club/edit`)
|