|
@@ -34,11 +34,13 @@
|
|
|
|
|
|
const startDate = ref(null)
|
|
const startDate = ref(null)
|
|
const endDate = ref(null)
|
|
const endDate = ref(null)
|
|
|
|
+ const jzId = ref(null)
|
|
|
|
|
|
onLoad((options) =>{
|
|
onLoad((options) =>{
|
|
listIds.value = options.listIds.split(',');
|
|
listIds.value = options.listIds.split(',');
|
|
startDate.value = options.startDate;
|
|
startDate.value = options.startDate;
|
|
endDate.value = options.endDate;
|
|
endDate.value = options.endDate;
|
|
|
|
+ jzId.value = options.jzId;
|
|
getCertInfo()
|
|
getCertInfo()
|
|
})
|
|
})
|
|
|
|
|
|
@@ -50,7 +52,7 @@
|
|
|
|
|
|
function checkUser(item) {
|
|
function checkUser(item) {
|
|
uni.redirectTo({
|
|
uni.redirectTo({
|
|
- url:`/pages/admin/Jiazheng/index?isZijiazheng=true&userIdList=${item.userList.join(',')}&listIds=${listIds.value.join(',')}&startDate=${startDate.value}&endDate=${endDate.value}&from=yibanzhengshuliang`
|
|
|
|
|
|
+ url:`/pages/admin/Jiazheng/index?isZijiazheng=true&userIdList=${item.userList.join(',')}&listIds=${listIds.value.join(',')}&startDate=${startDate.value}&endDate=${endDate.value}&from=yibanzhengshuliang&jzId=${jzId.value}`
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|