service-object.js 1.1 KB

1234567891011121314151617181920212223242526
  1. const http = uni.$u.http
  2. // post请求,识别人脸
  3. export const verifyFace = (params, config = {}) => http.post('/member/wechat/verifyFace', params, config)
  4. // post请 查询服务对象列表
  5. export const listServiceObject = (params, config = {}) => http.post('/member/wechat/listServiceObject', params, config)
  6. // post请 获取服务对象协议
  7. export const getServiceDealFile = (params, config = {}) => http.post('/member/wechat/getServiceDealFile', params, config)
  8. // post请求 服务对象签名
  9. export const serviceObjectSignPdf = (params, config = {}) => http.post('/member/wechat/signPdf', params, config)
  10. // post请求 保存服务对象
  11. export const saveServiceObject = (params, config = {}) => http.post('/member/wechat/saveServiceObject', params, config)
  12. // post请求 绑定服务对象
  13. export const bindServiceObject = (params, config = {}) => http.post('/member/wechat/bindServiceObject', params, config)
  14. // post请求 修改服务对象
  15. export const updateServiceObject = (params, config = {}) => http.post('/member/wechat/updateServiceObject', params, config)