38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
var a;
|
|
(a = getApp()),
|
|
Page({
|
|
data: { serviceSumCount: 0, serviceSumMoney: 0 },
|
|
onLoad: function (a) {
|
|
this.getDetail(a.orderid);
|
|
},
|
|
getDetail: function (t) {
|
|
var e = this,
|
|
o = { orderid: t };
|
|
a.getdata(o, "cpcxid").then((a) => {
|
|
if ((console.log("回调数据:", a), a)) {
|
|
e.setData({ cardata: a.data, orderid: t });
|
|
var o = JSON.parse(a.data.record);
|
|
console.log(o), e.setData({ records: o.retdata });
|
|
}
|
|
});
|
|
},
|
|
onReady: function () {},
|
|
onShow: function () {},
|
|
onHide: function () {},
|
|
onUnload: function () {},
|
|
onPullDownRefresh: function () {},
|
|
onReachBottom: function () {},
|
|
onShareAppMessage: function () {
|
|
return {
|
|
title: this.data.cardata.car + "车牌查询报告",
|
|
path: "/packageA/pages/cpcx/carcxjl?orderid=" + this.data.orderid,
|
|
};
|
|
},
|
|
onShareTimeline: function () {
|
|
return {
|
|
title: this.data.cardata.car + "车牌查询报告",
|
|
path: "/packageA/pages/cpcx/carcxjl?orderid=" + this.data.orderid,
|
|
};
|
|
},
|
|
});
|