|
@@ -141,9 +141,9 @@ export default {
|
|
|
let phonenumber = this.GetQueryString('phonenumber')
|
|
|
let hosName = this.GetQueryString('hosName')
|
|
|
let officeName = this.GetQueryString('officeName')
|
|
|
- if(phonenumber) { this.basicForm.contactInfo = phonenumber }
|
|
|
- if(hosName) { this.basicForm.hospital = hosName }
|
|
|
- if(officeName) { this.basicForm.department = officeName }
|
|
|
+ if(phonenumber && phonenumber != 'undefined') { this.basicForm.contactInfo = phonenumber }
|
|
|
+ if(hosName && hosName != 'undefined') { this.basicForm.hospital = hosName }
|
|
|
+ if(officeName && officeName != 'undefined') { this.basicForm.department = officeName }
|
|
|
},
|
|
|
methods: {
|
|
|
successUpload(resp, file, fileList) {
|