You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- export function s8() {
- return (((1 + Math.random()) * 0x100000000) | 0).toString(16).substring(1);
- }
-
- export function getNameByCode(list, code) {
- let name = '';
- list.forEach((item) => {
- if (item.dictValue === code) name = item.dictLabel;
- });
- return name;
- }
|