123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <view class="page">
- <view class="u-flex u-row-center">
- <text class="title">暂未绑定银行卡</text>
- </view>
- <view class="u-flex u-row-center">
- <view class="btn" @click="bangding">
- 绑定银行卡
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- bangding() {
- uni.navigateTo({
- url: "/pagesD/bank-add"
- })
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .page {
- padding: 0 74rpx;
- .title {
- font-size: 40rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- margin-top: 114rpx;
- }
- .btn {
- width: 602rpx;
- height: 96rpx;
- background: #0C66C2;
- border-radius: 20rpx;
- font-size: 36rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 96rpx;
- text-align: center;
- margin-top: 110rpx;
- }
- }
- </style>
|