9.27 标的类型展示支持多个展示

This commit is contained in:
jl-zhoujl2
2022-09-27 15:31:15 +08:00
parent b431e82647
commit 566ebae68b
14 changed files with 589 additions and 583 deletions

View File

@ -50,6 +50,15 @@ export function returnDictVal(data: any, value: any) {
}
return val;
}
/**
* procurementType标的类型转换多个 20220927
*/
export function multipleTypeTransform(value: string | null | undefined, valueEnum: any): string {
if (valueEnum && value) {
return value.split(",").map(item => valueEnum[item].text).join();
}
return "-";
}
/**
* 获取url路径信息