| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <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 ">已提交成为{{gradeText || '合伙人'}}的申请, 请耐心等待系统审核</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- grade: null,
- }
- },
- onShow() {
- },
- onLoad(options) {
- if (options.grade) {
- this.grade = Number(options.grade);
- }
- },
- computed: {
- gradeText() {
- const gradeMap = {
- 1: '创始人',
- 2: '管理人',
- 3: '合伙人',
- 4: '工作室'
- }
- return gradeMap[this.grade] || ''
- },
- },
- 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>
|