From 17af8def27adbfd6a5a4e3f5e717d21d40df3ed8 Mon Sep 17 00:00:00 2001 From: wwl <xchao828@163.com> Date: 星期四, 24 四月 2025 14:55:31 +0800 Subject: [PATCH] 解决没弹窗 --- src/views/hosp/rules/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/hosp/rules/index.vue b/src/views/hosp/rules/index.vue index 3ceb5ec..38aa5e1 100644 --- a/src/views/hosp/rules/index.vue +++ b/src/views/hosp/rules/index.vue @@ -617,16 +617,16 @@ getListByXmId() { this.loading = true; listRules(this.queryParams).then((response) => { - response.rows.forEach((item, index) => { + response.data.rows.forEach((item, index) => { item.newID = (this.queryParams.pageNum - 1) * this.queryParams.pageSize + index + 1; }); - this.rulesList = response.rows; + this.rulesList = response.data.rows; console.log(this.rulesList, 999); - this.total = response.total; + this.total = response.data.total; this.loading = false; }); }, -- Gitblit v1.8.0