1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| import { useDeviceInfo } from './deviceinfo-proxy.js';
| import { useDeviceLocation } from './device-location-proxy.js';
|
| Page({
| behaviors: [useDeviceInfo, useDeviceLocation],
| data: {},
|
| onLoad(options) {
| this.getOpenerEventChannel().on('acceptSceneData', data => {
| if (data) {
| this.setData({
| scene: data.scene,
| });
| }
| });
| },
|
| onReachBottom() {},
| });
|
|