result.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 src="/static/icon/Vector (1).png" mode=""></image>
  9. <view style="font-size: 16px;">审核驳回</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 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" >
  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. id:'',
  33. remark:'',
  34. type:'',
  35. }
  36. },
  37. onShow() {
  38. },
  39. async onLoad(e) {
  40. // let options = JSON.parse(e.data);
  41. // 工号/合伙人还是工作室/驳回内容/审核状态/等级/机构来源
  42. if(e){
  43. this.id=e.id
  44. this.remark= e.remark //驳回内容
  45. this.type= e.type//合伙人1 工作室2 团队3
  46. }
  47. },
  48. onShow() {},
  49. methods: {
  50. async resubmit(){
  51. if(this.type==1){
  52. uni.redirectTo({
  53. url: "/pages/index/applypartner?id="+this.id
  54. })
  55. }
  56. if(this.type==2){
  57. uni.redirectTo({
  58. url: "/pages/index/applystudio?id="+this.id
  59. })
  60. }
  61. if(this.type==3){
  62. uni.redirectTo({
  63. url: "/pages/index/applyteam?id="+this.id
  64. })
  65. }
  66. }
  67. }
  68. }
  69. </script>
  70. <style lang="scss" scoped>
  71. page{
  72. background: #fff;
  73. }
  74. .assets {
  75. color: #333333;
  76. text-align: center;
  77. font-size: 16px;
  78. text{
  79. font-size: 13px;
  80. color: #666666;
  81. }
  82. image{
  83. display: inline-block;
  84. width:52px;
  85. height:52px
  86. }
  87. }
  88. .bottom-button{
  89. margin-top: 40px;
  90. text{
  91. display: inline-block;
  92. border-radius: 31px 31px 31px 31px;
  93. width: 40%;
  94. font-size: 16px;
  95. height: 40px;
  96. line-height:40px;
  97. text-align: center;
  98. }
  99. text:first-child{
  100. border: 1px solid #2D6DFF;
  101. color: #2D6DFF;
  102. }
  103. text:last-child{
  104. color: #FFFFFF;
  105. background: linear-gradient( 133deg, #2DD9FF 0%, #2D6DFF 100%);
  106. }
  107. }
  108. </style>