vue3-vant4-mobile/src/views/my/EditUserInfo.vue
xiangshu233 1e8f780b78 refactor: ♻️ 修复原子化 css 移动端适配问题
在写原子化 css 的时候通过 unocss 的 presetRemToPx 预设它可以原子化默认 rem 转换成 px,最后再由 postcss 把 px 转成 vw,从而让我们无痛使用原子化css

closed #6, #20
2024-02-20 21:28:56 +08:00

184 lines
4.1 KiB
Vue

<template>
<div>
<NavBar />
<van-divider>基本信息</van-divider>
<van-field
label="头像"
label-class="font-bold"
input-align="right"
:center="true"
:border="false"
is-link
readonly
>
<template #input>
<UploaderImage>
<van-image
class="h-16 w-16"
round fit="cover"
:src="avatar"
/>
</UploaderImage>
</template>
</van-field>
<van-field
v-model="state.nickname"
label="昵称"
readonly
label-class="font-bold"
input-align="right"
:center="true"
:border="false"
is-link
to="/editNickname"
/>
<van-field
v-model="state.genderText"
label="性别"
readonly
label-class="font-bold"
input-align="right"
:center="true"
:border="false"
is-link
@click="showGenderPicker = true"
/>
<van-field
v-model="state.sign"
label="签名"
readonly
label-class="font-bold"
input-align="right"
:center="true"
:border="false"
is-link
to="/editSign"
/>
<van-field
label="主页封面"
label-class="font-bold"
input-align="right"
:center="true"
:border="false"
is-link
readonly
>
<template #input>
<UploaderImage>
<van-image
class="cover h-15 w-25"
fit="cover"
:src="cover ? cover : avatar"
/>
</UploaderImage>
</template>
</van-field>
<van-field
v-model="state.industryText"
label="行业"
readonly
label-class="font-bold"
input-align="right"
:center="true"
:border="false"
is-link
@click="showIndustryPicker = true"
/>
<van-popup v-model:show="showGenderPicker" position="bottom" round>
<van-picker
v-model="state.genderValues"
visible-option-num="3"
:columns="genderColumns"
@confirm="handleGender"
@cancel="showGenderPicker = false"
/>
</van-popup>
<van-popup v-model:show="showIndustryPicker" position="bottom" round>
<van-picker
v-model="state.industryValues"
:columns="industryColumns"
@confirm="handleIndustry"
@cancel="showIndustryPicker = false"
/>
</van-popup>
</div>
</template>
<script setup lang="ts">
import { onMounted, reactive, ref } from 'vue'
import { showToast } from 'vant'
import NavBar from './components/NavBar.vue'
import UploaderImage from './components/UploaderImage.vue'
import type { FormColumns } from './pickColumns'
import { genderColumns, industryColumns } from './pickColumns'
import { useUserStore } from '@/store/modules/user'
const userStore = useUserStore()
const { avatar, gender, industry, cover } = userStore.getUserInfo
const showGenderPicker = ref(false)
const showIndustryPicker = ref(false)
const state = reactive({
nickname: '',
sign: '',
genderText: '',
industryText: '',
industryValues: [0],
genderValues: [0],
})
function handleGender({ selectedOptions }) {
state.genderText = selectedOptions[0].text
showToast(JSON.stringify(selectedOptions))
// do something
showGenderPicker.value = false
}
function handleIndustry({ selectedOptions }) {
state.industryText = selectedOptions[0].text
showToast(JSON.stringify(selectedOptions))
// do something
showIndustryPicker.value = false
}
function getFromText(columns: FormColumns[], value = 0) {
return columns.find(item => item.value === value)?.text
}
function initState() {
Object.keys(state).forEach((key) => {
state[key] = userStore.getUserInfo[key]
})
// set field text value.
state.genderText = getFromText(genderColumns, gender) ?? ''
state.industryText = getFromText(industryColumns, industry) ?? ''
// set the pick selected value.
state.industryValues = [industry ?? 0]
state.genderValues = [gender]
}
onMounted(() => {
initState()
})
</script>
<style scoped lang="less">
.cover {
:deep(.van-image__img) {
border-radius: 10px !important;
}
}
:deep(.van-field__control) {
color: var(--van-text-color-2);
}
</style>