|
@@ -520,7 +520,14 @@ export default {
|
|
this.formData.loginStatus = 'OK'
|
|
this.formData.loginStatus = 'OK'
|
|
}
|
|
}
|
|
if (this.module === 'examine') {
|
|
if (this.module === 'examine') {
|
|
- this.formData.files = []
|
|
|
|
|
|
+ const item = this.formData.files
|
|
|
|
+ this.formData.files = item.map(k => {
|
|
|
|
+ return {
|
|
|
|
+ ...k,
|
|
|
|
+ name: k.fileName,
|
|
|
|
+ url: k.fileUrl
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|
|
|
|
|
|
if (this.formData.homeProjectNameRadio === 'SELF') {
|
|
if (this.formData.homeProjectNameRadio === 'SELF') {
|