index.vue 869 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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="button" @click="indexTaps">
  8. 返回首页
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. }
  17. },
  18. onLoad() {
  19. },
  20. methods: {
  21. indexTaps(){
  22. uni.reLaunch({
  23. url:"/pages/index/index"
  24. })
  25. }
  26. }
  27. }
  28. </script>
  29. <style lang="scss">
  30. .content{
  31. text-align: center;
  32. .order-icon{
  33. margin-top: 120rpx;
  34. img{
  35. width: 160rpx;
  36. height: 160rpx;
  37. }
  38. }
  39. .order-text{
  40. color: #222;
  41. font-size: 36rpx;
  42. margin-top: 20rpx;
  43. }
  44. .button{
  45. width: 320rpx;
  46. height: 80rpx;
  47. background: #222222;
  48. border-radius: 40rpx;
  49. color: #fff;
  50. font-size: 32rpx;
  51. line-height: 80rpx;
  52. margin: 120rpx auto;
  53. }
  54. }
  55. </style>