司机注册

This commit is contained in:
骆超
2023-05-08 16:54:57 +08:00
parent 7d7462ff25
commit be394190c5
2 changed files with 37 additions and 3 deletions

14
api/user.js Normal file
View File

@@ -0,0 +1,14 @@
import request from '@/utils/request'
const service_name = "xkhl-user"
const group_name = "sysSecurityUserPsw"
export default {
//统计用户油卡总数量、总余额
setUserPwd (data) {
return request({
url: `/${service_name}/${group_name}/setUserPwd`,
method: 'post',
data
})
},
}