潘志宝
2024-12-30 9e2e0baeff46fb6ecfe21145f7250d67b13ca79e
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})