reject.vue 2.1 KB

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