From 4edaa14e28e7b595edd1395740d97cdb64d6b93c Mon Sep 17 00:00:00 2001 From: RuoYi Date: Sun, 7 Mar 2021 15:21:33 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E7=9A=84=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/permission.js | 6 ++---- ruoyi-ui/src/store/modules/user.js | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/ruoyi-ui/src/permission.js b/ruoyi-ui/src/permission.js index 2c0b1cfb..ae0bda25 100644 --- a/ruoyi-ui/src/permission.js +++ b/ruoyi-ui/src/permission.js @@ -19,10 +19,8 @@ router.beforeEach((to, from, next) => { } else { if (store.getters.roles.length === 0) { // 判断当前用户是否已拉取完user_info信息 - store.dispatch('GetInfo').then(res => { - // 拉取user_info - const roles = res.roles - store.dispatch('GenerateRoutes', { roles }).then(accessRoutes => { + store.dispatch('GetInfo').then(() => { + store.dispatch('GenerateRoutes').then(accessRoutes => { // 根据roles权限生成可访问的路由表 router.addRoutes(accessRoutes) // 动态添加可访问路由表 next({ ...to, replace: true }) // hack方法 确保addRoutes已完成 diff --git a/ruoyi-ui/src/store/modules/user.js b/ruoyi-ui/src/store/modules/user.js index 5e2349fd..103706da 100644 --- a/ruoyi-ui/src/store/modules/user.js +++ b/ruoyi-ui/src/store/modules/user.js @@ -55,7 +55,7 @@ const user = { // 获取用户信息 GetInfo({ commit, state }) { return new Promise((resolve, reject) => { - getInfo(state.token).then(res => { + getInfo().then(res => { const user = res.user const avatar = user.avatar == "" ? require("@/assets/images/profile.jpg") : user.avatar; if (res.roles && res.roles.length > 0) { // 验证返回的roles是否是一个非空数组 From 0922410a22a16f54f9b1271ebe37c244a7d3bf27 Mon Sep 17 00:00:00 2001 From: RuoYi Date: Sun, 7 Mar 2021 15:21:48 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E5=AF=8C=E6=96=87=E6=9C=AC=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E7=BB=84=E4=BB=B6=E6=94=AF=E6=8C=81=E5=8F=AA=E8=AF=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/components/Editor/index.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ruoyi-ui/src/components/Editor/index.vue b/ruoyi-ui/src/components/Editor/index.vue index 90549953..c4d32691 100644 --- a/ruoyi-ui/src/components/Editor/index.vue +++ b/ruoyi-ui/src/components/Editor/index.vue @@ -26,6 +26,11 @@ export default { type: Number, default: null, }, + /* 只读 */ + readOnly: { + type: Boolean, + default: false, + } }, data() { return { @@ -51,7 +56,7 @@ export default { ], }, placeholder: "请输入内容", - readOnly: false, + readOnly: this.readOnly, }, }; }, @@ -192,4 +197,4 @@ export default { .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before { content: "等宽字体"; } - \ No newline at end of file + From fd0e9202d8c3ad1d6b2b954aeb27a79916524e25 Mon Sep 17 00:00:00 2001 From: RuoYi Date: Sun, 7 Mar 2021 20:26:59 +0800 Subject: [PATCH 3/3] =?UTF-8?q?seata-boot-starter=E6=9B=BF=E6=8D=A2?= =?UTF-8?q?=E4=B8=BAcloud-alibaba-seata?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-common/ruoyi-common-datasource/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-common/ruoyi-common-datasource/pom.xml b/ruoyi-common/ruoyi-common-datasource/pom.xml index ca063068..36d29da9 100644 --- a/ruoyi-common/ruoyi-common-datasource/pom.xml +++ b/ruoyi-common/ruoyi-common-datasource/pom.xml @@ -33,8 +33,8 @@ - io.seata - seata-spring-boot-starter + com.alibaba.cloud + spring-cloud-starter-alibaba-seata