|
@@ -48,6 +48,7 @@ export default {
|
|
|
methods: {
|
|
|
monthly_dialog() {
|
|
|
this.$emit('monthly_created', this.monthly_form)
|
|
|
+ this.$emit('update:show', false)
|
|
|
},
|
|
|
handleClose(done) {
|
|
|
this.monthly_show = false
|
|
@@ -56,15 +57,13 @@ export default {
|
|
|
console.log(file, fileList)
|
|
|
},
|
|
|
handlePictureCardPreviewTow(file) {
|
|
|
- console.log(file, file.url)
|
|
|
- this.monthly_form.thumb = 'http:' + file.url
|
|
|
+ this.monthly_form.content = 'http:' + file.url
|
|
|
},
|
|
|
handleRemove(file, fileList) {
|
|
|
console.log(file, fileList)
|
|
|
},
|
|
|
handlePictureCardPreview(file) {
|
|
|
- console.log(file, file.url)
|
|
|
- this.monthly_form.content = 'http:' + file.url
|
|
|
+ this.monthly_form.thumb = 'http:' + file.url
|
|
|
}
|
|
|
}
|
|
|
}
|