yinbangzhong
2024-07-27 b63839cffaa8ed14f4da4654916f447b7707a7ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import axios from 'axios';
import qs from 'query-string';
import type { DescData } from '@arco-design/web-vue/es/descriptions/interface';
 
export interface PolicyRecord {
  id: string;
  number: number;
  name: string;
  contentType: 'img' | 'horizontalVideo' | 'verticalVideo';
  filterType: 'artificial' | 'rules';
  count: number;
  status: 'online' | 'offline';
  createdTime: string;
}
 
export interface PolicyParams extends Partial<PolicyRecord> {
  current: number;
  pageSize: number;
}
 
export interface PolicyListRes {
  list: PolicyRecord[];
  total: number;
}
 
export function queryKbList(params) {
  return axios.get('/api/v1/kb/list', {
    params
  });
}
 
export function queryKbdetail(params) {
  return axios.get('/api/v1/kb/detail', {
    params
  });
}
 
 
export function queryKbtenantInfo(params) {
  return axios.get('/api/v1/user/tenant_info', {
    params
  });
}
 
export function queryKbDocumentList(params) {
  return axios.get('/api/v1/document/list', {
    params
  });
}