17 lines
402 B
JavaScript
17 lines
402 B
JavaScript
import {post} from '@js/http.js'
|
|
|
|
/** 登陆 */
|
|
export const screenLogin = (user, password) => post('api/bigScreenScreen/login', {
|
|
user: user,
|
|
password: password
|
|
})
|
|
|
|
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
|
|
})
|