From ad6386a618eb81c401333c6541ec798932991bf6 Mon Sep 17 00:00:00 2001 From: sxq <812980466@qq.com> Date: 星期五, 04 六月 2021 15:00:56 +0800 Subject: [PATCH] redis分布式锁(基于注解形势)。 --- 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 840ff1c..b23233e 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.3