error.vue 844 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div class="applet-error">
  3. 进入小程序失败,<br>
  4. 可能由于您的网络不佳。<br>
  5. 请尝试重新进入小程序。
  6. </div>
  7. </template>
  8. <script>
  9. import ProductList from "../../components/ProductList";
  10. import { mapState, mapActions } from "vuex";
  11. export default {
  12. head() {
  13. return {
  14. title: "错误",
  15. };
  16. },
  17. data() {
  18. return {
  19. images: [],
  20. list: [],
  21. loading: false, // 加载状态
  22. finished: false, // 是否完成加载
  23. refreshing: false, // 是否正在上拉刷新
  24. };
  25. },
  26. components: {
  27. ProductList,
  28. },
  29. computed: {
  30. ...mapState({
  31. pointInfo: (state) => state.point.pointInfo,
  32. }),
  33. },
  34. mounted() {
  35. },
  36. methods: {
  37. ...mapActions({
  38. getPointInfo: "point/getPointInfo",
  39. }),
  40. },
  41. };
  42. </script>
  43. <style>
  44. </style>