- VoiceController: Map.of() -> Collections.singletonMap() 兼容 Java 8 - ExploreController: 补齐 takeoutService.roll() 缺失的 taste/priceRange/allergies 参数 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
Page({
|
|
data: { items: [] },
|
|
onShow() { this.loadRecords(); },
|
|
loadRecords() {
|
|
const history = wx.getStorageSync('box_history') || [];
|
|
this.setData({ items: history.reverse() });
|
|
}
|
|
});
|