app/pages/me/chooseProvince.nvue

107 lines
1.8 KiB
Plaintext
Raw Normal View History

2025-03-28 15:46:11 +08:00
<template>
2025-04-25 18:10:54 +08:00
<view class="page">
<view class="line"></view>
2025-03-28 15:46:11 +08:00
2025-04-25 18:10:54 +08:00
<scroll-view scroll-y="true">
<view
v-for="(item, index) in provinceList"
class="item"
:class="{ active: index == activeIndex }"
:key="index"
@click="chooseLocation(item.province_id, item.province_name)"
@touchstart="touchstartLocation(index)"
@touchend="touchendLocation"
>
<text class="item-text">
{{ item.province_name }}
</text>
2025-03-28 15:46:11 +08:00
2025-04-25 18:10:54 +08:00
<view class="right-part">
<image
class="right-arrow"
src="/static/images/icon-right-arrow2.png"
></image>
</view>
</view>
</scroll-view>
</view>
2025-03-28 15:46:11 +08:00
</template>
<script>
2025-04-25 18:10:54 +08:00
import storage from '@/utils/storage.js'; //缓存
import provinceList from '@/json/area_province.js';
2025-03-28 15:46:11 +08:00
export default {
2025-04-25 18:10:54 +08:00
data() {
return {
provinceList: [],
activeIndex: -1
};
},
onLoad() {
this.provinceList = provinceList;
},
methods: {
touchstartLocation(index) {
this.activeIndex = index;
},
touchendLocation() {
this.activeIndex = -1;
},
2025-03-28 15:46:11 +08:00
2025-04-25 18:10:54 +08:00
chooseLocation(provinceId, provinceName) {
uni.setStorageSync('myLocationProvince', provinceName);
uni.navigateTo({
url: 'chooseCity?provinceId=' + provinceId
});
}
}
2025-03-28 15:46:11 +08:00
};
</script>
2025-04-25 18:10:54 +08:00
<style scoped>
.right-arrow {
width: 32rpx;
height: 32rpx;
margin-left: 20rpx;
}
.line {
height: 1rpx;
background-color: #393a41;
width: 750rpx;
}
.item-text {
color: #ffffff;
align-items: center;
font-size: 30rpx;
}
2025-03-28 15:46:11 +08:00
2025-04-25 18:10:54 +08:00
.right-part {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
.item {
padding-left: 30rpx;
padding-right: 30rpx;
width: 750rpx;
height: 120rpx;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
2025-03-28 15:46:11 +08:00
2025-04-25 18:10:54 +08:00
.active {
background-color: #4a4c52;
}
.page {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: #181b27;
2025-03-28 15:46:11 +08:00
}
</style>