智慧画屏客户端
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.

18 lines
288 B

3 years ago
  1. import {myRequest} from './http.js';
  2. // 登录
  3. export function login (config) {
  4. return myRequest({
  5. url:'/login',
  6. method:'post',
  7. data:config
  8. });
  9. }
  10. // 授权绑定
  11. export function deviceBind (config) {
  12. return myRequest({
  13. url:'/deviceBind',
  14. method:'post',
  15. data:config
  16. });
  17. }