|
@@ -205,6 +205,9 @@ export default {
|
|
|
const query = this.$route.query
|
|
|
this.payType = query.type
|
|
|
this.row = query.row ? JSON.parse(query.row) : {}
|
|
|
+ this.files = null
|
|
|
+ this.fileList = []
|
|
|
+ this.form.multipartFile = null
|
|
|
if(this.payType == 'update') {
|
|
|
const row = this.row
|
|
|
this.id = row.id
|
|
@@ -250,9 +253,6 @@ export default {
|
|
|
// multipartFile: null,
|
|
|
// zipCode: null
|
|
|
// }
|
|
|
- this.files = null
|
|
|
- this.fileList = []
|
|
|
- this.form.multipartFile = null
|
|
|
this.$refs["accountForm"].resetFields()
|
|
|
}
|
|
|
},
|
|
@@ -323,6 +323,9 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
onCancel () {
|
|
|
+ this.files = null
|
|
|
+ this.fileList = []
|
|
|
+ this.form.multipartFile = null
|
|
|
this.$router.push({
|
|
|
path: "/insideSetting/adapayManager"
|
|
|
});
|