From ecd31158cb08c8e50cbb4e31e04b8368bf4db823 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期一, 06 十一月 2023 16:38:41 +0800 Subject: [PATCH] 销售明细单改为上下结构,增加产品信息、库存信息、制造信息页面 --- 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