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