From 186b27156c14216e4359ab3f811ca1821962f3d3 Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期五, 09 五月 2025 11:14:41 +0800 Subject: [PATCH] 测试完成 --- src/views/system/user/authRole.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/system/user/authRole.vue b/src/views/system/user/authRole.vue index ab5e72f..10f0647 100644 --- a/src/views/system/user/authRole.vue +++ b/src/views/system/user/authRole.vue @@ -29,11 +29,11 @@ <el-table-column label="鏉冮檺瀛楃" align="center" prop="roleKey" /> <el-table-column label="鍒涘缓鏃堕棿" align="center" prop="createTime" width="180"> <template slot-scope="scope"> - <span>{{ parseTime(scope.row.createTime) }}</span> + <span>{{ formatTime(scope.row.createTime) }}</span> </template> </el-table-column> </el-table> - + <pagination v-show="total>0" :total="total" :page.sync="pageNum" :limit.sync="pageSize" /> <el-form label-width="100px"> @@ -101,8 +101,8 @@ /** 鎻愪氦鎸夐挳 */ submitForm() { const userId = this.form.userId; - const roleIds = this.roleIds.join(","); - updateAuthRole({ userId: userId, roleIds: roleIds }).then((response) => { + // const roleIds = this.roleIds.join(","); + updateAuthRole({ userId: userId, roleIds: this.roleIds }).then((response) => { this.$modal.msgSuccess("鎺堟潈鎴愬姛"); this.close(); }); @@ -114,4 +114,4 @@ }, }, }; -</script> \ No newline at end of file +</script> -- Gitblit v1.9.3