1234567891011121314151617181920212223242526 |
- //index.js
- //获取应用实例
- const app = getApp()
- Page({
- data: {
- info: {}
- },
- //事件处理函数
- bindViewTap: function () {
- wx.navigateTo({
- url: '../index/index'
- })
- },
- onLoad: function () {
- // 查询信息
- wx.request({
- url: app.globalData.publicUrl + '/api/htyd/config/sh',
- method: "get",
- data: {},
- success: (res) => {
- this.setData({ info: res.data.data })
- }
- })
- },
- })
|