// pages/organizeDetail/index.js const $$ = require('../../utils/util'); function getByIdApi(param) { return $$.request({ url: 'ctUnit/getById', type: 'get', submitData: param || {}, service: 'cust' }) } Page({ /** * 页面的初始数据 */ data: { data: {}, }, // 获取纠纷案件详情 async getById(data) { $$.showLoading(); const res = await getByIdApi({ id: data.id }); $$.hideLoading(); if (res.type) { let data = res.data || {}; this.setData({ data }); } }, /** * 生命周期函数--监听页面加载 */ onLoad(options) { this.getById(options); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady() { }, })