123456789101112131415161718192021222324252627282930 |
- import request from "@/utils/request.js";
- // 会员所有绑定设备列表接口
- export function getEquList(data) {
- return request.get("app-api/member/user-device-bind/bind-list", data, {
- });
- }
- export function bindEqu(data) {
- return request.post('app-api/member/user-device-bind/bind', data, {
- noAuth: true
- });
- }
- // 获取关系列表接口
- export function getDetailList(data) {
- return request.get("app-api/member/user-relation/detail-list", data, {
- noAuth: true
- });
- }
- // 关系列表创建
- export function createRelation(data) {
- return request.post('app-api/member/user-relation/create-relation', data, {
- noAuth: true
- });
- }
- // 会员设置默认绑定设备
- export function bindDefaultEqu(data) {
- return request.post('app-api/member/user-device-bind/bind-default', data, {
- noAuth: true
- });
- }
|