hasten.vue 1.7 KB

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