CN-1663 fix: 1、用户--新建/编辑,添加密码强度提示;2、修复&符号在界面显示异常的问题。

This commit is contained in:
刘洪洪
2024-07-02 18:13:04 +08:00
parent a050cf6c7c
commit 6823b7e4d7
5 changed files with 95 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
import { tableSort } from '@/utils/tools'
import { handleSpecialCode, tableSort } from '@/utils/tools'
import { defaultPageSize, fromRoute, position, storageKey, dbTableColumnCustomizeConfigPre, dbTableColumnCustomizeConfig } from '@/utils/constants'
import _ from 'lodash'
import { ref } from 'vue'
@@ -242,6 +242,9 @@ export default {
axios.get(`${this.url}/${this.batchDeleteObjs[0].id}`).then(response => {
if (response.status === 200) {
this.object = response.data.data
if (this.url === '/sys/i18n') {
this.object.value = handleSpecialCode(this.object.value)
}
this.rightBox.show = true
}
})