UNPKG

xlb-main-login

Version:

``` yarn install ```

31 lines (27 loc) 703 B
//批量加好友获取列表 import { wei_url } from '@/api/config' import { axios } from '@/utils/request' // 列表 export function getQRCodelist(params) { return axios({ url: wei_url + '/demo-wechat-work/v1/wechat/work/contact/', method: 'get', params, }) } // 活动数量 export function getActivityNum() { return axios({ url: wei_url + '/demo-wechat-work/v1/wechat/work/contact/num', method: 'get', }) } // 删除 export function QRCodeDel(data) { return axios({ headers: { 'Content-Type': 'application/json;charset=UTF-8' }, url: wei_url + '/demo-wechat-work/v1/wechat/work/contact/', method: 'delete', data, }) }