BUG 30330

This commit is contained in:
aixianling
2022-06-27 08:54:51 +08:00
parent a1ca224a98
commit 3e466e01cb

View File

@@ -45,7 +45,7 @@ export default {
source: {default: 1}
},
computed: {
selectText: v => !!v.value ? "已选择" : "请选择",
selectText: v => v.value?.length > 0 ? "已选择" : "请选择",
tagAction: v => v.source == 1 ? '/app/wxcp/wxgroupchattag/listAllByCorp' : '/app/wxcp/wxcorptag/listAllByCorp'
},
data() {