修改错误命名属性

master
RuoYi 2022-06-24 23:09:44 +08:00
parent 6e476e40af
commit acf8ea428f
2 changed files with 5 additions and 5 deletions

View File

@ -47,7 +47,7 @@ public class CacheController extends BaseController
public String getCacheKeys(String fragment, String cacheName, ModelMap mmap) public String getCacheKeys(String fragment, String cacheName, ModelMap mmap)
{ {
mmap.put("cacheName", cacheName); mmap.put("cacheName", cacheName);
mmap.put("cacheKyes", cacheService.getCacheKeys(cacheName)); mmap.put("cacheKeys", cacheService.getCacheKeys(cacheName));
return prefix + "/cache::" + fragment; return prefix + "/cache::" + fragment;
} }

View File

@ -53,8 +53,8 @@
<th>操作</th> <th>操作</th>
</tr> </tr>
</thead> </thead>
<tbody id="cacheKyes"> <tbody id="cacheKeys">
<tr th:fragment="fragment-cache-kyes" th:each="cacheKey, stat : ${cacheKyes}"> <tr th:fragment="fragment-cache-kyes" th:each="cacheKey, stat : ${cacheKeys}">
<td>[[${stat.index + 1}]]</td> <td>[[${stat.index + 1}]]</td>
<td style="word-wrap:break-word;word-break:break-all;" th:onclick="getCacheValue([[${cacheName}]], [[${cacheKey}]])">[[${cacheKey}]]</td> <td style="word-wrap:break-word;word-break:break-all;" th:onclick="getCacheValue([[${cacheName}]], [[${cacheKey}]])">[[${cacheKey}]]</td>
<td style="width: 50px"><a href="#" th:onclick="clearCacheKey([[${cacheName}]], [[${cacheKey}]])" title="清空"><i class="fa fa-trash-o text-danger"></i></a></td> <td style="width: 50px"><a href="#" th:onclick="clearCacheKey([[${cacheName}]], [[${cacheKey}]])" title="清空"><i class="fa fa-trash-o text-danger"></i></a></td>
@ -125,7 +125,7 @@ function getCacheKeys(cacheName, isMsg) {
"fragment": 'fragment-cache-kyes' "fragment": 'fragment-cache-kyes'
}, },
success: function(data) { success: function(data) {
$("#cacheKyes").html(data); $("#cacheKeys").html(data);
$("#cacheName").val(_cacheName); $("#cacheName").val(_cacheName);
if (isMsg) { if (isMsg) {
$.modal.msgSuccess("刷新键名列表成功"); $.modal.msgSuccess("刷新键名列表成功");
@ -174,7 +174,7 @@ function clearCacheKey(cacheName, cacheKey) {
function clearAll(){ function clearAll(){
$.get(prefix + "/clearAll", function(result) { $.get(prefix + "/clearAll", function(result) {
if (result.code == web_status.SUCCESS) { if (result.code == web_status.SUCCESS) {
$.modal.msgSuccess("清理缓存成功") $.modal.msgSuccess("清理全部缓存成功")
} else { } else {
$.modal.msgError(result.msg); $.modal.msgError(result.msg);
} }