changeHouse.vue 4.2 KB

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