| 12345678910111213141516171819202122232425262728 |
- import { useEnumStore } from '@/stores'
- const { getEnumTypeList, getEnumTypeName } = useEnumStore()
- /**
- * 获取商品单位列表
- * @returns
- */
- export function getGoodsUnitList() {
- return getEnumTypeList('goodsunit')
- }
- /**
- * 获取商品单位名称
- * @returns
- */
- export function getGoodsUnitName(value?: number) {
- const enums = getGoodsUnitList()
- return getEnumTypeName(enums, value)
- }
- /**
- * 获取国际手机区号
- * @returns
- */
- export function getCountryCodeList() {
- return getEnumTypeList('countrycode')
- }
|