changeHouse.vue 3.2 KB

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