This commit is contained in:
parent
f5cf0721eb
commit
68ddd41c3c
|
@ -163,7 +163,9 @@ export default {
|
||||||
status: null,
|
status: null,
|
||||||
city_name: '',
|
city_name: '',
|
||||||
title: '',
|
title: '',
|
||||||
content: ''
|
content: '',
|
||||||
|
img_zip:'',
|
||||||
|
trip_zip:''
|
||||||
},
|
},
|
||||||
dialogCreate: false,
|
dialogCreate: false,
|
||||||
dialogEdit: false,
|
dialogEdit: false,
|
||||||
|
@ -193,10 +195,12 @@ export default {
|
||||||
},
|
},
|
||||||
handleAvatarSuccess(res, file) {
|
handleAvatarSuccess(res, file) {
|
||||||
this.imageUrl = URL.createObjectURL(file.raw)
|
this.imageUrl = URL.createObjectURL(file.raw)
|
||||||
|
this.listQuery.img_zip = this.imageUrl
|
||||||
console.log(this.imageUrl);
|
console.log(this.imageUrl);
|
||||||
},
|
},
|
||||||
handleSuccess(res, file) {
|
handleSuccess(res, file) {
|
||||||
this.imageUrls = URL.createObjectURL(file.raw)
|
this.imageUrls = URL.createObjectURL(file.raw)
|
||||||
|
this.listQuery.trip_zip = this.imageUrls
|
||||||
},
|
},
|
||||||
onAdd() {
|
onAdd() {
|
||||||
this.anchors = {} // 初始化时默认排序值为0
|
this.anchors = {} // 初始化时默认排序值为0
|
||||||
|
|
Loading…
Reference in New Issue