Browse Source

no message

linwenxin 5 months ago
parent
commit
84c7232e71
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/packageMine/pages/myWebsit.vue

+ 3 - 1
src/packageMine/pages/myWebsit.vue

@@ -91,7 +91,7 @@ export default {
   data() {
     return {
       refresherTriggered: false,
-      loadStatus: 2,
+      loadStatus: 0,
       pageNum: 1,
       dataList: [],
       keyword: '',
@@ -124,6 +124,7 @@ export default {
     },
 
     async getList() {
+      this.loadStatus = 1
       var { latitude, longitude } = await this.$getLocation()
       this.$api
         .get('/user/apply/websit', {
@@ -132,6 +133,7 @@ export default {
           lng: longitude
         })
         .then(res => {
+          this.loadStatus = 2
           this.refresherTriggered = false
           this.dataList = res.data
         })