result.vue 2.8 KB

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