更新 Web/src/stores/userInfo.ts

修复val是undefined情况,tostring报错问题
This commit is contained in:
362270511 2024-07-11 18:49:58 +08:00
parent a9f719a9b5
commit 7deab039a9

View File

@ -132,14 +132,17 @@ export const useUserInfo = defineStore('userInfo', {
// 根据字典类型和代码取字典项
getDictItemByCode(typePCode: string, val: string) {
val = val.toString();
if (val) {
const _val = val.toString();
const ds = this.getDictDatasByCode(typePCode);
for (let index = 0; index < ds.length; index++) {
const element = ds[index];
if (element.code == _val) {
return element;
if(val!=undefined)
{
val = val.toString();
if (val) {
const _val = val.toString();
const ds = this.getDictDatasByCode(typePCode);
for (let index = 0; index < ds.length; index++) {
const element = ds[index];
if (element.code == _val) {
return element;
}
}
}
}