hasten.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <!-- 催办 -->
  2. <template>
  3. <view class="register">
  4. <view class="register_li">
  5. <img class="register_li_t" :src="imagesUrl('supplier/icon_xgzl_shz.png')">
  6. <view class="register_li_m">您提交的信息正在审核中,请耐心等待</view>
  7. </view>
  8. <view class="sub_btn" @click="hasten()">立即催办</view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. form:{
  16. name:'',
  17. },
  18. }
  19. },
  20. onLoad(option) {
  21. },
  22. onShow(){
  23. },
  24. methods: {
  25. hasten(){
  26. uni.showToast({
  27. title: '催办成功!',
  28. icon:"none",
  29. mask:true,
  30. duration: 2000
  31. });
  32. },
  33. }
  34. }
  35. </script>
  36. <style lang="stylus" scoped>
  37. .register{
  38. height:100%;
  39. width:100%;
  40. display flex
  41. flex-direction column;
  42. //padding-bottom: 220rpx;
  43. .register_li{
  44. background #fff;
  45. border-radius:20rpx;
  46. margin:20rpx 20rpx 0;
  47. padding:20rpx 0;
  48. box-sizing: border-box;
  49. .register_li_t{
  50. width:156rpx;
  51. height:200rpx;
  52. margin: 128rpx 0 0 276rpx;
  53. }
  54. .register_li_m{
  55. margin-top: 80rpx;
  56. margin-bottom: 116rpx;
  57. text-align: center;
  58. font-size: 28rpx;
  59. font-family: PingFang SC;
  60. font-weight: 500;
  61. color: #333333;
  62. line-height: 28rpx;
  63. }
  64. }
  65. /* 按钮 */
  66. .sub_btn{
  67. width: 650rpx;
  68. height: 100rpx;
  69. background: #FFAE00;
  70. border-radius: 20rpx;
  71. font-size: 28rpx;
  72. font-family: PingFang SC;
  73. font-weight: 500;
  74. color: #FFFFFF;
  75. line-height: 100rpx;
  76. text-align: center;
  77. margin-left: 50rpx;
  78. position: fixed;
  79. bottom:30rpx;
  80. z-index: 1000;
  81. }
  82. }
  83. /deep/.input-value-border{
  84. display :none !important;
  85. }
  86. </style>