1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view>
- <ujp-navbar title="开通会员"></ujp-navbar>
- <view class="success">
- <u-icon name="chenggong" custom-prefix="custom-icon" size="180" color="#00B962"></u-icon>
- <view class="text">
- 开通成功
- </view>
- </view>
- <u-button class="to-charge" type="success">前往充电</u-button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- background-color: #fff;
- }
-
- .success{
- padding-top: 45px;
- text-align: center;
- .text{
- margin-top: 20px;
- height: 27px;
- color: #101010;
- font-size: 20px;
- font-weight: 600;
- }
-
- }
- .to-charge{
- margin-top: 52px;
- width: 79.2%;
- height: 44px;
- line-height: 44px;
- border-radius: 50px;
- font-size: 18px;
-
- }
- </style>
|