index.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="content">
  3. <view class="order-icon">
  4. <img src="/static/index/subscribe.png" alt="">
  5. </view>
  6. <view class="order-text">预约成功</view>
  7. <view class="order-text">
  8. 潮庭工作人员将在9:00上班后和您联系,请保持手机通畅
  9. </view>
  10. <view class="button" @click="indexTaps">
  11. 返回首页
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. onLoad() {
  22. },
  23. methods: {
  24. indexTaps(){
  25. uni.reLaunch({
  26. url:"/pages/index/index"
  27. })
  28. }
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. .content{
  34. text-align: center;
  35. .order-icon{
  36. margin-top: 120rpx;
  37. img{
  38. width: 160rpx;
  39. height: 160rpx;
  40. }
  41. }
  42. .order-text{
  43. color: #222;
  44. font-size: 36rpx;
  45. // margin-top: 20rpx;
  46. width: 600rpx;
  47. margin: 20rpx auto 0 auto;
  48. line-height: 50rpx;
  49. }
  50. .button{
  51. width: 320rpx;
  52. height: 80rpx;
  53. background: #222222;
  54. border-radius: 40rpx;
  55. color: #fff;
  56. font-size: 32rpx;
  57. line-height: 80rpx;
  58. margin: 120rpx auto;
  59. }
  60. }
  61. </style>