UNPKG

xlb-main-login

Version:

``` yarn install ```

46 lines (38 loc) 999 B
import { wei_url } from '@/api/config' import request from '@/utils/blobrequest' //导出 export function getSingleExport(params) { return request({ url: wei_url + '/wecom-conversation/sensitive-word-record/e', method: 'get', params: params, responseType: 'blob' }) } export function singleChatTimeoutExport(params) { return request({ url: wei_url + '/wecom-conversation/timeout-record/e', method: 'get', params: params, responseType: 'blob' }) } //导出 export function getGroupExport(params) { return request({ url: wei_url + '/wecom-conversation/sensitive-word-record/e', method: 'get', params: params, responseType: 'blob' }) } //导出 export function deriveMetadata(params) { console.log(params) return request({ url: wei_url + '/demo-wechat-work/v1/wechat/work/quick-replys/export/metadatas', method: 'get', params: params, responseType: 'blob' }) }