田源
2024-07-09 8a857fe1b0b69dafbdaa15b45edab03a2c3bcdb2
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
50
51
52
53
54
55
56
57
58
//密码组合方式
import request from '@/router/axios';
 
//分页
export const getPage =(current, size, params)=>{
  return request({
    url:'/api/blade-system/combination/page',
    method:'get',
    params:{
      ...params,
      current,
      size,
    }
  })
}
//单查询
export const getOnesearch =(id)=>{
  return request({
    url:'/api/blade-system/combination/one',
    method:'post',
    params:{
      id
    }
  })
}
// 新增
export const getadd =(row)=>{
  return request({
    url:'/api/blade-system/combination/submit',
    method:'post',
    data:row
  })
}
// 修改
export const getupdata =(row)=>{
  return request({
    url:'/api/blade-system/combination/submit',
    method:'post',
    data:row
  })
}
//删除
export const getremove = (ids) => {
  return request({
    url: '/api/blade-system/combination/remove',
    method: 'post',
    params: {
      ids,
    }
  })
}
//下拉数据咨询(密码的组合方式)
export const getpassword=()=>{
  return request({
    url:'/api/blade-system/combination/select',
    method:'get',
  })
}