| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <view class="container">
- <view class="re-succ-box">
- <image class="re-succ-img" src="https://zhibo.liuniu946.com/img/success.png"></image>
- <view class="re-succ-tit">申请成功</view>
- <view class="re-succ-btn" @click="goBack()">返回首页</view>
- </view>
- </view>
- </template>
- <script>
- import { userinfo } from '@/api/user.js';
- export default {
- data () {
- return {
- // userInfo
- }
- },
- onLoad() {
- this.loadDate()
- // uni.setStorageSync('mystore',this.userInfo.store_info.id);
- },
- methods: {
- loadDate(){
- userinfo({}).then(res=>{
- console.log(123,res.data.store_info.id)
- uni.setStorageSync('mystore',res.data.store_info.id);
- })
- },
- goBack() {
- uni.switchTab({
- url: '/pages/index/index'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- height: 100%;
- }
- .container {
- height: 100%;
- background: #FFFFFF;
- .line-top {
- width: 750rpx;
- height: 20rpx;
- background: #F5F5F5;
- }
- .re-succ-box {
- padding-top: 170rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .re-succ-img {
- width: 362rpx;
- height: 267rpx;
- display: block;
- }
- .re-succ-tit {
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- margin-left: 22rpx;
- }
- .re-succ-btn {
- margin-top: 80rpx;
- width: 464rpx;
- height: 77rpx;
- background: linear-gradient(180deg, #FD4646, #FF3535);
- border-radius: 38rpx;
- font-size: 34rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
- </style>
|