在pages目录下新建home.wpy文件
    在onLoad生命周期里获取数据,关键代码如下

    1. laodData (){
    2. wx.showLoading({title:"加载中..."})
    3. //通过setTimeout 模拟异步请求
    4. setTimeout(() => {
    5. this.myFund = FUNDS_DATA;
    6. this.$apply();
    7. wx.hideLoading()
    8. }, 1000);
    9. }
    10. onLoad() {
    11. this.laodData();
    12. }