index.vue 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="content">
  3. <view class="order-icon">
  4. <img src="/static/index/oder-ok.png" alt="">
  5. </view>
  6. <view class="order-text">下单成功</view>
  7. <view class="texts">潮庭工作人员正在为您安排配送</view>
  8. <view class="button" @click="indexTaps">
  9. 返回首页
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. onLoad() {
  20. },
  21. methods: {
  22. indexTaps(){
  23. uni.reLaunch({
  24. url:"/pages/index/index"
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. .content{
  32. text-align: center;
  33. .order-icon{
  34. margin-top: 120rpx;
  35. img{
  36. width: 160rpx;
  37. height: 160rpx;
  38. }
  39. }
  40. .order-text{
  41. color: #222;
  42. font-size: 36rpx;
  43. margin-top: 20rpx;
  44. }
  45. .texts{
  46. font-size: 28rpx;
  47. color: #222;
  48. margin-top: 25rpx;
  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>