2022-07-13 14:21:40 +08:00
|
|
|
import {post} from '@js/http.js'
|
|
|
|
|
|
2022-07-13 14:34:28 +08:00
|
|
|
/** 登陆 */
|
2022-07-13 16:45:45 +08:00
|
|
|
export const screenLogin = (user, password) => post('api/bigScreenScreen/login', {
|
2022-07-13 14:34:28 +08:00
|
|
|
user: user,
|
|
|
|
|
password: password
|
|
|
|
|
})
|
|
|
|
|
|
2022-07-13 14:21:40 +08:00
|
|
|
export const screenZK = (id, cid) => post('api/bigScreenScreen/zk', {
|
|
|
|
|
accountId: id,
|
|
|
|
|
center_id: cid
|
|
|
|
|
})
|
|
|
|
|
export const query3Dcartoon = (id, cid) => post('api/bigScreenScreen/query3Dcartoon', {
|
|
|
|
|
accountId: id,
|
|
|
|
|
center_id: cid
|
|
|
|
|
})
|