reject.vue 2.2 KB

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