|
@@ -129,7 +129,8 @@ export default {
|
|
|
type: '',
|
|
|
value: '',
|
|
|
address: ''
|
|
|
- }
|
|
|
+ },
|
|
|
+ communityId:""
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -144,6 +145,7 @@ export default {
|
|
|
data: this.chiData,
|
|
|
todo,
|
|
|
productOptions: this.productOptions,
|
|
|
+ communityId:this.communityId,
|
|
|
callback: resolve
|
|
|
},
|
|
|
title: title
|
|
@@ -178,6 +180,7 @@ export default {
|
|
|
watch: {
|
|
|
currentId(newValue, oldValue) {
|
|
|
if (newValue.type) {
|
|
|
+ this.communityId = newValue.communityId;
|
|
|
let newValueIds = newValue.id.split('-');
|
|
|
this.chiData.type = newValueIds.length;
|
|
|
if (newValue.type === 'community') {
|