|
|
@@ -524,8 +524,9 @@ const channelAppId = ref('')
|
|
|
const openChannelLayer = async (row) => {
|
|
|
if (row) {
|
|
|
channelAppId.value = row.appId
|
|
|
- let res =await relativeChannelList({appId: row.appId})
|
|
|
+ let res =await relativeChannelList({appId: row.appId,page:channelPage.pageNum,limit:channelPage.limit})
|
|
|
channelData.value = res.data;
|
|
|
+ channelPage.total = res.pageMeta.total;
|
|
|
channelLayer.value.show = true;
|
|
|
}
|
|
|
|