소스 검색

缓存修改

luguang 2 달 전
부모
커밋
88f6a06e63
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/views/admin/monitor/cache/components/edit.vue

+ 5 - 1
src/views/admin/monitor/cache/components/edit.vue

@@ -49,7 +49,11 @@ export default {
     async getLocalData() {
       const { code, retObj } = await this.getApi({ key: this.cacheKey })
       if (code === 0) {
-        this.$set(this.editForm, 'value', retObj)
+        if (retObj.startsWith('{')) {
+          this.$set(this.editForm, 'value', retObj.replaceAll('\\', ''))
+        } else {
+          this.$set(this.editForm, 'value', retObj)
+        }
       }
     },
     confirmClick() {