hasten.vue 1.8 KB

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