You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.1 KiB

4 years ago
import services from "../../../services/index"
import { IORecords} from '../../../services/baseClass'
4 years ago
Page({
data: {
4 years ago
ioRecord : IORecords,
4 years ago
},
4 years ago
onLoad:async function() {
this.getRecordDetail();
4 years ago
},
4 years ago
//获取审核详情
getRecordDetail : async function(){
const reportID = wx.getStorageSync("auditList/auditList")
let res = await services.API.iORecords.getIORecordByID.request({ID:reportID});
if(res&&res.data){
let record = res.data;
console.log(record)
this.setData({ioRecord:record?record:null});
}
},
4 years ago
/**
* --
*/
onReady() {
},
/**
* --
*/
onShow() {
},
/**
* --
*/
onHide() {
},
/**
* --
*/
onUnload() {
},
/**
* --
*/
onPullDownRefresh() {
},
/**
*
*/
onReachBottom() {
},
/**
*
*/
onShareAppMessage() {
}
})