myHouse.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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,index1) in item.ownerHouse" :key="index1">
  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" @tap="deleteHouse(list.houseId,item.id)">
  16. 删除
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <!-- 添加房屋信息 -->
  22. <view class="btn" @tap="addMyHouse">添加房屋信息</view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. data: []
  30. }
  31. },
  32. mounted() {
  33. this.getHouseData()
  34. },
  35. methods: {
  36. // 删除房屋
  37. deleteHouse(item, id) {
  38. console.log(item, id)
  39. uni.showModal({
  40. title: '提示',
  41. content: '您确定删除当前房屋信息',
  42. success: (res) => {
  43. if (res.confirm) {
  44. this.http.httpRequest('/wxapplet/owner/peopleInfor/delHouse', 'post', {
  45. cardNo: uni.getStorageSync('idNumber'),
  46. comtyId: id,
  47. houseId: item
  48. }, true).then((res) => {
  49. if (res.code == 0) {
  50. uni.showToast({
  51. title: '删除成功',
  52. 'icon': 'success'
  53. })
  54. this.getHouseData()
  55. } else {
  56. uni.showToast({
  57. title: res.msg,
  58. 'icon': 'none'
  59. })
  60. }
  61. })
  62. } else if (res.cancel) {
  63. console.log('用户点击取消');
  64. }
  65. }
  66. });
  67. },
  68. // 添加房屋信息
  69. addMyHouse() {
  70. uni.navigateTo({
  71. url: '../authentication/city'
  72. })
  73. },
  74. //获取房屋数据
  75. getHouseData() {
  76. uni.showLoading({
  77. mask: true,
  78. title: '加载中'
  79. })
  80. this.http.httpRequest('/wxapplet/ownerbasestruct/list', 'get', {
  81. userId: String(uni.getStorageSync('userId'))
  82. }, true).then((res) => {
  83. console.log(res)
  84. if (res.code == 0) {
  85. uni.hideLoading()
  86. this.data = res.data
  87. } else {
  88. uni.hideLoading()
  89. uni.showToast({
  90. title: res.msg,
  91. "icon": 'none'
  92. })
  93. }
  94. }).catch(() => {
  95. uni.hideLoading()
  96. })
  97. }
  98. }
  99. }
  100. </script>
  101. <style>
  102. .btn {
  103. width: 702rpx;
  104. height: 90rpx;
  105. background: rgba(41, 138, 253, 1);
  106. opacity: 1;
  107. border-radius: 18rpx;
  108. font-size: 32rpx;
  109. font-family: PingFang SC;
  110. font-weight: bold;
  111. line-height: 90rpx;
  112. color: rgba(255, 255, 255, 1);
  113. text-align: center;
  114. position: absolute;
  115. bottom: 56rpx;
  116. left: 26rpx;
  117. }
  118. .address {
  119. width: 100%;
  120. height: 40rpx;
  121. margin-top: 42rpx;
  122. margin-bottom: 20rpx;
  123. display: flex;
  124. }
  125. .delete {
  126. width: 60rpx;
  127. height: 32rpx;
  128. font-size: 22rpx;
  129. font-family: PingFang SC;
  130. font-weight: 400;
  131. color: rgba(41, 138, 253, 1);
  132. }
  133. .item {
  134. width: 702rpx;
  135. /* height:164rpx; */
  136. background: rgba(249, 252, 255, 1);
  137. opacity: 1;
  138. margin: 0 auto;
  139. margin-top: 40rpx;
  140. overflow: hidden;
  141. }
  142. .content {
  143. width: 622rpx;
  144. margin: 0 auto;
  145. }
  146. .city {
  147. width: 100%;
  148. height: 40rpx;
  149. display: flex;
  150. justify-content: space-between;
  151. margin-top: 26rpx;
  152. }
  153. .text {
  154. width: 400rpx;
  155. height: 40rpx;
  156. font-size: 28rpx;
  157. font-family: PingFang SC;
  158. font-weight: bold;
  159. line-height: 40rpx;
  160. color: rgba(41, 138, 253, 1);
  161. }
  162. .address .text {
  163. width: 550rpx;
  164. height: 36rpx;
  165. font-size: 26rpx;
  166. font-family: PingFang SC;
  167. font-weight: 400;
  168. color: rgba(51, 51, 51, 1);
  169. }
  170. </style>