1234567891011121314151617 |
- const { request, wx_rlxf } = require("../func/request");
- const base_url = wx_rlxf ? 'https://tx.hz-hanghui.com:8088/hanghui-server-platform/api/v1/alipay/' : 'http://192.168.11.11:8081/hanghui-server-platform/api/v1/alipay/'
- // 获取用户三要素信息
- const getAuthThree = data => {
- return request({
- url: `${base_url}user/query`,
- method: "post",
- type: "application/json",
- extra: 3,
- data
- })
- }
- module.exports = getAuthThree
|