|
@@ -45,13 +45,13 @@ export const supplierListApi = (data) =>
|
|
|
request({
|
|
|
url: '/api/sys/supplier/list',
|
|
|
params: data,
|
|
|
- method: 'get',
|
|
|
+ // method: 'get',
|
|
|
});
|
|
|
export const supplierDetailApi = (id) =>
|
|
|
request({
|
|
|
url: '/api/sys/supplier/get',
|
|
|
params: { id },
|
|
|
- method: 'get',
|
|
|
+ // method: 'get',
|
|
|
});
|
|
|
export const supplierEditApi = (data) => {
|
|
|
if (data.id) {
|
|
@@ -108,7 +108,7 @@ export const deviceEnableApi = (ids, enable) =>
|
|
|
export const deviceBrandListApi = () =>
|
|
|
request({
|
|
|
url: '/api/sys/device/brand/list',
|
|
|
- method: 'get',
|
|
|
+ // method: 'get',
|
|
|
});
|
|
|
|
|
|
// service-level-manage
|
|
@@ -121,13 +121,13 @@ export const serviceLevelListApi = (data) =>
|
|
|
request({
|
|
|
url: '/api/sys/level/list',
|
|
|
params: data,
|
|
|
- method: 'get',
|
|
|
+ // method: 'get',
|
|
|
});
|
|
|
export const serviceLevelDetailApi = (id) =>
|
|
|
request({
|
|
|
url: '/api/sys/level/get',
|
|
|
params: { id },
|
|
|
- method: 'get',
|
|
|
+ // method: 'get',
|
|
|
});
|
|
|
export const serviceLevelEditApi = (data) => {
|
|
|
if (data.id) {
|