You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.1 KiB
Vue

<template>
<view class="tabbar-page page-box" style="position: relative;display: flex;align-items: center;">
<view style="display: flex;flex-direction: column;align-items: center;width: 100%;">
<view>
<image style="width: 200rpx;height: 200rpx;border-radius: 20rpx;" :src="storeDetail.logo_url"></image>
</view>
<view style="margin-top: 20rpx;">
{{ storeDetail.name }}
</view>
</view>
<theTabBar></theTabBar>
</view>
</template>
<script>
import theTabBar from "@/components/the/the-tabbar";
export default {
mixins: [],
components: {
theTabBar
},
data() {
return {
opt: {}
}
},
onLoad(opt) {
this.opt = opt
this.$nextTick(() => {
if (opt.auth_code) {
this.getData()
}
})
},
computed: {
},
async onPullDownRefresh() {
},
//发送给朋友
onShareAppMessage(res) {
},
onReachBottom() {
this.on_reach_bottom = true;
},
onPullDownRefresh() {
},
methods: {
}
}
</script>
<style lang="scss">
// #ifndef H5
.content {
padding-top: calc(44px + var(--status-bar-height));
}
// #endif
</style>