格式化代码

This commit is contained in:
sin 2019-03-04 15:30:21 +08:00
parent f7bf280367
commit 13e9b5526b

View File

@ -3,15 +3,15 @@ import request from "../config/request";
export function GetPage() {
return request({
url: '/Page/GetPage',
method: 'get',
url: '/Page/GetPage',
method: 'get',
})
}
}
export function getProduct(id) {
return request({
url: '/Page/Product',
method: 'get',
params: { id }
url: '/Page/Product',
method: 'get',
params: {id}
})
}
}