diff --git a/src/saas/AppCountryAlbum/AddAlbum.vue b/src/saas/AppCountryAlbum/AddAlbum.vue index 00c66e72..1d45d0d9 100644 --- a/src/saas/AppCountryAlbum/AddAlbum.vue +++ b/src/saas/AppCountryAlbum/AddAlbum.vue @@ -70,10 +70,6 @@ } uni.$on('watermarkChange', e => { - if (e.type === 'watermark') { - this.watermarkId = e.value - } - if (e.type === 'photoSource') { this.photoSource = e.value } @@ -118,9 +114,7 @@ if (res.code === 0) { this.info = res.data this.albumName = res.data.albumName - this.createUserId = res.data.createUserId || '' this.photoSource = res.data.photoSource || 0 - this.watermarkId = res.data.watermarkId || '' this.albumUserList = res.data.albumUserList || [] } }) @@ -135,9 +129,8 @@ this.$http.post('/api/appalbum/addOrUpdate', { albumName: this.albumName, - createUserId: this.createUserId, photoSource: this.photoSource, - watermarkId: this.watermarkId, + watermarkId: '', albumUserList: this.albumUserList, id: this.id || '' }).then(res => {