Jay
2024-11-22 328968f75a4dd4292ebc71f01d759a824765ac72
src/api/data/plan/category/index.ts
@@ -7,10 +7,18 @@
  sort: number
}
export interface IndItemCategoryReqVO {
export interface ItemCategoryReqVO {
  label?: string
}
export const defaultProps = {
  children: 'children',
  label: 'label',
  value: 'id',
  isLeaf: 'leaf',
  emitPath: false // 用于 cascader 组件:在选中节点改变时,是否返回由该节点所在的各级菜单的值所组成的数组,若设置 false,则只返回该节点的值
}
// 查询列表
export const getCategoryList = (params) => {
  return request.get({ url: '/data/plan/category/list', params})