af-mobile-client-vue3 1.1.6 → 1.1.7
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/.env +6 -6
- package/.env.development +4 -4
- package/.env.envoiceShow +6 -6
- package/.env.production +6 -6
- package/.husky/commit-msg +1 -1
- package/.husky/pre-commit +1 -1
- package/.vscode/settings.json +61 -61
- package/mock/modules/user.mock.ts +152 -152
- package/package.json +1 -1
- package/public/favicon.svg +4 -4
- package/public/safari-pinned-tab.svg +32 -32
- package/scripts/verifyCommit.js +19 -19
- package/src/App.vue +43 -43
- package/src/api/user/index.ts +40 -40
- package/src/bootstrap.ts +18 -18
- package/src/components/core/NavBar/index.vue +12 -12
- package/src/components/core/Tabbar/index.vue +38 -38
- package/src/components/core/XGridDropOption/index.vue +151 -151
- package/src/components/core/XMultiSelect/index.vue +183 -183
- package/src/components/data/XCellDetail/index.vue +106 -106
- package/src/components/data/XForm/index.vue +5 -0
- package/src/components/data/XFormItem/index.vue +3 -4
- package/src/components/data/XOlMap/README.md +0 -2
- package/src/components/data/XOlMap/XLocationPicker/index.vue +21 -9
- package/src/components/data/XOlMap/index.vue +81 -74
- package/src/components/data/XOlMap/types.ts +0 -4
- package/src/components/data/XOlMap/utils/wgs84ToGcj02.js +154 -154
- package/src/components/data/XReportForm/XReportFormJsonRender.vue +220 -220
- package/src/components/data/XReportForm/index.vue +1079 -1079
- package/src/components/data/XReportGrid/XAddReport/index.ts +1 -1
- package/src/components/data/XReportGrid/XReportDrawer/index.ts +1 -1
- package/src/components/data/XSignature/index.vue +285 -285
- package/src/components/data/XTag/index.vue +10 -10
- package/src/components/layout/NormalDataLayout/index.vue +70 -70
- package/src/components/layout/TabBarLayout/index.vue +40 -40
- package/src/components.d.ts +53 -53
- package/src/env.d.ts +16 -16
- package/src/font-style/font.css +3 -3
- package/src/hooks/useCommon.ts +9 -9
- package/src/locales/en-US.json +25 -25
- package/src/locales/zh-CN.json +25 -25
- package/src/plugins/AppData.ts +38 -38
- package/src/router/guards.ts +59 -59
- package/src/router/index.ts +61 -61
- package/src/router/invoiceRoutes.ts +33 -33
- package/src/services/api/common.ts +109 -109
- package/src/services/api/manage.ts +8 -8
- package/src/services/api/search.ts +16 -16
- package/src/services/restTools.ts +56 -56
- package/src/services/v3Api.ts +11 -11
- package/src/stores/modules/setting.ts +52 -52
- package/src/stores/mutation-type.ts +7 -7
- package/src/utils/authority-utils.ts +84 -84
- package/src/utils/crypto.ts +39 -39
- package/src/utils/i18n.ts +41 -41
- package/src/utils/indexedDB.ts +180 -180
- package/src/utils/mobileUtil.ts +26 -26
- package/src/utils/routerUtil.ts +271 -271
- package/src/utils/runEvalFunction.ts +13 -13
- package/src/utils/wechatUtil.ts +9 -9
- package/src/views/common/LoadError.vue +64 -64
- package/src/views/common/NotFound.vue +68 -68
- package/src/views/component/EvaluateRecordView/index.vue +40 -40
- package/src/views/component/XCellDetailView/index.vue +217 -217
- package/src/views/component/XOlMapView/XLocationPicker/index.vue +120 -120
- package/src/views/component/XOlMapView/index.vue +0 -1
- package/src/views/component/XReportFormIframeView/index.vue +47 -47
- package/src/views/component/XReportFormView/index.vue +13 -13
- package/src/views/component/XSignatureView/index.vue +50 -50
- package/src/views/component/menu.vue +117 -117
- package/src/views/component/notice.vue +46 -46
- package/src/views/component/topNav.vue +36 -36
- package/src/views/invoiceShow/index.vue +61 -61
- package/src/views/user/login/ForgetPasswordForm.vue +94 -94
- package/src/views/user/login/LoginTitle.vue +68 -68
- package/src/views/user/login/index.vue +22 -22
- package/src/views/user/my/index.vue +230 -230
- package/src/vue-router.d.ts +9 -9
- package/tsconfig.json +43 -43
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import XReportForm from '@af-mobile-client-vue3/components/data/XReportForm/index.vue'
|
|
3
|
-
|
|
4
|
-
import { onMounted, onUnmounted, ref } from 'vue'
|
|
5
|
-
|
|
6
|
-
const localConfig = ref(undefined)
|
|
7
|
-
const configName = ref(undefined)
|
|
8
|
-
const configData = ref(undefined)
|
|
9
|
-
|
|
10
|
-
function receiveMessage(event) {
|
|
11
|
-
try {
|
|
12
|
-
if (event.data && typeof event.data === 'object' && event.data.type === 'setConfig') {
|
|
13
|
-
localConfig.value = event.data.localConfig
|
|
14
|
-
configName.value = event.data.configName
|
|
15
|
-
configData.value = event.data.configData
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
catch (e) {
|
|
19
|
-
console.error(e)
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
onMounted(() => {
|
|
24
|
-
window.addEventListener('message', receiveMessage, false)
|
|
25
|
-
window.parent.postMessage('calParentSend', '*')
|
|
26
|
-
})
|
|
27
|
-
|
|
28
|
-
onUnmounted(() => {
|
|
29
|
-
window.removeEventListener('message', receiveMessage, false)
|
|
30
|
-
})
|
|
31
|
-
|
|
32
|
-
function saveConfig(_config) {
|
|
33
|
-
const config = JSON.parse(JSON.stringify(_config))
|
|
34
|
-
window.parent.postMessage({
|
|
35
|
-
type: 'saveConfig',
|
|
36
|
-
config,
|
|
37
|
-
}, '*')
|
|
38
|
-
}
|
|
39
|
-
</script>
|
|
40
|
-
|
|
41
|
-
<template>
|
|
42
|
-
<!-- 业务上只保存了data,传递的 localconfig 也是 data 这里临时吧 localconfig 作为data使用 -->
|
|
43
|
-
<XReportForm v-if="localConfig || configName" :config-name="configName" :show-nav="false" :local-config="localConfig" :config-data="configData" @save-config="saveConfig" />
|
|
44
|
-
</template>
|
|
45
|
-
|
|
46
|
-
<style scoped lang="less">
|
|
47
|
-
</style>
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import XReportForm from '@af-mobile-client-vue3/components/data/XReportForm/index.vue'
|
|
3
|
+
|
|
4
|
+
import { onMounted, onUnmounted, ref } from 'vue'
|
|
5
|
+
|
|
6
|
+
const localConfig = ref(undefined)
|
|
7
|
+
const configName = ref(undefined)
|
|
8
|
+
const configData = ref(undefined)
|
|
9
|
+
|
|
10
|
+
function receiveMessage(event) {
|
|
11
|
+
try {
|
|
12
|
+
if (event.data && typeof event.data === 'object' && event.data.type === 'setConfig') {
|
|
13
|
+
localConfig.value = event.data.localConfig
|
|
14
|
+
configName.value = event.data.configName
|
|
15
|
+
configData.value = event.data.configData
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
catch (e) {
|
|
19
|
+
console.error(e)
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
onMounted(() => {
|
|
24
|
+
window.addEventListener('message', receiveMessage, false)
|
|
25
|
+
window.parent.postMessage('calParentSend', '*')
|
|
26
|
+
})
|
|
27
|
+
|
|
28
|
+
onUnmounted(() => {
|
|
29
|
+
window.removeEventListener('message', receiveMessage, false)
|
|
30
|
+
})
|
|
31
|
+
|
|
32
|
+
function saveConfig(_config) {
|
|
33
|
+
const config = JSON.parse(JSON.stringify(_config))
|
|
34
|
+
window.parent.postMessage({
|
|
35
|
+
type: 'saveConfig',
|
|
36
|
+
config,
|
|
37
|
+
}, '*')
|
|
38
|
+
}
|
|
39
|
+
</script>
|
|
40
|
+
|
|
41
|
+
<template>
|
|
42
|
+
<!-- 业务上只保存了data,传递的 localconfig 也是 data 这里临时吧 localconfig 作为data使用 -->
|
|
43
|
+
<XReportForm v-if="localConfig || configName" :config-name="configName" :show-nav="false" :local-config="localConfig" :config-data="configData" @save-config="saveConfig" />
|
|
44
|
+
</template>
|
|
45
|
+
|
|
46
|
+
<style scoped lang="less">
|
|
47
|
+
</style>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import XReportForm from '@af-mobile-client-vue3/components/data/XReportForm/index.vue'
|
|
3
|
-
import { ref } from 'vue'
|
|
4
|
-
|
|
5
|
-
const configName = ref('ceshi1')
|
|
6
|
-
</script>
|
|
7
|
-
|
|
8
|
-
<template>
|
|
9
|
-
<XReportForm :config-name="configName" />
|
|
10
|
-
</template>
|
|
11
|
-
|
|
12
|
-
<style scoped lang="less">
|
|
13
|
-
</style>
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import XReportForm from '@af-mobile-client-vue3/components/data/XReportForm/index.vue'
|
|
3
|
+
import { ref } from 'vue'
|
|
4
|
+
|
|
5
|
+
const configName = ref('ceshi1')
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<template>
|
|
9
|
+
<XReportForm :config-name="configName" />
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<style scoped lang="less">
|
|
13
|
+
</style>
|
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import XSignature from '@af-mobile-client-vue3/components/data/XSignature/index.vue'
|
|
3
|
-
import NormalDataLayout from '@af-mobile-client-vue3/components/layout/NormalDataLayout/index.vue'
|
|
4
|
-
import { showToast, Image as VanImage } from 'vant'
|
|
5
|
-
import { ref } from 'vue'
|
|
6
|
-
|
|
7
|
-
const signatureImage = ref('')
|
|
8
|
-
|
|
9
|
-
function handleSave() {
|
|
10
|
-
showToast('签名已保存')
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
function handleClear() {
|
|
14
|
-
showToast('签名已清除')
|
|
15
|
-
}
|
|
16
|
-
</script>
|
|
17
|
-
|
|
18
|
-
<template>
|
|
19
|
-
<NormalDataLayout title="签名组件">
|
|
20
|
-
<template #layout_content>
|
|
21
|
-
基础使用
|
|
22
|
-
<div class="signature-demo">
|
|
23
|
-
<XSignature v-model="signatureImage" @save="handleSave" @clear="handleClear" />
|
|
24
|
-
<div v-if="signatureImage" class="preview">
|
|
25
|
-
<h3>预览签名</h3>
|
|
26
|
-
<VanImage v-if="signatureImage" :src="signatureImage" />
|
|
27
|
-
</div>
|
|
28
|
-
</div>
|
|
29
|
-
</template>
|
|
30
|
-
</NormalDataLayout>
|
|
31
|
-
</template>
|
|
32
|
-
|
|
33
|
-
<style scoped lang="less">
|
|
34
|
-
.signature-demo {
|
|
35
|
-
padding: 16px;
|
|
36
|
-
.preview {
|
|
37
|
-
margin-top: 20px;
|
|
38
|
-
h3 {
|
|
39
|
-
margin: 0 0 10px;
|
|
40
|
-
font-size: 16px;
|
|
41
|
-
color: #323233;
|
|
42
|
-
}
|
|
43
|
-
img {
|
|
44
|
-
max-width: 100%;
|
|
45
|
-
border: 1px solid #ebedf0;
|
|
46
|
-
border-radius: 8px;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
</style>
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import XSignature from '@af-mobile-client-vue3/components/data/XSignature/index.vue'
|
|
3
|
+
import NormalDataLayout from '@af-mobile-client-vue3/components/layout/NormalDataLayout/index.vue'
|
|
4
|
+
import { showToast, Image as VanImage } from 'vant'
|
|
5
|
+
import { ref } from 'vue'
|
|
6
|
+
|
|
7
|
+
const signatureImage = ref('')
|
|
8
|
+
|
|
9
|
+
function handleSave() {
|
|
10
|
+
showToast('签名已保存')
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function handleClear() {
|
|
14
|
+
showToast('签名已清除')
|
|
15
|
+
}
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<template>
|
|
19
|
+
<NormalDataLayout title="签名组件">
|
|
20
|
+
<template #layout_content>
|
|
21
|
+
基础使用
|
|
22
|
+
<div class="signature-demo">
|
|
23
|
+
<XSignature v-model="signatureImage" @save="handleSave" @clear="handleClear" />
|
|
24
|
+
<div v-if="signatureImage" class="preview">
|
|
25
|
+
<h3>预览签名</h3>
|
|
26
|
+
<VanImage v-if="signatureImage" :src="signatureImage" />
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
</NormalDataLayout>
|
|
31
|
+
</template>
|
|
32
|
+
|
|
33
|
+
<style scoped lang="less">
|
|
34
|
+
.signature-demo {
|
|
35
|
+
padding: 16px;
|
|
36
|
+
.preview {
|
|
37
|
+
margin-top: 20px;
|
|
38
|
+
h3 {
|
|
39
|
+
margin: 0 0 10px;
|
|
40
|
+
font-size: 16px;
|
|
41
|
+
color: #323233;
|
|
42
|
+
}
|
|
43
|
+
img {
|
|
44
|
+
max-width: 100%;
|
|
45
|
+
border: 1px solid #ebedf0;
|
|
46
|
+
border-radius: 8px;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
</style>
|
|
@@ -1,117 +1,117 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import useUserStore from '@af-mobile-client-vue3/stores/modules/user'
|
|
3
|
-
import { getImageUrl } from '@af-mobile-client-vue3/utils/common'
|
|
4
|
-
import {
|
|
5
|
-
Grid as VanGrid,
|
|
6
|
-
GridItem as VanGridItem,
|
|
7
|
-
Swipe as VanSwipe,
|
|
8
|
-
SwipeItem as VanSwipeItem,
|
|
9
|
-
} from 'vant/es'
|
|
10
|
-
|
|
11
|
-
const apps = {
|
|
12
|
-
测试图标1: {
|
|
13
|
-
remark: '测试图标1',
|
|
14
|
-
icon: 'assets/img/apps/safe-check-web.png',
|
|
15
|
-
},
|
|
16
|
-
测试图标2: {
|
|
17
|
-
remark: '报装',
|
|
18
|
-
icon: 'assets/img/apps/apply-web.png',
|
|
19
|
-
},
|
|
20
|
-
测试图标3: {
|
|
21
|
-
remark: '营收',
|
|
22
|
-
icon: 'assets/img/apps/revenue-web.png',
|
|
23
|
-
},
|
|
24
|
-
测试图标4: {
|
|
25
|
-
remark: '物联网表',
|
|
26
|
-
icon: 'assets/img/apps/iot-web.png',
|
|
27
|
-
},
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
const images = [
|
|
31
|
-
'../assets/img/home/banner1.png',
|
|
32
|
-
'../assets/img/home/banner2.png',
|
|
33
|
-
'../assets/img/home/banner3.png',
|
|
34
|
-
'../assets/img/home/banner4.png',
|
|
35
|
-
]
|
|
36
|
-
|
|
37
|
-
interface Func {
|
|
38
|
-
link: string
|
|
39
|
-
navigate?: string
|
|
40
|
-
module: any
|
|
41
|
-
name: string
|
|
42
|
-
children?: Array<Func>
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
interface App {
|
|
46
|
-
module: Func
|
|
47
|
-
icon: string
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
function initAppMenu(func: Array<Func> | undefined) {
|
|
51
|
-
const functions = []
|
|
52
|
-
if (func && func.length > 0) {
|
|
53
|
-
for (let index = 0; index < func.length; index++) {
|
|
54
|
-
const module = func[index]
|
|
55
|
-
const app = apps[module.link]
|
|
56
|
-
if (app) {
|
|
57
|
-
functions.push({
|
|
58
|
-
module,
|
|
59
|
-
icon: app.icon,
|
|
60
|
-
})
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
return functions
|
|
64
|
-
}
|
|
65
|
-
return []
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
const appList: Array<App> = initAppMenu(useUserStore().getUserInfo().functions)
|
|
69
|
-
console.warn(appList)
|
|
70
|
-
</script>
|
|
71
|
-
|
|
72
|
-
<template>
|
|
73
|
-
<div class="menu_main">
|
|
74
|
-
<VanSwipe class="my-swipe" :autoplay="3000" lazy-render>
|
|
75
|
-
<VanSwipeItem v-for="image in images" :key="image">
|
|
76
|
-
<img :src="getImageUrl(image)" width="100%" height="100%">
|
|
77
|
-
</VanSwipeItem>
|
|
78
|
-
</VanSwipe>
|
|
79
|
-
<VanGrid :border="false">
|
|
80
|
-
<VanGridItem v-for="app in appList" :key="app.module.link" :to="`app/${app.module.link}`">
|
|
81
|
-
<img class="app_icon" :src="getImageUrl(app.icon, '../')">
|
|
82
|
-
<span class="app_title">{{ app.module.name }}</span>
|
|
83
|
-
</VanGridItem>
|
|
84
|
-
</VanGrid>
|
|
85
|
-
</div>
|
|
86
|
-
</template>
|
|
87
|
-
|
|
88
|
-
<style scoped lang="less">
|
|
89
|
-
.menu_main {
|
|
90
|
-
margin-bottom: var(--base-interval-2)
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.my-swipe {
|
|
94
|
-
margin-bottom: 4px;
|
|
95
|
-
|
|
96
|
-
img {
|
|
97
|
-
border-radius: 4px;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
:deep(.van-swipe__indicator--active) {
|
|
102
|
-
width: 16px;
|
|
103
|
-
background: #fff;
|
|
104
|
-
border-radius: 16px;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.app_icon {
|
|
108
|
-
width: 42px;
|
|
109
|
-
height: 42px;
|
|
110
|
-
margin-bottom: 6px;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.app_title {
|
|
114
|
-
font-size: 12px;
|
|
115
|
-
color: #000;
|
|
116
|
-
}
|
|
117
|
-
</style>
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import useUserStore from '@af-mobile-client-vue3/stores/modules/user'
|
|
3
|
+
import { getImageUrl } from '@af-mobile-client-vue3/utils/common'
|
|
4
|
+
import {
|
|
5
|
+
Grid as VanGrid,
|
|
6
|
+
GridItem as VanGridItem,
|
|
7
|
+
Swipe as VanSwipe,
|
|
8
|
+
SwipeItem as VanSwipeItem,
|
|
9
|
+
} from 'vant/es'
|
|
10
|
+
|
|
11
|
+
const apps = {
|
|
12
|
+
测试图标1: {
|
|
13
|
+
remark: '测试图标1',
|
|
14
|
+
icon: 'assets/img/apps/safe-check-web.png',
|
|
15
|
+
},
|
|
16
|
+
测试图标2: {
|
|
17
|
+
remark: '报装',
|
|
18
|
+
icon: 'assets/img/apps/apply-web.png',
|
|
19
|
+
},
|
|
20
|
+
测试图标3: {
|
|
21
|
+
remark: '营收',
|
|
22
|
+
icon: 'assets/img/apps/revenue-web.png',
|
|
23
|
+
},
|
|
24
|
+
测试图标4: {
|
|
25
|
+
remark: '物联网表',
|
|
26
|
+
icon: 'assets/img/apps/iot-web.png',
|
|
27
|
+
},
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const images = [
|
|
31
|
+
'../assets/img/home/banner1.png',
|
|
32
|
+
'../assets/img/home/banner2.png',
|
|
33
|
+
'../assets/img/home/banner3.png',
|
|
34
|
+
'../assets/img/home/banner4.png',
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
interface Func {
|
|
38
|
+
link: string
|
|
39
|
+
navigate?: string
|
|
40
|
+
module: any
|
|
41
|
+
name: string
|
|
42
|
+
children?: Array<Func>
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
interface App {
|
|
46
|
+
module: Func
|
|
47
|
+
icon: string
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function initAppMenu(func: Array<Func> | undefined) {
|
|
51
|
+
const functions = []
|
|
52
|
+
if (func && func.length > 0) {
|
|
53
|
+
for (let index = 0; index < func.length; index++) {
|
|
54
|
+
const module = func[index]
|
|
55
|
+
const app = apps[module.link]
|
|
56
|
+
if (app) {
|
|
57
|
+
functions.push({
|
|
58
|
+
module,
|
|
59
|
+
icon: app.icon,
|
|
60
|
+
})
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
return functions
|
|
64
|
+
}
|
|
65
|
+
return []
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
const appList: Array<App> = initAppMenu(useUserStore().getUserInfo().functions)
|
|
69
|
+
console.warn(appList)
|
|
70
|
+
</script>
|
|
71
|
+
|
|
72
|
+
<template>
|
|
73
|
+
<div class="menu_main">
|
|
74
|
+
<VanSwipe class="my-swipe" :autoplay="3000" lazy-render>
|
|
75
|
+
<VanSwipeItem v-for="image in images" :key="image">
|
|
76
|
+
<img :src="getImageUrl(image)" width="100%" height="100%">
|
|
77
|
+
</VanSwipeItem>
|
|
78
|
+
</VanSwipe>
|
|
79
|
+
<VanGrid :border="false">
|
|
80
|
+
<VanGridItem v-for="app in appList" :key="app.module.link" :to="`app/${app.module.link}`">
|
|
81
|
+
<img class="app_icon" :src="getImageUrl(app.icon, '../')">
|
|
82
|
+
<span class="app_title">{{ app.module.name }}</span>
|
|
83
|
+
</VanGridItem>
|
|
84
|
+
</VanGrid>
|
|
85
|
+
</div>
|
|
86
|
+
</template>
|
|
87
|
+
|
|
88
|
+
<style scoped lang="less">
|
|
89
|
+
.menu_main {
|
|
90
|
+
margin-bottom: var(--base-interval-2)
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.my-swipe {
|
|
94
|
+
margin-bottom: 4px;
|
|
95
|
+
|
|
96
|
+
img {
|
|
97
|
+
border-radius: 4px;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
:deep(.van-swipe__indicator--active) {
|
|
102
|
+
width: 16px;
|
|
103
|
+
background: #fff;
|
|
104
|
+
border-radius: 16px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.app_icon {
|
|
108
|
+
width: 42px;
|
|
109
|
+
height: 42px;
|
|
110
|
+
margin-bottom: 6px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.app_title {
|
|
114
|
+
font-size: 12px;
|
|
115
|
+
color: #000;
|
|
116
|
+
}
|
|
117
|
+
</style>
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import { getImageUrl } from '@af-mobile-client-vue3/utils/common'
|
|
3
|
-
import {
|
|
4
|
-
Divider as VanDivider,
|
|
5
|
-
NoticeBar as VanNoticeBar,
|
|
6
|
-
} from 'vant/es'
|
|
7
|
-
</script>
|
|
8
|
-
|
|
9
|
-
<template>
|
|
10
|
-
<div>
|
|
11
|
-
<VanNoticeBar class="notice" color="#1989fa" background="#ebf2fb" mode="link">
|
|
12
|
-
<img class="notice_icon" :src="getImageUrl('../assets/img/home/notice/icon.png')">
|
|
13
|
-
<span class="notice_title">
|
|
14
|
-
消息中心<VanDivider vertical :style="{ borderColor: '#1989fa' }" />
|
|
15
|
-
</span>
|
|
16
|
-
<span class="notice_content">
|
|
17
|
-
您有0条未读消息
|
|
18
|
-
</span>
|
|
19
|
-
</VanNoticeBar>
|
|
20
|
-
</div>
|
|
21
|
-
</template>
|
|
22
|
-
|
|
23
|
-
<style scoped lang="less">
|
|
24
|
-
.notice {
|
|
25
|
-
font-size: 14px;
|
|
26
|
-
margin-bottom: var(--base-interval-1);
|
|
27
|
-
.notice_icon {
|
|
28
|
-
width: 30px;
|
|
29
|
-
height: 30px;
|
|
30
|
-
vertical-align: middle;
|
|
31
|
-
position: relative;
|
|
32
|
-
bottom: 2px;
|
|
33
|
-
}
|
|
34
|
-
.notice_title {
|
|
35
|
-
padding-left: 4px;
|
|
36
|
-
line-height: 50px;
|
|
37
|
-
}
|
|
38
|
-
.notice_content {
|
|
39
|
-
color: #000;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
:deep(.van-notice-bar) {
|
|
43
|
-
height: 50px;
|
|
44
|
-
padding: 0 8px;
|
|
45
|
-
}
|
|
46
|
-
</style>
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { getImageUrl } from '@af-mobile-client-vue3/utils/common'
|
|
3
|
+
import {
|
|
4
|
+
Divider as VanDivider,
|
|
5
|
+
NoticeBar as VanNoticeBar,
|
|
6
|
+
} from 'vant/es'
|
|
7
|
+
</script>
|
|
8
|
+
|
|
9
|
+
<template>
|
|
10
|
+
<div>
|
|
11
|
+
<VanNoticeBar class="notice" color="#1989fa" background="#ebf2fb" mode="link">
|
|
12
|
+
<img class="notice_icon" :src="getImageUrl('../assets/img/home/notice/icon.png')">
|
|
13
|
+
<span class="notice_title">
|
|
14
|
+
消息中心<VanDivider vertical :style="{ borderColor: '#1989fa' }" />
|
|
15
|
+
</span>
|
|
16
|
+
<span class="notice_content">
|
|
17
|
+
您有0条未读消息
|
|
18
|
+
</span>
|
|
19
|
+
</VanNoticeBar>
|
|
20
|
+
</div>
|
|
21
|
+
</template>
|
|
22
|
+
|
|
23
|
+
<style scoped lang="less">
|
|
24
|
+
.notice {
|
|
25
|
+
font-size: 14px;
|
|
26
|
+
margin-bottom: var(--base-interval-1);
|
|
27
|
+
.notice_icon {
|
|
28
|
+
width: 30px;
|
|
29
|
+
height: 30px;
|
|
30
|
+
vertical-align: middle;
|
|
31
|
+
position: relative;
|
|
32
|
+
bottom: 2px;
|
|
33
|
+
}
|
|
34
|
+
.notice_title {
|
|
35
|
+
padding-left: 4px;
|
|
36
|
+
line-height: 50px;
|
|
37
|
+
}
|
|
38
|
+
.notice_content {
|
|
39
|
+
color: #000;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
:deep(.van-notice-bar) {
|
|
43
|
+
height: 50px;
|
|
44
|
+
padding: 0 8px;
|
|
45
|
+
}
|
|
46
|
+
</style>
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
Col as VanCol,
|
|
4
|
-
Row as VanRow,
|
|
5
|
-
Search as VanSearch,
|
|
6
|
-
} from 'vant/es'
|
|
7
|
-
import { ref } from 'vue'
|
|
8
|
-
|
|
9
|
-
const value = ref('')
|
|
10
|
-
</script>
|
|
11
|
-
|
|
12
|
-
<template>
|
|
13
|
-
<div class="top_nav_main">
|
|
14
|
-
<VanRow gutter="54" align="center">
|
|
15
|
-
<VanCol span="2">
|
|
16
|
-
<img alt="default-user-profile" class="default_user_profile" src="../../assets/common/default-user-profile.png">
|
|
17
|
-
</VanCol>
|
|
18
|
-
<VanCol span="22">
|
|
19
|
-
<VanSearch v-model="value" placeholder="请输入搜索关键词" />
|
|
20
|
-
</VanCol>
|
|
21
|
-
</VanRow>
|
|
22
|
-
</div>
|
|
23
|
-
</template>
|
|
24
|
-
|
|
25
|
-
<style scoped lang="less">
|
|
26
|
-
.top_nav_main {
|
|
27
|
-
padding-bottom: var(--base-interval-1);
|
|
28
|
-
}
|
|
29
|
-
.default_user_profile {
|
|
30
|
-
border-radius: 50%;
|
|
31
|
-
width: 33px;
|
|
32
|
-
height: 33px;
|
|
33
|
-
position: relative;
|
|
34
|
-
top: 2px;
|
|
35
|
-
}
|
|
36
|
-
</style>
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import {
|
|
3
|
+
Col as VanCol,
|
|
4
|
+
Row as VanRow,
|
|
5
|
+
Search as VanSearch,
|
|
6
|
+
} from 'vant/es'
|
|
7
|
+
import { ref } from 'vue'
|
|
8
|
+
|
|
9
|
+
const value = ref('')
|
|
10
|
+
</script>
|
|
11
|
+
|
|
12
|
+
<template>
|
|
13
|
+
<div class="top_nav_main">
|
|
14
|
+
<VanRow gutter="54" align="center">
|
|
15
|
+
<VanCol span="2">
|
|
16
|
+
<img alt="default-user-profile" class="default_user_profile" src="../../assets/common/default-user-profile.png">
|
|
17
|
+
</VanCol>
|
|
18
|
+
<VanCol span="22">
|
|
19
|
+
<VanSearch v-model="value" placeholder="请输入搜索关键词" />
|
|
20
|
+
</VanCol>
|
|
21
|
+
</VanRow>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
|
|
25
|
+
<style scoped lang="less">
|
|
26
|
+
.top_nav_main {
|
|
27
|
+
padding-bottom: var(--base-interval-1);
|
|
28
|
+
}
|
|
29
|
+
.default_user_profile {
|
|
30
|
+
border-radius: 50%;
|
|
31
|
+
width: 33px;
|
|
32
|
+
height: 33px;
|
|
33
|
+
position: relative;
|
|
34
|
+
top: 2px;
|
|
35
|
+
}
|
|
36
|
+
</style>
|