WechatOwnerService/pages/repairList/detail/detail.js
2019-12-18 10:02:07 +08:00

22 lines
407 B
JavaScript

/** index.js **/
const { appInfo, urlInfo } = require("../../../config/config.js");
const util = require('../../../utils/util.js');
//获取app实例
const app = getApp();
Page({
data: {
obj:{}
},
onLoad: function (e) {
let that = this
console.log(JSON.parse(e.item),99999)
this.setData({
obj: JSON.parse(e.item)
})
},
onShow: function () {
let that = this;
},
})