You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
583 B

3 years ago
import request from '@/router/axios';
export const getList = (current, size, params) => {
return request({
url: '/api1/bd-core/source/monthbill/page',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api1/bd-core/source/monthbill/detail',
method: 'get',
params: {
id
}
})
}
export const zyfdictionary = (id) => {
return request({
url: '/api1/bd-system/dict/dictionary?code=source_type',
method: 'get',
params: {
id
}
})
}