From d3a5476064256802f9e0c0626bed6b8048e51bc0 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期五, 13 十月 2023 17:37:00 +0800 Subject: [PATCH] 部分get请求获取返回数据修改 --- src/views/backgroundConfig/memberManage/index.vue | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/backgroundConfig/memberManage/index.vue b/src/views/backgroundConfig/memberManage/index.vue index 89f997d..99113b7 100644 --- a/src/views/backgroundConfig/memberManage/index.vue +++ b/src/views/backgroundConfig/memberManage/index.vue @@ -20,7 +20,7 @@ :login-control="true" :operates-list="operatesList" /> - <PagerView class="page" /> + <PagerView class="page" :pager-options="pagerOptions" v-on="pagerEvents" /> </div> <TableCommonView ref="tableListRef" :table-list="tableList"> <template slot="tableButton"> @@ -237,14 +237,15 @@ // 缂栬緫閮ㄩ棬 editDepartmentClick(command, data) { console.log(command, data) - this.departmentConfig.visible = true if (command === "edit") { + this.departmentConfig.visible = true this.departmentConfig.infomation = { departmentName: data.label, departmentNumber: data.id, notes: "" } } else if (command === "add") { + this.departmentConfig.visible = true this.departmentConfig.infomation = { departmentName: "", departmentNumber: "", -- Gitblit v1.8.0