af-mobile-client-vue3 1.4.33 → 1.4.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +117 -117
- package/src/api/user/index.ts +45 -45
- package/src/components/data/OtherCharge/OtherChargeGroupModal.vue +542 -542
- package/src/router/guards.ts +131 -131
- package/src/services/api/Login.ts +6 -6
- package/src/services/v3Api.ts +170 -170
- package/src/types/platform.ts +194 -194
- package/src/utils/platform-auth.ts +150 -150
- package/src/utils/wechat.ts +297 -297
- package/src/views/external/index.vue +158 -158
- package/src/views/loading/AuthLoading.vue +395 -395
- package/src/views/user/my/comm/ModifyPassword.vue +2 -1
- package/src/views/user/register/index.vue +958 -958
- package/vite.config.ts +115 -115
- package/certs/127.0.0.1+2-key.pem +0 -28
- package/certs/127.0.0.1+2.pem +0 -27
- package/mock/modules/prose.mock.ts.timestamp-1758877157774.mjs +0 -53
- package/mock/modules/user.mock.ts.timestamp-1758877157774.mjs +0 -97
|
@@ -126,7 +126,8 @@ function closeModal() {
|
|
|
126
126
|
async function handleModifyPassword(data: any) {
|
|
127
127
|
try {
|
|
128
128
|
const res = await modifyPassword(data)
|
|
129
|
-
|
|
129
|
+
const resData = JSON.parse(res)
|
|
130
|
+
if (resData && resData.code === 200) {
|
|
130
131
|
return {
|
|
131
132
|
success: true,
|
|
132
133
|
message: '修改成功',
|