result.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <view style="height: 100%;background: #fff;">
  3. <!-- 公共组件-每个页面必须引入 -->
  4. <public-module></public-module>
  5. <view style="padding:95px 25px;">
  6. <view class="assets" >
  7. <image v-if="!id" src="/static/icon/Vector.png" mode=""></image>
  8. <image v-if="id" src="/static/icon/Vector (1).png" mode=""></image>
  9. <view style="font-size: 16px;">{{!id?'申请成功':'审核驳回'}}</view>
  10. <!-- <view style="font-size: 31px;font-weight: bold;margin-top:5px">{{MoneyData.cashFee}}</view> -->
  11. <text v-if="!id" style="font-size: 15px;">已提交合伙人/工作室/团队注册申请,请等待耐心等待系统审核</text>
  12. <text v-if="id" style="font-size: 15px;">请核对并修改以下信息后,再重新提交。</text>
  13. <view v-if="remark" style="padding: 15px;background: #F9F9F9;font-size: 15px;text-align: left;
  14. color: #666666;border-radius: 3px 3px 3px 3px;margin-top: 15px;">
  15. {{remark}}
  16. </view>
  17. <view class="bottom-button dis j-s" v-if="id" >
  18. <text>取消</text>
  19. <text @click="resubmit">重新提交</text>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. MoneyData: {},
  30. id:'',
  31. remark:'',
  32. type:'',
  33. level:'',
  34. deptSource:'',
  35. }
  36. },
  37. onShow() {
  38. },
  39. async onLoad(e) {
  40. // 工号/合伙人还是工作室/驳回内容/审核状态/等级/机构来源
  41. if(e){
  42. this.id=e.id
  43. this.remark=e.remark //驳回内容
  44. this.type=e.type //合伙人1 工作室2 团队3
  45. // this.level=e.level?e.level:'' //type为1,传合伙人等级
  46. // this.deptSource=e.deptSource?e.deptSource:'' //type为2,传机构来源
  47. }
  48. },
  49. onShow() {},
  50. methods: {
  51. async resubmit(){
  52. if(this.type==1){
  53. uni.redirectTo({
  54. url: "/pages/index/applypartner?id="+this.id
  55. })
  56. }
  57. if(this.type==2){
  58. uni.redirectTo({
  59. url: "/pages/index/applystudio?id="+this.id
  60. })
  61. }
  62. if(this.type==3){
  63. uni.redirectTo({
  64. url: "/pages/index/applyteam?id="+this.id
  65. })
  66. }
  67. }
  68. }
  69. }
  70. </script>
  71. <style lang="scss" scoped>
  72. page{
  73. background: #fff;
  74. }
  75. .assets {
  76. color: #333333;
  77. text-align: center;
  78. font-size: 16px;
  79. text{
  80. font-size: 13px;
  81. color: #666666;
  82. }
  83. image{
  84. display: inline-block;
  85. width:52px;
  86. height:52px
  87. }
  88. }
  89. .bottom-button{
  90. margin-top: 40px;
  91. text{
  92. display: inline-block;
  93. border-radius: 31px 31px 31px 31px;
  94. width: 40%;
  95. font-size: 16px;
  96. height: 40px;
  97. line-height:40px;
  98. text-align: center;
  99. }
  100. text:first-child{
  101. border: 1px solid #2D6DFF;
  102. color: #2D6DFF;
  103. }
  104. text:last-child{
  105. color: #FFFFFF;
  106. background: linear-gradient( 133deg, #2DD9FF 0%, #2D6DFF 100%);
  107. }
  108. }
  109. </style>