Blame view

store-pc/src/api/itemCategory.js 257 Bytes
e1dcb3a0   “wangming”   1
1
2
3
4
5
6
7
8
9
  import request from '@/utils/request'
  
  // 获取品项分类映射(内部编码 → 显示名/颜色)
  export function getItemCategoryMapping() {
    return request({
      url: '/api/Extend/LqItemCategoryConfig/Actions/GetMapping',
      method: 'get'
    })
  }