|
@@ -26,12 +26,12 @@ interface lightingCombinationIdRes {
|
|
|
icon: string,
|
|
|
voice: string,
|
|
|
process: number,
|
|
|
- isSelect?:Boolean
|
|
|
+ isSelect?: Boolean
|
|
|
}]
|
|
|
|
|
|
|
|
|
}
|
|
|
-export interface lightingItemListRes{
|
|
|
+interface lightingItemListRes {
|
|
|
code: number,
|
|
|
msg: string,
|
|
|
rows: [{
|
|
@@ -54,7 +54,7 @@ export async function lightingCombinationList() {
|
|
|
});
|
|
|
return res.data;
|
|
|
}
|
|
|
-export async function lightingCombinationId(id:number) {
|
|
|
+export async function lightingCombinationId(id: number) {
|
|
|
let res: AxiosResponse<lightingCombinationIdRes> = await request({
|
|
|
url: "/lighting/combination/" + id,
|
|
|
method: "get",
|