changeHouse.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <!-- 切换房屋 -->
  2. <template>
  3. <view class="">
  4. <view class="item" v-for="(item,index) in data" :key="index">
  5. <view class="content">
  6. <view class="city">
  7. <view style="height: 100%;display: flex;">
  8. <image src="../../static/house_icon_location@2x.png" style="width: 40rpx;height:40rpx;margin-right: 18rpx;"></image>
  9. <view class="text">{{item.comtyName}}</view>
  10. </view>
  11. </view>
  12. <view class="address">
  13. <image src="../../static/house_icon_house@2x.png" style="width: 40rpx;height:40rpx;margin-right: 18rpx;"></image>
  14. <view class="text">{{item.houseName}}</view>
  15. <view class="delete">
  16. <radio-group @change="changeHouse(item)">
  17. <radio style="transform:scale(0.8)" :value="item.houseName" :checked="address==item.houseName" />
  18. </radio-group>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. data: [],
  30. address:uni.getStorageSync('homeAdress')
  31. }
  32. },
  33. onShow() {
  34. },
  35. mounted() {
  36. this.getHouseData()
  37. },
  38. methods: {
  39. // 删除房屋
  40. changeHouse(item) {
  41. console.log(item)
  42. uni.setStorageSync('homeAdress',item.houseName)
  43. uni.setStorageSync('comtyId',item.comtyId)
  44. uni.setStorageSync('homeId',item.houseId)
  45. uni.switchTab({
  46. url: "./index"
  47. })
  48. },
  49. // 添加房屋信息
  50. addMyHouse() {
  51. uni.navigateTo({
  52. url: '../authentication/city'
  53. })
  54. },
  55. //获取房屋数据
  56. getHouseData() {
  57. uni.showLoading({
  58. mask: true,
  59. title: '加载中'
  60. })
  61. this.http.httpRequest('/wxapplet/ownerbasestruct/list', 'get', {
  62. userId: String(uni.getStorageSync('userId'))
  63. }, true).then((res) => {
  64. console.log(res)
  65. if (res.code == 0) {
  66. uni.hideLoading()
  67. this.data = res.data
  68. } else {
  69. uni.hideLoading()
  70. uni.showToast({
  71. title: res.msg,
  72. "icon": 'none'
  73. })
  74. }
  75. }).catch(()=>{
  76. uni.hideLoading()
  77. })
  78. }
  79. }
  80. }
  81. </script>
  82. <style>
  83. .btn {
  84. width: 702rpx;
  85. height: 90rpx;
  86. background: rgba(41, 138, 253, 1);
  87. opacity: 1;
  88. border-radius: 18rpx;
  89. font-size: 32rpx;
  90. font-family: PingFang SC;
  91. font-weight: bold;
  92. line-height: 90rpx;
  93. color: rgba(255, 255, 255, 1);
  94. text-align: center;
  95. position: absolute;
  96. bottom: 56rpx;
  97. left: 26rpx;
  98. }
  99. .address {
  100. width: 100%;
  101. height: 40rpx;
  102. margin-top: 42rpx;
  103. margin-bottom: 20rpx;
  104. display: flex;
  105. }
  106. .delete {
  107. width: 60rpx;
  108. height: 32rpx;
  109. font-size: 22rpx;
  110. font-family: PingFang SC;
  111. font-weight: 400;
  112. color: rgba(41, 138, 253, 1);
  113. }
  114. .item {
  115. width: 702rpx;
  116. /* height:164rpx; */
  117. background: rgba(249, 252, 255, 1);
  118. opacity: 1;
  119. margin: 0 auto;
  120. margin-top: 40rpx;
  121. overflow: hidden;
  122. }
  123. .content {
  124. width: 622rpx;
  125. margin: 0 auto;
  126. }
  127. .city {
  128. width: 100%;
  129. height: 40rpx;
  130. display: flex;
  131. justify-content: space-between;
  132. margin-top: 26rpx;
  133. }
  134. .text {
  135. width: 400rpx;
  136. height: 40rpx;
  137. font-size: 28rpx;
  138. font-family: PingFang SC;
  139. font-weight: bold;
  140. line-height: 40rpx;
  141. color: rgba(41, 138, 253, 1);
  142. }
  143. .address .text {
  144. width: 550rpx;
  145. height: 36rpx;
  146. font-size: 26rpx;
  147. font-family: PingFang SC;
  148. font-weight: 400;
  149. color: rgba(51, 51, 51, 1);
  150. }
  151. </style>