12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <view class="page">
- <view class="dis f-c a-c ">
- <image src="/static/applicationSuccess.png" mode=""></image>
- <text class="title">添加成功</text>
- <text class="msg ">已提交成为%升级等级%的申请, 请等待耐心等待系统审核</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onShow() {
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- background-color: #fff;
- }
- image {
- margin-top: 100rpx;
- width: 100rpx;
- height: 100rpx;
- }
- .title {
- font-size: 40rpx;
- color: #333;
- font-weight: bold;
- margin-top: 30rpx;
- margin-bottom: 12rpx;
- }
- .msg {
- font-size: 28rpx;
- color: #666;
- padding: 0 160rpx;
- box-sizing: border-box;
- text-align: center;
- }
- </style>
|