import { getDetail } from "../../api/index" Page({ /** * 页面的初始数据 */ data: { id:"", detail: {} }, /** * 生命周期函数--监听页面加载 */ onLoad(options) { this.setData({ id: options.id }) this.getDetail() }, getDetail () { const para = { id: this.data.id } getDetail(para).then(res => { this.setData({ detail: res.data }) }).catch(err => { console.log(err) }) } })