diff --git a/src/saas/AppCountryAlbum/AddAlbum.vue b/src/saas/AppCountryAlbum/AddAlbum.vue
index 772d6f32..47ebb07d 100644
--- a/src/saas/AppCountryAlbum/AddAlbum.vue
+++ b/src/saas/AppCountryAlbum/AddAlbum.vue
@@ -25,7 +25,7 @@
拍摄人
-
+
{{ createUserId ? '已选择' : '不限' }}
@@ -57,7 +57,8 @@
photoSource: 0,
watermarkId: '',
isLoading: false,
- id: ''
+ id: '',
+ albumUserList: []
}
},
@@ -69,6 +70,7 @@
}
uni.$on('change', e => {
+ console.log(e)
if (e.type === 'watermark') {
this.watermarkId = e.value
}
@@ -76,6 +78,10 @@
if (e.type === 'photoSource') {
this.photoSource = e.value
}
+
+ if (e.type === 'personnel') {
+ this.albumUserList = e.value
+ }
})
},
@@ -110,6 +116,7 @@
createUserId: this.createUserId,
photoSource: this.photoSource,
watermarkId: this.watermarkId,
+ albumUserList: this.albumUserList,
id: this.id || ''
}).then(res => {
if (res.code === 0) {
diff --git a/src/saas/AppCountryAlbum/AlbumDetail.vue b/src/saas/AppCountryAlbum/AlbumDetail.vue
index 12f4b1e9..cb971e8b 100644
--- a/src/saas/AppCountryAlbum/AlbumDetail.vue
+++ b/src/saas/AppCountryAlbum/AlbumDetail.vue
@@ -1,7 +1,7 @@