123456789101112131415161718192021222324252627 |
- const app = getApp()
- var util = require("../../../utils/util.js")
- Page({
- data: {
- },
- onLoad: function (options) {
- this.setData({
- navH: app.globalData.navHeight
- })
- this.getList()
- },
- // 获取列表数据
- getList() {
- util.postData('/college/queryUserScholarshipsLog', {
- openid: app.globalData.openid
- }).then(res => {
- this.setData({
- list: res
- })
- console.log(this.data.list)
- })
- }
- })
|