const http = uni.$u.http // post请求,识别人脸 export const verifyFace = (params, config = {}) => http.post('/member/wechat/verifyFace', params, config) // post请 查询服务对象列表 export const listServiceObject = (params, config = {}) => http.post('/member/wechat/listServiceObject', params, config) // post请 获取服务对象协议 export const getServiceDealFile = (params, config = {}) => http.post('/member/wechat/getServiceDealFile', params, config) // post请求 服务对象签名 export const serviceObjectSignPdf = (params, config = {}) => http.post('/member/wechat/signPdf', params, config) // post请求 保存服务对象 export const saveServiceObject = (params, config = {}) => http.post('/member/wechat/saveServiceObject', params, config) // post请求 绑定服务对象 export const bindServiceObject = (params, config = {}) => http.post('/member/wechat/bindServiceObject', params, config) // post请求 修改服务对象 export const updateServiceObject = (params, config = {}) => http.post('/member/wechat/updateServiceObject', params, config)