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.
28 lines
517 B
28 lines
517 B
3 years ago
|
import request from '@/router/axios';
|
||
|
|
||
|
export const change = (params) => {
|
||
|
return request({
|
||
|
url: '/api1/bd-core/tenant/api/priceRecord/page',
|
||
|
method: 'get',
|
||
|
params: {
|
||
|
...params,
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
// 运营商类型
|
||
|
export const operator = () => {
|
||
|
return request({
|
||
|
url: '/api1/bd-system/dict/dictionary?code=net_type',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 接口类型
|
||
|
export const apiprot = () => {
|
||
|
return request({
|
||
|
url: '/api1/bd-system/dict/dictionary?code=api_type',
|
||
|
method: 'get',
|
||
|
})
|
||
|
}
|
||
|
|