-
+
+
+
+
+
+
+ {{ item }}
+
+
{{this.$t('userOrOrganSelect.select')}}
@@ -42,10 +57,11 @@ export default {
}
},
mounted () {
- console.log(this.type)
+ this.checkedValue = this.value.map(item => item.value)
},
data () {
return {
+ checkedValue: [],
selectValue: []
}
},
@@ -59,6 +75,7 @@ export default {
} else {
this.selectValue = arrOne
}
+ this.checkedValue = this.selectValue.map(item => item.value)
this.$emit('change', this.selectType)
}
},
@@ -69,6 +86,29 @@ export default {
}
-