applicationResult.vue 812 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 ">已提交成为%升级等级%的申请, 请等待耐心等待系统审核</text>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. }
  15. },
  16. onShow() {
  17. },
  18. onLoad() {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. page {
  26. background-color: #fff;
  27. }
  28. image {
  29. margin-top: 100rpx;
  30. width: 100rpx;
  31. height: 100rpx;
  32. }
  33. .title {
  34. font-size: 40rpx;
  35. color: #333;
  36. font-weight: bold;
  37. margin-top: 30rpx;
  38. margin-bottom: 12rpx;
  39. }
  40. .msg {
  41. font-size: 28rpx;
  42. color: #666;
  43. padding: 0 160rpx;
  44. box-sizing: border-box;
  45. text-align: center;
  46. }
  47. </style>