12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="pages">
- <view class="tip">
- 正在建设中
- <button type="default" @click="goIndex" class="back-index">返回首页</button>
- </view>
- <view class="hold-status-bar">
- <!-- 占据了状态栏位置 -->
- </view>
- <view class="" style="display: none;">
- <view class="top-img mall">
- <image :src="$getimg + 'usercenter-bg.png'" class="img" mode="scaleToFill"></image>
- <view class="integral">
- <view class="integral-til">我的积分</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- token:'',
- $getimg:this.$getimg,
- params:{
-
- }
-
- }
- },
- onShow() {
- this.token = this.$store.state.token;
- },
- onLoad() {
- },
- methods: {
- goIndex(){
- uni.switchTab({
- url:'../index/index'
- })
- }
- }
- }
- </script>
- <style>
- @import url("./mall.css");
- </style>
|