mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
338 B
JavaScript
24 lines
338 B
JavaScript
import Page from '../../common/page';
|
|
import AreaList from './area';
|
|
|
|
Page({
|
|
data: {
|
|
areaList: {},
|
|
loading: true,
|
|
value: 330302
|
|
},
|
|
|
|
onShow() {
|
|
setTimeout(() => {
|
|
this.setData({
|
|
loading: false,
|
|
areaList: AreaList
|
|
});
|
|
}, 1500);
|
|
},
|
|
|
|
onChange(event) {
|
|
console.log(event);
|
|
}
|
|
});
|