You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
529 B
20 lines
529 B
|
3 weeks ago
|
const _app = getApp<IAppOption>()
|
||
|
|
|
||
|
|
Page({
|
||
|
|
data: {},
|
||
|
|
onLoad() {},
|
||
|
|
handleMergePreview() {
|
||
|
|
const mergeComponent = this.selectComponent('#merge')
|
||
|
|
console.log("DEBUGPRINT[224]: index.ts:7: mergeComponent=", mergeComponent)
|
||
|
|
if (mergeComponent) {
|
||
|
|
mergeComponent.mergeImages([
|
||
|
|
{ src: 'https://picsum.photos/400/300', time: '2024-01-01 10:00' },
|
||
|
|
{ src: 'https://picsum.photos/400/301', time: '2024-01-01 12:00' },
|
||
|
|
{ src: 'https://picsum.photos/400/302' },
|
||
|
|
])
|
||
|
|
}
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
export {}
|