reject.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <!-- 驳回 -->
  2. <template>
  3. <view class="register">
  4. <view class="register_li">
  5. <img class="register_li_t" src="@/images/Version3.0/img_xgzl_zgty.png">
  6. <view class="register_li_m">
  7. <text>您提交申请被驳回</text>
  8. <text>驳回原因为:{{infoData}}</text>
  9. </view>
  10. </view>
  11. <view class="sub_btn" @click="againSubmit()">重新申请</view>
  12. </view>
  13. </template>
  14. <script>
  15. import {} from '@/api/index.js'
  16. import { config } from '@/api/request/config.js'
  17. export default {
  18. props:{
  19. infoData:{}
  20. },
  21. data() {
  22. return {
  23. form:{
  24. name:'',
  25. },
  26. }
  27. },
  28. onLoad(option) {
  29. },
  30. onShow(){
  31. },
  32. methods:{
  33. //重新提交
  34. againSubmit(){
  35. uni.redirectTo({
  36. url: '/pages_supplier/register/register?pageStatus=1',
  37. });
  38. },
  39. },
  40. mounted(){
  41. },
  42. }
  43. </script>
  44. <style lang="stylus" scoped>
  45. .register{
  46. height:100%;
  47. width:100%;
  48. display flex
  49. flex-direction column;
  50. //padding-bottom: 220rpx;
  51. .register_li{
  52. background #fff;
  53. border-radius:20rpx;
  54. margin:20rpx 20rpx 0;
  55. padding:20rpx 0;
  56. box-sizing: border-box;
  57. .register_li_t{
  58. width:204rpx;
  59. height:200rpx;
  60. margin: 125rpx 0 0 258rpx;
  61. }
  62. .register_li_m{
  63. margin-bottom: 60rpx;
  64. text-align: left;
  65. padding: 0 50rpx;
  66. box-sizing: border-box;
  67. >text{
  68. display: block;
  69. }
  70. >text:nth-child(1){
  71. font-size: 28rpx;
  72. font-family: PingFang SC;
  73. font-weight: 500;
  74. color: #333333;
  75. line-height: 28rpx;
  76. margin-bottom: 24rpx;
  77. text-align: center;
  78. margin-top: 42rpx;
  79. }
  80. >text:nth-child(2){
  81. font-size: 28rpx;
  82. font-family: PingFang SC;
  83. font-weight: 500;
  84. color: #333333;
  85. line-height: 48rpx;
  86. margin-top: 48rpx;
  87. }
  88. }
  89. }
  90. /* 按钮 */
  91. .sub_btn{
  92. width: 650rpx;
  93. height: 100rpx;
  94. background: #0183FA;
  95. border-radius: 20rpx;
  96. font-size: 28rpx;
  97. font-family: PingFang SC;
  98. font-weight: 500;
  99. color: #FFFFFF;
  100. line-height: 100rpx;
  101. text-align: center;
  102. margin-left: 50rpx;
  103. position: fixed;
  104. bottom:30rpx;
  105. z-index: 1000;
  106. }
  107. }
  108. /deep/.input-value-border{
  109. display :none !important;
  110. }
  111. </style>