浏览代码

关联渠道过滤接口对接

小杜 4 月之前
父节点
当前提交
3be8f671f9
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/views/main/formworkErection/appAdmin.vue

+ 2 - 1
src/views/main/formworkErection/appAdmin.vue

@@ -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;
   }