WechatOwnerService/pages/repairList/detail/detail.js
2019-12-28 12:03:10 +08:00

21 lines
339 B
JavaScript

const context = require('../../../context/Java110Context.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;
},
})