gukai
parent
0b4b3136aa
commit
abeedca86c
@ -0,0 +1,78 @@
|
|||||||
|
<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>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import theTabBar from "@/components/the/the-tabbar";
|
||||||
|
export default {
|
||||||
|
mixins: [],
|
||||||
|
components: {
|
||||||
|
theTabBar
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onLoad(opt) {
|
||||||
|
uni.hideTabBar({
|
||||||
|
animation: true,
|
||||||
|
success: function (res) {
|
||||||
|
console.log(res); // { "success": true}
|
||||||
|
},
|
||||||
|
fail: function (err) {
|
||||||
|
console.log(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
shareData() {
|
||||||
|
return {
|
||||||
|
path: "/pages/index/index",
|
||||||
|
desc: "多彩时尚,一站式购物体验"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
async onPullDownRefresh() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
//发送给朋友
|
||||||
|
onShareAppMessage(res) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
onReachBottom() {
|
||||||
|
this.on_reach_bottom = true;
|
||||||
|
},
|
||||||
|
onPullDownRefresh() {
|
||||||
|
this.getTemplate();
|
||||||
|
setTimeout(function() {
|
||||||
|
uni.stopPullDownRefresh();
|
||||||
|
}, 200);
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
// #ifndef H5
|
||||||
|
.content {
|
||||||
|
padding-top: calc(44px + var(--status-bar-height));
|
||||||
|
}
|
||||||
|
|
||||||
|
// #endif
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue