去掉console

This commit is contained in:
shijingjing
2022-07-26 11:05:58 +08:00
parent 601640eea1
commit 048aa08ab1
4 changed files with 8 additions and 14 deletions

View File

@@ -66,6 +66,7 @@
:colConfigs="tabIndex==0? colConfigs0 : colConfigs1"
v-if="tableData.length">
<u-td slot="groupOwnerId" slot-scope="{row}">
<!-- <p>{{row.groupOwnerId}}</p> -->
<AiOpenData v-if="row.groupOwnerId" type="userName" :openid="row.groupOwnerId"/>
</u-td>
</AiTable>
@@ -104,7 +105,7 @@ export default {
computed: {
colConfigs0() {
return [
{ slot: "groupOwnerId",label: "成员",prop: "groupOwnerId" },
{ slot: "groupOwnerId",label: "成员" },
{ label: "预计送达居民群", prop: "groupCount" }
];
},
@@ -112,7 +113,7 @@ export default {
return [
{ label: "居民群",prop: "groupName" },
{ label: "群人数", prop: "memberCount"},
{ slot: "groupOwnerId",label: "群主",prop: "groupOwnerId" }
{ slot: "groupOwnerId",label: "群主" }
];
},
},