|
@@ -218,7 +218,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapGetters(['authUserId', 'userIdentity', 'copyUserInfo', 'prefix']),
|
|
|
+ ...mapGetters(['authUserId', 'userIdentity', 'UserInfo', 'prefix']),
|
|
|
saveBtnClickable() {
|
|
|
return this.uploadFileList.length > 0
|
|
|
}
|
|
@@ -377,7 +377,7 @@ export default {
|
|
|
const formData = new FormData()
|
|
|
|
|
|
formData.append('authUserId', this.authUserId)
|
|
|
- formData.append('createBy', this.copyUserInfo.authUserId)
|
|
|
+ formData.append('createBy', this.authUserId)
|
|
|
formData.append('file', this.chooseFile)
|
|
|
|
|
|
authImportExcel(formData)
|