You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="content padding"> <view class="tit">选择小区</view> <view class="searchBox"> <searchRow placeholder="请输入小区名称"/> </view> <view class="poz flex-b"> <view class="lab">当前定位城市</view> <view class="flex"> <view class="icon"> <image src="@/static/images/pozicon.png" mode=""></image> </view> <view class="city">杭州市</view> </view> </view> <view class="huicity">杭州市</view> <view class="ul"> <view class="li" v-for="(item,index) in 3" :key="index" @click="chooseItem(item)">小区名称</view> </view> </view> </template>
<script> export default { data() { return { } }, methods: { chooseItem(item) { this.$goPage('/pages/subPage/authentication/comp/select2') } } } </script>
<style lang="scss" scoped> image { display: block; width: 100%; height: 100%; } .content { .tit { font-size: 54rpx; color: #2E2E2E; padding: 40rpx 0 30rpx 0; } .searchBox { height: 68rpx; } .poz { height: 86rpx; .lab { font-size: 28rpx; } .flex { .icon { width: 32rpx; height: 32rpx; } .city { font-size: 28rpx; margin-left: 10rpx; color: $themC; } } } .huicity { width: 100%; height: 48rpx; background: #EFEFEF; border-radius: 10rpx; line-height: 48rpx; color: #9C9C9C; font-size: 28rpx; line-height: 48rpx; padding-left: 20rpx; } .ul { width: 100%; .li { width: 100%; height: 94rpx; line-height: 94rpx; font-size: 36rpx; border-bottom: 1px solid #EFEFEF; } } } </style>
|