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="ul"> <view class="li" v-for="(item,index) in 3" :key="index" @click="chooseItem(item)">1-1-101</view> </view> </view> </template>
<script> export default { data() { return { } }, methods: { chooseItem(item) { this.$goPage('/pages/subPage/authentication/authentication') } } } </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>
|