Merge branch 'dev' into next

This commit is contained in:
chenjiahan
2020-09-26 21:35:53 +08:00
9 changed files with 233 additions and 40 deletions
+4 -1
View File
@@ -52,7 +52,10 @@ export default {
methods: {
onConfirm(values) {
this.value = values.map((item) => item.name).join('/');
this.value = values
.filter((item) => !!item)
.map((item) => item.name)
.join('/');
this.showArea = false;
},