19 lines
425 B
TypeScript
19 lines
425 B
TypeScript
/*
|
|
* @Author: hzz hzz
|
|
* @Date: 2023-05-12 16:37:42
|
|
* @LastEditors: hzz hzz
|
|
* @LastEditTime: 2023-05-18 09:08:30
|
|
* @FilePath: \screenFront\src\http\electronicControl\index.ts
|
|
* @Description:
|
|
*
|
|
* Copyright (c) 2023 by ${git_name_email}, All Rights Reserved.
|
|
*/
|
|
import {get,post} from "@/utils/http"
|
|
|
|
//获取微工厂缝纫设备数据
|
|
export function getSewingBoard(){
|
|
return get('/device/getSewingBoard')
|
|
}
|
|
|
|
|