8 lines
123 B
JavaScript
Raw Normal View History

2025-06-06 15:17:30 +08:00
Page({
data: { webUrl: "" },
onLoad(options) {
this.setData({ webUrl: decodeURIComponent(options.url) });
}
});