Files
aishangjia-uniapp/sub_pages/user/base/height/height.vue
2023-08-04 13:14:48 +08:00

80 lines
2.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="page-wrap">
<view class="page-bg">
<u-navbar leftIconColor="#FFFFFF" :autoBack="true" bg-color="transparent" safeAreaInsetTop placeholder></u-navbar>
<view class="notice">
请如实填写个人资料真实的资料会更受欢迎
</view>
<view class="title">
你的身高是
</view>
<view class="desc">
</view>
<view class="height">
<picker-view :indicator-style="indicatorStyle" indicator-class="indicator-class" mask-class="mask-class"
:value="value" @change="bindChange" class="picker-view">
<picker-view-column>
<view class="item" :class="{current: index == value[0]}" v-for="(item,index) in heightList" :key="index">{{item}}</view>
</picker-view-column>
</picker-view>
</view>
<view class="btn-wrapper">
<u-button text="继续" color="linear-gradient(#95258d, #440a5f);" :disabled="disabled"
shape="circle" @click="handleSubmit()"></u-button>
</view>
<u-safe-bottom></u-safe-bottom>
</view>
</view>
</template>
<script>
import * as DictApi from '@/api/dict.js'
export default {
data: function() {
// const heightList = []
// for (let i = 140; i <= 200; i++) {
// heightList.push(i)
// }
return {
title: 'picker-view',
heightList: [],
height: 165,
value: [0],
indicatorStyle: `height: 50px;color: #FFF;`,
}
},
onLoad() {
this.loadData()
},
methods: {
bindChange: function(e) {
this.value = e.detail.value
},
handleSubmit(){
const userBase = uni.getStorageSync('UserBase') || {}
userBase.height = this.heightList[this.value[0]]
uni.setStorageSync("UserBase", userBase)
this.$push('/sub_pages/user/base/address/address')
},
loadData() {
DictApi.listDictionary().then(res => {
this.heightList = res.data.height[0];
this.$nextTick(()=>{
this.value = [25]
})
})
}
}
}
</script>
<style lang="scss">
@import "../base.scss";
.height{
margin-top: 200rpx;
}
</style>