From 08c2033475fa42690c3246aa1510f6c6c932c2ea Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期六, 02 八月 2025 10:53:31 +0800 Subject: [PATCH] 数量可以支持小数 --- src/views/comment/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/comment/index.vue b/src/views/comment/index.vue index 004ad03..0949011 100644 --- a/src/views/comment/index.vue +++ b/src/views/comment/index.vue @@ -18,7 +18,7 @@ </el-input> </div> </div> - <div style="height: calc(100vh - 248px)"> + <div style="height: calc(100vh - 208px)"> <el-table v-loading="listLoading" :data="list" @@ -72,7 +72,7 @@ </el-input> </div> </div> - <div style="height: calc(100vh - 248px)"> + <div style="height: calc(100vh - 208px)"> <el-table v-loading="listLoading" :data="list" @@ -129,7 +129,7 @@ activeName: "comment", total: 0, data: { - staffId: JSON.parse(localStorage.getItem("user")).staffs[0].id, + staffId: JSON.parse(localStorage.getItem("selectStaff")).id, keyword: "", pageIn: { //鍙�夛紝濡傛灉鏄垎椤垫煡璇紝闇�瑕佸姞涓娿�� @@ -172,7 +172,7 @@ this.listLoading = true; let data = { commentTypes: ["DIRECT_COMMENT"], - staffId: JSON.parse(localStorage.getItem("user")).staffs[0].id, + staffId: JSON.parse(localStorage.getItem("selectStaff")).id, keyword: this.data.keyword, pageIn: { ...this.data.pageIn }, }; -- Gitblit v1.8.0