scoreRecord.vue 455 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="box">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. onLoad(opt) {
  12. },
  13. methods: {
  14. goDetail(){
  15. uni.navigateTo({
  16. url:'integralgoodsDetail'
  17. })
  18. }
  19. },
  20. onPullDownRefresh(){
  21. setTimeout(() => {
  22. uni.stopPullDownRefresh(); // 关闭下拉刷新
  23. }, 2000);
  24. }
  25. }
  26. </script>
  27. <style scoped>
  28. .box{
  29. background: #F4F5F7;
  30. min-height: 100vh;
  31. }
  32. </style>