applicationResult.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view class="page">
  3. <view class="dis f-c a-c ">
  4. <image src="/static/applicationSuccess.png" mode=""></image>
  5. <text class="title">申请成功</text>
  6. <text class="msg ">已提交成为{{gradeText || '合伙人'}}的申请, 请耐心等待系统审核</text>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. grade: null,
  15. }
  16. },
  17. onShow() {
  18. },
  19. onLoad(options) {
  20. if (options.grade) {
  21. this.grade = Number(options.grade);
  22. }
  23. },
  24. computed: {
  25. gradeText() {
  26. const gradeMap = {
  27. 1: '创始人',
  28. 2: '管理人',
  29. 3: '合伙人',
  30. 4: '工作室'
  31. }
  32. return gradeMap[this.grade] || ''
  33. },
  34. },
  35. methods: {
  36. }
  37. }
  38. </script>
  39. <style lang="scss" scoped>
  40. page {
  41. background-color: #fff;
  42. }
  43. image {
  44. margin-top: 100rpx;
  45. width: 100rpx;
  46. height: 100rpx;
  47. }
  48. .title {
  49. font-size: 40rpx;
  50. color: #333;
  51. font-weight: bold;
  52. margin-top: 30rpx;
  53. margin-bottom: 12rpx;
  54. }
  55. .msg {
  56. font-size: 28rpx;
  57. color: #666;
  58. padding: 0 160rpx;
  59. box-sizing: border-box;
  60. text-align: center;
  61. }
  62. </style>