路泰科技体检小程序UI设计新版本
1
wwl
2025-08-01 bac0a4521c776e1179d3a8dbe4d4cbb9d7e71118
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import request from '@/utils/request'
import { encrypt } from '@/utils/jsencrypt'
 
// 登录方法
export function login(username, password, code, uuid,type, mobile) {
  password = encrypt(password);
  const data = {
    username,
    password,
    code,
    uuid,
    type,
    mobile,
  }
  return request({
    'url': '/login',
    headers: {
      isToken: false
    },
    'method': 'post',
    'data': data
  })
}
 
 
export function getlogin(username, password, code, uuid) {
  const data = {
    username,
    password,
    code,
    uuid
  }
  return request({
    url: '/cus/login',
    headers: {
      isToken: false
    },
    method: 'post',
    params: data
  })
}
 
// 获取用户详细信息
export function loadUnionid(data) {
  return request({
    url: '/cus/wx/login',
    method: 'post',
        params: data
  })
}
 
// 获取用户详细信息
export function getInfo() {
  return request({
    'url': '/getInfo',
    'method': 'get'
  })
}
 
// 退出方法
export function logout() {
  return request({
    'url': '/logout',
    'method': 'post'
  })
}
 
// 获取验证码
export function getCodeImg() {
  return request({
    'url': '/captchaImage',
    headers: {
      isToken: false
    },
    method: 'get',
    timeout: 20000
  })
}
 
 
//根据身份证号获取用户信息
export function bindPhone(data) {
    return request({
        "url": '/cus/wx/bindPhone',
        method: 'post',
        params: data
    })
}
//小程序根据手机号码获取用户身份证号码
export function getIdCardByPhone(phone) {
    return request({
        "url": '/cus/hospital/getIdCardByPhone?phone='+ phone,   //   /?phone=+ phone
        method: 'get',
        // data:{
        //     phone : phone
        // }
    })
}
 
 
// 小程序获取用户详情信息接口
export function getWxInfo() {
  return request({
    'url': '/cus/wx/getWxInfo',
    'method': 'get'
  })
}
//电话
export function wxbindphone(data) {
    return request({
        "url": '/cus/wx/bindPhoneV2',
        method: 'post',
        data: data
    })
}