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.
25 lines
691 B
25 lines
691 B
import {getUnsatisfiedMattersDetailInfo} from "../../../../../utils/statisticsApi";
|
|
|
|
Page({
|
|
data: {
|
|
detail: {},
|
|
unsatisfiedHisCount: {},
|
|
followUpRecordDetails: {},
|
|
id: {}
|
|
},
|
|
onLoad(options) {
|
|
this.setData({
|
|
id: JSON.parse(decodeURIComponent(options.id))
|
|
})
|
|
this.getData()
|
|
},
|
|
getData() {
|
|
getUnsatisfiedMattersDetailInfo(this.data.id).then(({data}) =>{
|
|
this.setData({
|
|
detail: data.unsatisfiedMattersModel,
|
|
unsatisfiedHisCount: data.unsatisfiedHisCount,
|
|
followUpRecordDetails: data.followUpRecordDetails
|
|
})
|
|
})
|
|
}
|
|
})
|