af-mobile-client-vue3 1.3.77 → 1.3.78
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/certs/127.0.0.1+2-key.pem +28 -0
- package/certs/127.0.0.1+2.pem +27 -0
- package/package.json +115 -115
- package/src/App.vue +1 -1
- package/src/api/user/index.ts +45 -45
- package/src/components/data/XFormItem/index.vue +1431 -1409
- package/src/router/guards.ts +131 -131
- package/src/router/routes.ts +421 -421
- package/src/services/api/Login.ts +6 -6
- package/src/services/v3Api.ts +166 -147
- package/src/stores/modules/user.ts +1 -1
- package/src/styles/login.less +109 -109
- 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/loading/AuthLoading.vue +378 -378
- package/src/views/user/my/comm/ModifyPassword.vue +5 -1
- package/src/views/user/my/index.vue +14 -12
- package/src/views/user/register/index.vue +1 -1
|
@@ -329,14 +329,18 @@ watch(() => props.visible, (newVal) => {
|
|
|
329
329
|
.van-field__label {
|
|
330
330
|
color: #333;
|
|
331
331
|
font-weight: 500;
|
|
332
|
+
display: flex;
|
|
333
|
+
align-items: center;
|
|
332
334
|
}
|
|
333
335
|
|
|
334
336
|
.van-field__control {
|
|
335
337
|
color: #333;
|
|
338
|
+
padding-right: 40px;
|
|
336
339
|
}
|
|
337
340
|
|
|
338
341
|
.van-field__right-icon {
|
|
339
|
-
padding:
|
|
342
|
+
padding: 8px;
|
|
343
|
+
min-width: 32px;
|
|
340
344
|
}
|
|
341
345
|
}
|
|
342
346
|
|
|
@@ -3,7 +3,8 @@ import type { PhoneLocationStatus } from '@af-mobile-client-vue3/components/data
|
|
|
3
3
|
import useSettingStore from '@af-mobile-client-vue3/stores/modules/setting'
|
|
4
4
|
import useUserStore from '@af-mobile-client-vue3/stores/modules/user'
|
|
5
5
|
import { mobileUtil } from '@af-mobile-client-vue3/utils/mobileUtil'
|
|
6
|
-
import { Dialog as vanDialog, Icon as vanIcon
|
|
6
|
+
import { Dialog as vanDialog, Icon as vanIcon, Sticky as VanSticky,
|
|
7
|
+
} from 'vant'
|
|
7
8
|
import { computed, onMounted, onUnmounted, ref } from 'vue'
|
|
8
9
|
import { useRouter } from 'vue-router'
|
|
9
10
|
import ModifyPassword from './comm/ModifyPassword.vue'
|
|
@@ -155,16 +156,18 @@ const webMobileConfig = useSettingStore().getSetting()
|
|
|
155
156
|
<template>
|
|
156
157
|
<main class="my_main">
|
|
157
158
|
<!-- 顶部导航栏 -->
|
|
158
|
-
<
|
|
159
|
-
<
|
|
160
|
-
<
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
159
|
+
<VanSticky :offset-top="0">
|
|
160
|
+
<nav class="header_nav">
|
|
161
|
+
<div class="header_content">
|
|
162
|
+
<h1 class="main_title">
|
|
163
|
+
我的
|
|
164
|
+
</h1>
|
|
165
|
+
<!-- <div class="setting_section"> -->
|
|
166
|
+
<!-- <van-icon name="setting-o" class="setting-icon" /> -->
|
|
167
|
+
<!-- </div> -->
|
|
168
|
+
</div>
|
|
169
|
+
</nav>
|
|
170
|
+
</VanSticky>
|
|
168
171
|
|
|
169
172
|
<!-- 主要内容区域 -->
|
|
170
173
|
<div class="content">
|
|
@@ -276,7 +279,6 @@ const webMobileConfig = useSettingStore().getSetting()
|
|
|
276
279
|
|
|
277
280
|
<style scoped lang="less">
|
|
278
281
|
.my_main {
|
|
279
|
-
min-height: 100vh;
|
|
280
282
|
background-color: #f7f8fa;
|
|
281
283
|
|
|
282
284
|
// 顶部导航栏
|