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.
17 lines
548 B
17 lines
548 B
import { getRequest, postRequest, uploadFile } from '@/utils/request';
|
|
|
|
// --------------------------初装系统---------------------------
|
|
// 设备初装
|
|
export async function deviceInit_init(formData: any) {
|
|
return uploadFile(`/xgd/deviceInit/init`, formData);
|
|
}
|
|
|
|
// 数据安装
|
|
export async function deviceInstall_deviceInstall(data: any) {
|
|
return postRequest(`/xgd/deviceInit/deviceInstall`, data);
|
|
}
|
|
|
|
// 开机认证
|
|
export async function college_table_query(params: any) {
|
|
return getRequest(`/xgd/deviceInit/powerOnAuth`, params);
|
|
} |