paySuccess.vue 533 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="content">
  3. <image src="../../static/images/pay.png" />
  4. <text class="tip">付款成功</text>
  5. <view class="item">
  6. <text>南昌交通学院</text>
  7. </view>
  8. <button @click="toOrder">查询订单</button>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {};
  15. },
  16. methods: {
  17. //查询订单列表
  18. toOrder() {
  19. uni.redirectTo({ url: "/pages/order/order" });
  20. },
  21. },
  22. };
  23. </script>
  24. <style lang="scss">
  25. @import url("./css/paySuccess.min.css");
  26. </style>