35 lines
513 B
JavaScript
35 lines
513 B
JavaScript
var App = getApp();
|
|
|
|
Page({
|
|
|
|
/**
|
|
* 页面的初始数据
|
|
*/
|
|
data: {
|
|
articleData:{}
|
|
},
|
|
|
|
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad: function () {
|
|
wx.showLoading({ title: '加载中' });
|
|
this.get_rule();
|
|
},
|
|
|
|
/**
|
|
* 获取列表
|
|
*/
|
|
get_rule: function () {
|
|
let _this = this;
|
|
App._post_form('footchina/index', {
|
|
}, function(result) {
|
|
wx.hideLoading();
|
|
var rdata = result.data.activity;
|
|
_this.setData({
|
|
articleData: rdata
|
|
})
|
|
});
|
|
}
|
|
}) |