From 2a604c0548f5b45a00d56298e0c60d09e071e88b Mon Sep 17 00:00:00 2001 From: 若依 <yzz_ivy@163.com> Date: 星期三, 02 六月 2021 20:40:09 +0800 Subject: [PATCH] !237 同步菜单新增、修改界面“功能权限”maxlength为100(保持与数据库字段长度一致),避免因超过50后不能录入问题 Merge pull request !237 from 老李/origin --- ruoyi-ui/src/views/system/dict/index.vue | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ruoyi-ui/src/views/system/dict/index.vue b/ruoyi-ui/src/views/system/dict/index.vue index d7318fd..545912a 100644 --- a/ruoyi-ui/src/views/system/dict/index.vue +++ b/ruoyi-ui/src/views/system/dict/index.vue @@ -105,9 +105,9 @@ plain icon="el-icon-refresh" size="mini" - @click="handleClearCache" + @click="handleRefreshCache" v-hasPermi="['system:dict:remove']" - >清理缓存</el-button> + >刷新缓存</el-button> </el-col> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> </el-row> @@ -189,7 +189,7 @@ </template> <script> -import { listType, getType, delType, addType, updateType, exportType, clearCache } from "@/api/system/dict/type"; +import { listType, getType, delType, addType, updateType, exportType, refreshCache } from "@/api/system/dict/type"; export default { name: "Dict", @@ -359,10 +359,10 @@ this.exportLoading = false; }) }, - /** 清理缓存按钮操作 */ - handleClearCache() { - clearCache().then(response => { - this.msgSuccess("清理成功"); + /** 刷新缓存按钮操作 */ + handleRefreshCache() { + refreshCache().then(() => { + this.msgSuccess("刷新成功"); }); } } -- Gitblit v1.9.2