123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <!-- 切换房屋 -->
- <template>
- <view class="">
- <view class="item" v-for="(item,index) in data" :key="index">
- <view class="content">
- <view class="city">
- <view style="height: 100%;display: flex;">
- <image src="../../static/house_icon_location@2x.png" style="width: 40rpx;height:40rpx;margin-right: 18rpx;"></image>
- <view class="text">{{item.comtyName}}</view>
- </view>
- </view>
- <view class="address">
- <image src="../../static/house_icon_house@2x.png" style="width: 40rpx;height:40rpx;margin-right: 18rpx;"></image>
- <view class="text">{{item.houseName}}</view>
- <view class="delete">
- <radio-group @change="changeHouse(item)">
- <radio style="transform:scale(0.8)" :value="item.houseName" :checked="address==item.houseName" />
- </radio-group>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- data: [],
- address:uni.getStorageSync('homeAdress')
- }
- },
- onShow() {
-
- },
- mounted() {
- this.getHouseData()
- },
- methods: {
- // 删除房屋
- changeHouse(item) {
- console.log(item)
- uni.setStorageSync('homeAdress',item.houseName)
- uni.setStorageSync('comtyId',item.comtyId)
- uni.setStorageSync('homeId',item.houseId)
- uni.switchTab({
- url: "./index"
- })
- },
- // 添加房屋信息
- addMyHouse() {
- uni.navigateTo({
- url: '../authentication/city'
- })
- },
- //获取房屋数据
- getHouseData() {
- uni.showLoading({
- mask: true,
- title: '加载中'
- })
- this.http.httpRequest('/wxapplet/ownerbasestruct/list', 'get', {
- userId: String(uni.getStorageSync('userId'))
- }, true).then((res) => {
- console.log(res)
- if (res.code == 0) {
- uni.hideLoading()
- this.data = res.data
- } else {
- uni.hideLoading()
- uni.showToast({
- title: res.msg,
- "icon": 'none'
- })
- }
- }).catch(()=>{
- uni.hideLoading()
- })
- }
- }
- }
- </script>
- <style>
- .btn {
- width: 702rpx;
- height: 90rpx;
- background: rgba(41, 138, 253, 1);
- opacity: 1;
- border-radius: 18rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 90rpx;
- color: rgba(255, 255, 255, 1);
- text-align: center;
- position: absolute;
- bottom: 56rpx;
- left: 26rpx;
- }
- .address {
- width: 100%;
- height: 40rpx;
- margin-top: 42rpx;
- margin-bottom: 20rpx;
- display: flex;
- }
- .delete {
- width: 60rpx;
- height: 32rpx;
- font-size: 22rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(41, 138, 253, 1);
- }
- .item {
- width: 702rpx;
- /* height:164rpx; */
- background: rgba(249, 252, 255, 1);
- opacity: 1;
- margin: 0 auto;
- margin-top: 40rpx;
- overflow: hidden;
- }
- .content {
- width: 622rpx;
- margin: 0 auto;
- }
- .city {
- width: 100%;
- height: 40rpx;
- display: flex;
- justify-content: space-between;
- margin-top: 26rpx;
- }
- .text {
- width: 400rpx;
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 40rpx;
- color: rgba(41, 138, 253, 1);
- }
- .address .text {
- width: 550rpx;
- height: 36rpx;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(51, 51, 51, 1);
- }
- </style>
|