feat: 新增确认送达弹框组件、添加安卓打包测试证书、骑手配送流程接口对接

This commit is contained in:
admin
2026-02-24 11:58:30 +08:00
parent b85833690f
commit bc1833ec89
25 changed files with 2982 additions and 1205 deletions

View File

@@ -56,8 +56,8 @@ const UserApi = {
// 修改密码
updateUserPassword: (data) => {
return request({
url: '/member/user/update-password',
method: 'PUT',
url: '/member/auth/update-password',
method: 'POST',
data,
custom: {
loadingMsg: '验证中',
@@ -69,8 +69,8 @@ const UserApi = {
// 修改密码
updateUserPasswordReset: (data) => {
return request({
url: '/member/user/update-password-by-reset',
method: 'PUT',
url: '/member/auth/update-password-by-reset',
method: 'POST',
data,
custom: {
loadingMsg: '验证中',
@@ -82,8 +82,8 @@ const UserApi = {
// 重置密码
resetUserPassword: (data) => {
return request({
url: '/member/user/reset-password',
method: 'PUT',
url: '/member/auth/reset-password',
method: 'POST',
data,
custom: {
loadingMsg: '验证中',