hookehuyr

refactor(PosterCheckin): 优化海报生成逻辑并添加TODO注释

移除冗余的空格并添加TODO注释说明未来需要通过ID获取海报信息
优化背景图变化时的海报重新生成逻辑
...@@ -164,6 +164,8 @@ const pageParams = ref({ ...@@ -164,6 +164,8 @@ const pageParams = ref({
164 id: '', 164 id: '',
165 }) 165 })
166 166
167 +// TODO: 有真实数据的时候, 通过ID获取具体地点的海报信息, 赋值currentPosterIndex获取特定的海报
168 +
167 // 图片预览相关 169 // 图片预览相关
168 const previewVisible = ref(false) 170 const previewVisible = ref(false)
169 const previewImages = ref([]) 171 const previewImages = ref([])
......