| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <view class="container">
- <!-- 图片区域 -->
- <img src="../../static/my/shopImg.png" />
- <!-- 文字信息区域 -->
- <view class="msg">您暂未绑定账户,请前往绑定</view>
- <!-- 按钮区域 -->
- <view class="btn" @click="handleBinding">前往绑定</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- },
- methods: {
- // 前往绑定按钮回调
- handleBinding() {
- uni.redirectTo({
- url: '/pages/binding/binding?status=2'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 100vh;
- background-color: #fff;
- img {
- width: 499rpx;
- height: 499rpx;
- }
- .msg {
- font-size: 32rpx;
- font-weight: bold;
- }
- .btn {
- position: absolute;
- bottom: 74rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 690rpx;
- height: 96rpx;
- color: #fff;
- font-size: 32rpx;
- border-radius: 64rpx;
- background-color: #096562;
- }
- }
- </style>
|