fix: 获取字典参数为空时的判断条件
This commit is contained in:
parent
c1fbabaaa7
commit
a5a29e02a2
@ -6,7 +6,7 @@ const useDictStore = defineStore('dict', {
|
|||||||
actions: {
|
actions: {
|
||||||
// 获取字典
|
// 获取字典
|
||||||
getDict(_name: string) {
|
getDict(_name: string) {
|
||||||
if (_name === null && _name === '') {
|
if (_name == null || _name === '') {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user