需要添加客服,二维码,扫码功能

This commit is contained in:
bobobobo
2026-01-14 23:38:29 +08:00
parent db1b797b68
commit 220b12e945
21 changed files with 721 additions and 182 deletions

View File

@@ -5,6 +5,7 @@
import { chooseImage } from '@/utils/media.js'
import { uploadSingleFile } from '@/utils/uploadFile'
import { useUserStore } from '@/stores/user'
import { navigateTo } from '../../../utils/router'
const { updateUserInfo } = useUserStore()
@@ -35,6 +36,10 @@
perSignature: ''
})
const upInfo = (key, value) => {
if (key === '1') {
navigateTo('/pages/my-index/qr-code/index')
return
}
if (MODIFY_KEY.includes(key)) {
const titleData = {
3: '昵称',
@@ -46,6 +51,7 @@
popupData.title = titleData
popupData.name = userInfo.value[value]
popupData.show = true
return
}
}