This commit is contained in:
2026-07-02 18:49:48 +08:00
parent c3b858c03c
commit 0ec81d2965
4 changed files with 4 additions and 31 deletions
-1
View File
@@ -1 +0,0 @@
["photo1.png"]
Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 B

After

Width:  |  Height:  |  Size: 845 B

+3 -29
View File
@@ -100,14 +100,14 @@
import file from '@system.file'
import router from '@system.router'
// 照片清单配置文件(放在 common/ 下方便维护)
const PHOTO_LIST_PATH = '/common/photo-list.json'
// 照片文件名列表 —— 新增照片时在这里添加即可
const PHOTO_NAMES = ['photo1.png']
const BUNDLED_PHOTOS_DIR = '/common/photos/'
const DEVICE_PHOTOS_DIR = 'internal://files/photos/'
export default {
private: {
photoNames: [],
photoNames: PHOTO_NAMES,
copying: false,
currentName: '',
currentIndex: 0,
@@ -116,32 +116,6 @@
result: ''
},
onInit() {
this.loadPhotoList()
},
/**
* 从配置文件读取照片文件名列表
*/
loadPhotoList() {
var self = this
file.readText({
uri: PHOTO_LIST_PATH,
success: function (data) {
try {
self.photoNames = JSON.parse(data.text)
} catch (e) {
self.photoNames = []
console.log('解析 photo-list.json 失败: ' + e.message)
}
},
fail: function (data, code) {
self.photoNames = []
console.log('读取 photo-list.json 失败,错误码: ' + code)
}
})
},
/**
* 开始复制流程
*/
+1 -1
View File
@@ -189,7 +189,7 @@
* 跳转到导入照片页面
*/
goCopy() {
router.push({ uri: 'pages/copy/copy' })
router.push({ uri: '/pages/copy' })
}
}
</script>