注册/修改手机号优化

This commit is contained in:
GaoHao
2025-01-14 10:27:23 +08:00
parent e38575f236
commit d6be7802c8
4 changed files with 21 additions and 6 deletions

View File

@@ -23,9 +23,10 @@ export const setSendMsg = (mobile,type) => {
/** /**
* 注册 * 注册
*/ */
export const registerCode = (params) => { export const register = (params) => {
return http.request({ return http.request({
url: '/Login/registerCode', url: '/Login/registerCode',
method: 'POST',
params: params params: params
}) })
} }
@@ -48,6 +49,8 @@ export const bind = (data) => {
return http.request({ return http.request({
url: '/Login/registerCode', url: '/Login/registerCode',
method: 'POST', method: 'POST',
params: data data: data
}) })
} }

View File

@@ -31,3 +31,14 @@ export const updateUsers = (data) => {
data: data, data: data,
}) })
} }
/**
* 修改手机号
*/
export const updatePhone = (data) => {
return http.request({
url: '/user/updatePhone',
method: 'POST',
params: data
})
}

View File

@@ -20,6 +20,7 @@
import { reactive } from 'vue'; import { reactive } from 'vue';
import { onLoad} from '@dcloudio/uni-app' import { onLoad} from '@dcloudio/uni-app'
import { setSendMsg, bind} from '@/api/login/login.js'; import { setSendMsg, bind} from '@/api/login/login.js';
import { updatePhone } from '@/api/user/user.js';
let data = reactive({ let data = reactive({
mobile: '', mobile: '',
@@ -100,7 +101,7 @@
} else { } else {
uni.showLoading({ title: '正在绑定中...' }) uni.showLoading({ title: '正在绑定中...' })
let res = await bind({ let res = await updatePhone({
phone: mobile, phone: mobile,
// wxId: openId, // wxId: openId,
// userId: userId, // userId: userId,

View File

@@ -48,7 +48,7 @@
<script setup> <script setup>
import { reactive } from 'vue'; import { reactive } from 'vue';
import { onLoad} from '@dcloudio/uni-app' import { onLoad} from '@dcloudio/uni-app'
import {setSendMsg,registerCode} from '@/api/login/login.js'; import {setSendMsg,register} from '@/api/login/login.js';
import {commonType} from '@/api/init.js'; import {commonType} from '@/api/init.js';
import { linkTo } from '@/utils/app.js'; import { linkTo } from '@/utils/app.js';
@@ -235,7 +235,7 @@
// #endif // #endif
let res = await registerCode({ let res = await register({
password: password, password: password,
phone: mobile, phone: mobile,
msg: code, msg: code,