diff --git a/pages.json b/pages.json index 1f2e70b8baee15010ec2c21f7d3ba7e6190bbf85..7c284334b279b439336378503158487db2d6ecd5 100644 --- a/pages.json +++ b/pages.json @@ -1274,7 +1274,7 @@ { "path" : "pages/template/custom-long-list/custom-long-list", "style" : { - "navigationBarTitleText" : "自行实现长列表组件", + "navigationBarTitleText" : "自定义虚拟长列表", "enablePullDownRefresh" : false } } diff --git a/pages/API/get-file-system-manager/get-file-system-manager.uvue b/pages/API/get-file-system-manager/get-file-system-manager.uvue index 0cc90a7772d26d6e04139e53ca7bd5681d332b83..e17bfa8048484f9f2f84a95f9b523101e8774af7 100644 --- a/pages/API/get-file-system-manager/get-file-system-manager.uvue +++ b/pages/API/get-file-system-manager/get-file-system-manager.uvue @@ -78,7 +78,8 @@ const fileManager = uni.getFileSystemManager() fileManager.stat({ - path: `${this.basePath}${this.statFile}`, + // path: `${this.basePath}${this.statFile}`, //USER_DATA_PATH + path: `${this.globalTempPath}${this.statFile}`, //CACHE_PATH recursive: this.recursiveVal, success: (res : StatSuccessResult) => { if (this.logAble) { diff --git a/pages/tabBar/template.uvue b/pages/tabBar/template.uvue index 276ab8eeff91bebd0786743893268ea43202c2c2..a0e2d85db6c62a7071fbf770ebd2097196d159f9 100644 --- a/pages/tabBar/template.uvue +++ b/pages/tabBar/template.uvue @@ -113,7 +113,7 @@ { id: 'custom-long-list', url: 'custom-long-list', - name: '自行实现长列表组件', + name: '自定义虚拟长列表', open: false, pages: [] as Page[], }, diff --git a/pages/template/custom-long-list/custom-long-list.uvue b/pages/template/custom-long-list/custom-long-list.uvue index 638bc9c1ce3e5132a8ebb3325d97ca2ff59a7e30..35b53e2bcdeb73edf82ee0057a3e5b92a872b428 100644 --- a/pages/template/custom-long-list/custom-long-list.uvue +++ b/pages/template/custom-long-list/custom-long-list.uvue @@ -1,7 +1,8 @@