| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <template>
- <view :class="$isEmpty(unit_list)?'empty-wrap':''">
- <view class="bg-gray" style="padding: 16rpx 30rpx;">
- <text >当前选择小区:</text>
- </view>
- <view class="bg-white" style="padding:30rpx 30rpx 20rpx 30rpx;border-bottom: 1rpx solid #efefef;display: flex;justify-content: space-between;">
- <view class="text-blue">
- <text class="">{{residential_name}}</text>
- </view>
- <view class="cu-btn line-blue sm round" @tap="change">
- <text class="cuIcon-refresh padding-right-10"></text>
- <text>切换小区</text>
- </view>
- </view>
- <view class="bg-gray" style="padding: 12rpx 30rpx;">
- <text >选择楼栋:</text>
- </view>
- <view class="nav_section" v-if="unit_list.length>0">
- <view @click="jump(item)" v-for="(item, index) in unit_list" :key="index" >
- <view class="nav_section_items">
- <view class="section_cont">
- <view class="section_cont_tel">
- <text class="info">{{item.name}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="default" v-if="$isEmpty(unit_list)">
- <image src="/static/common/empty.png" mode="heightFix"></image>
- <view>
- <text >没有获取到楼栋信息</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- var app = getApp();
- export default {
- data() {
- return {
- unit_list: null,
- //小区集合
- residential_name: null //小区名字
- };
- },
- components: {},
- props: {},
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- console.log(app.defaultCity,)
- //小区名字
- var residential_name = options.residential_name;
- this.setData({
- residential_name: residential_name
- }); //小区id
- var residential_id = options.residential_id;
- this.getUnit(residential_id);
- },
- methods: {
- change(){
- uni.navigateBack({
- delta:1
- })
- },
- jump(item){
- app.globalData.unitId=item.id
- uni.navigateTo({
- url:"/pages/choosePlot/chooseRoom/chooseRoom?unit_id=" + item.id + "&unit_name=" + item.name + "&residential_name=" + this.residential_name
- })
- },
- //根据小区id获取楼栋信息
- getUnit: function (residential_id) {
- let that = this;
- let params = {};
- params['residential_id'] = residential_id;
- let operation = 'estate/getByResidentialId';
- app.globalData.postRequest(params, operation, function (res) {
- //获取成功
- if (res.data.result_code == 1) {
- that.setData({
- unit_list: res.data.list
- });
- } else {
- app.globalData.oneFailHint(res.data.result_msg);
- }
- });
- }
- }
- };
- </script>
- <style>
- /* pages/choosePlot/chooseUnit/chooseUnit.wxss */
- page{
- overflow-y: scroll
- }
- .nav_section {
- width: 100%;
- background:#fff;
- }
- .nav_section_items {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 30rpx;
- border-bottom: 2rpx solid #ddd;
- position: relative;
- }
- .nav_section_items:active {
- background: #ddd;
- }
- .nav_section_items .section_cont view {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: block;
- }
- .nav_section_items .section_cont .section_cont_sub {
- font-size: 30rpx;
- line-height: 50rpx;
- color: #000;
- margin-bottom: 10rpx;
- }
- .section_cont_tel .info{
- width: 500rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- display: inline-block;
- }
- .default { text-align: center; position: fixed; left: 50%; top: 40%; transform: translate(-50%, -50%);}
- .default text{
- color: #AAAAAA;
- }
- .default image { height: 250rpx; display: inline-block;}.empty-wrap{ background-color: #FFFFFF; min-height: 100vh;}
- </style>
|