|
|
|
|
@ -68,11 +68,12 @@ export default { |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
console.log(this.$route.params); |
|
|
|
|
console.log('query', this.$route.query); |
|
|
|
|
this.userInfo = JSON.parse(sessionStorage.getItem('userInfo')) |
|
|
|
|
console.log(this.userInfo) |
|
|
|
|
this.proData = this.$route.params; |
|
|
|
|
this.proData.selectArr.map(item => { |
|
|
|
|
console.log(this.userInfo); |
|
|
|
|
this.proData = this.$route.query; |
|
|
|
|
let selectArr = JSON.parse(this.proData.selectArr); |
|
|
|
|
selectArr.map(item => { |
|
|
|
|
this.proArr.push({ |
|
|
|
|
apmDay: this.proData.time, |
|
|
|
|
createDept: this.proData.createDept, |
|
|
|
|
@ -80,9 +81,9 @@ export default { |
|
|
|
|
cuAddr: item.posi, |
|
|
|
|
period: item.time.substr(0, 2), |
|
|
|
|
timeFrame: item.time.substr(3), |
|
|
|
|
cupName: this.userInfo.name, |
|
|
|
|
cupPhone: this.userInfo.mobile, |
|
|
|
|
cupCardNo: this.userInfo.papersnumber |
|
|
|
|
cupName: this.Base64.encode(this.userInfo.name), |
|
|
|
|
cupPhone: this.Base64.encode(this.userInfo.mobile), |
|
|
|
|
cupCardNo: this.Base64.encode(this.userInfo.papersnumber) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
// console.log("proArr",this.proArr) |
|
|
|
|
|