myHouse.vue 4.5 KB

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