selectHouse.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <!-- 选择小区 -->
  2. <template>
  3. <view class="pageBg">
  4. <!-- <image src="../../static/select_bgimage@2x.png" style="width: 100%;height: 100vh;"></image> -->
  5. <view class="backIcon" :style="{marginTop:phoneHeight+'rpx'}" @tap="back">
  6. <image src="../../static/icon_back@2x.png" style="width: 100%;height: 100%;"></image>
  7. </view>
  8. <view class="infoBox">
  9. <view class="topTitle">
  10. 选择小区住处
  11. </view>
  12. <view class="dec">获取详细的小区住处,登记您的信息</view>
  13. <view class="item" @tap="pickerHouse">
  14. <view style="width: 26rpx;height: 26rpx;margin:28rpx 8rpx 32rpx 20rpx;">
  15. <image src="../../static/select_icon_village@2x.png" style="width: 100%;height: 100%;"></image>
  16. </view>
  17. <input class="uni-input item-input" style="width:290rpx;height:40rpx;margin-top: 26rpx;" placeholder-class="holder"
  18. v-model="form.houseName" disabled="true" placeholder="请选择小区名称" />
  19. <view class="selectIcon">
  20. <image src="../../static/select_combo@2x.png" style="width: 100%;height: 100%;"></image>
  21. </view>
  22. </view>
  23. <view class="item" style="margin-top:50rpx;" @tap="pickerLou">
  24. <view style="width: 26rpx;height: 26rpx;margin:28rpx 8rpx 32rpx 20rpx;">
  25. <image src="../../static/select_icon_storey@2x.png" style="width: 100%;height: 100%;"></image>
  26. </view>
  27. <input class="uni-input item-input" style="width:290rpx;height:40rpx;margin-top: 26rpx;" placeholder-class="holder"
  28. v-model="form.lou" disabled="true" placeholder="请选择楼号" />
  29. <view class="selectIcon">
  30. <image src="../../static/select_combo@2x.png" style="width: 100%;height: 100%;"></image>
  31. </view>
  32. </view>
  33. <view class="item" style="margin-top:50rpx;" @tap="pickerHood">
  34. <view style="width: 26rpx;height: 26rpx;margin:28rpx 8rpx 32rpx 20rpx;">
  35. <image src="../../static/select_icon_unit@2x.png" style="width: 100%;height: 100%;"></image>
  36. </view>
  37. <input class="uni-input item-input" style="width:290rpx;height:40rpx;margin-top: 26rpx;" placeholder-class="holder"
  38. v-model="form.hoodNum" disabled="true" placeholder="请选择单元号" />
  39. <view class="selectIcon">
  40. <image src="../../static/select_combo@2x.png" style="width: 100%;height: 100%;"></image>
  41. </view>
  42. </view>
  43. <view class="item" style="margin-top:50rpx;" @tap="pickerCeng">
  44. <view style="width: 26rpx;height: 26rpx;margin:28rpx 8rpx 32rpx 20rpx;">
  45. <image src="../../static/ceng.png" style="width: 100%;height: 100%;"></image>
  46. </view>
  47. <input class="uni-input item-input" style="width:290rpx;height:40rpx;margin-top: 26rpx;" placeholder-class="holder"
  48. v-model="form.ceng" disabled="true" placeholder="请选择楼层" />
  49. <view class="selectIcon">
  50. <image src="../../static/select_combo@2x.png" style="width: 100%;height: 100%;"></image>
  51. </view>
  52. </view>
  53. <view class="item" style="margin-top:50rpx;" @tap="pickerHome">
  54. <view style="width: 26rpx;height: 26rpx;margin:28rpx 8rpx 32rpx 20rpx;">
  55. <image src="../../static/homeNum.png" style="width: 100%;height: 100%;"></image>
  56. </view>
  57. <input class="uni-input item-input" style="width:290rpx;height:40rpx;margin-top: 26rpx;" placeholder-class="holder"
  58. v-model="form.home" disabled="true" placeholder="请选择门牌号" />
  59. <view class="selectIcon">
  60. <image src="../../static/select_combo@2x.png" style="width: 100%;height: 100%;"></image>
  61. </view>
  62. </view>
  63. <view class="bottom"></view>
  64. </view>
  65. <!-- 发表按钮 -->
  66. <button class="btn" @tap="submit" :class="{active:form.houseName&&form.lou&&form.hoodNum&&form.home}" :loading="isLoading">发表</button>
  67. <!-- 选择小区名称组件 -->
  68. <lb-picker ref="houseName" :props="typeProps" :list="houseData" @confirm="confirm"></lb-picker>
  69. <!-- 选择楼层组件 -->
  70. <lb-picker ref="Lou" :list="louData" :props="selectProps" @confirm="confirmLou">></lb-picker>
  71. <!-- 选择单元号组件 -->
  72. <lb-picker ref="hoodNum" :list="hoodData" :props="selectProps" @confirm="confirmHoodNum"></lb-picker>
  73. <!-- 选择楼层组件 -->
  74. <lb-picker ref="ceng" :list="cengData" :props="selectProps" @confirm="confirmCeng"></lb-picker>
  75. <!-- 选择房屋号组件 -->
  76. <lb-picker ref="home" :list="homeData" :props="selectProps" @confirm="confirmHome"></lb-picker>
  77. </view>
  78. </template>
  79. <script>
  80. import LbPicker from '@/components/lb-picker'
  81. export default {
  82. data() {
  83. return {
  84. isLoading: false, //按钮加载
  85. cityName: '',
  86. phoneHeight: 0, //手机状态栏的高度
  87. lou: '', //楼层
  88. hoodNum: '', //单元号
  89. home: '', //房屋号
  90. ceng: '', //层
  91. form: {
  92. ceng: '', //楼层
  93. houseName: '', //小区名称
  94. lou: '', //楼层
  95. hoodNum: '', //单元号
  96. home: '', //房屋号
  97. },
  98. // 自定义选择组件字段
  99. typeProps: {
  100. label: 'comtyName',
  101. value: 'comtyId',
  102. },
  103. selectProps: {
  104. label: 'name',
  105. value: 'id'
  106. },
  107. // 楼层数据
  108. cengData:[],
  109. //门牌号数据
  110. homeData: [],
  111. //小区名称数据
  112. houseData: [],
  113. //楼层数据
  114. louData: [],
  115. //单元号数据
  116. hoodData: []
  117. }
  118. },
  119. created() {
  120. // 获取状态栏的高度
  121. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  122. this.getAreaData()
  123. },
  124. mounted() {},
  125. methods: {
  126. // 获取小区数据
  127. getAreaData() {
  128. this.http.httpRequest('/wxapplet/ownerbasehouse/comtylist', 'get', {
  129. ssxqdm: uni.getStorageSync('cityId')
  130. }).then((res) => {
  131. this.houseData = res.data
  132. })
  133. },
  134. // 获取楼栋数据
  135. getLouData(id, num, pid, type) {
  136. this.http.httpRequest('/wxapplet/ownerbasestruct/getStruct', 'get', {
  137. comtyId: Number(id),
  138. layer: num,
  139. parentId: pid
  140. }).then((res) => {
  141. if (type == 'lou') {
  142. this.louData = res.data
  143. } else if (type == '单元') {
  144. this.hoodData = res.data
  145. } else if (type == '层') {
  146. this.cengData = res.data
  147. } else {
  148. this.homeData = res.data
  149. }
  150. })
  151. },
  152. //返回
  153. back() {
  154. uni.navigateBack({
  155. delta: 1
  156. })
  157. },
  158. // 选择楼层
  159. pickerCeng() {
  160. this.$refs.ceng.show()
  161. },
  162. // 选择房屋号
  163. pickerHome() {
  164. this.$refs.home.show()
  165. },
  166. //选择小区事件
  167. pickerHouse() {
  168. this.$refs.houseName.show()
  169. },
  170. // 选择楼层事件
  171. pickerLou() {
  172. this.$refs.Lou.show()
  173. },
  174. // 选择单元号事件
  175. pickerHood() {
  176. this.$refs.hoodNum.show()
  177. },
  178. // 楼层选择确定
  179. confirmCeng(data) {
  180. this.form.home=''
  181. this.home=''
  182. this.form.ceng = data.item.name
  183. this.ceng = data.item.id
  184. this.getLouData(this.name,4,this.ceng,'门牌')
  185. },
  186. // 房屋号选择确定
  187. confirmHome(data) {
  188. this.form.home = data.item.name
  189. this.home = data.item.id
  190. },
  191. //小区选择确定
  192. confirm(data) {
  193. this.form.lou = ''
  194. this.form.hoodNum = ''
  195. this.form.home = ''
  196. this.lou = ''
  197. this.ceng=''
  198. this.hoodNum = '',
  199. this.home = ''
  200. this.form.houseName = data.item.comtyName
  201. this.name = data.item.comtyId
  202. uni.setStorageSync('comtyId', this.name)
  203. this.getLouData(this.name, 1, '', 'lou')
  204. },
  205. //楼层选择确定
  206. confirmLou(data) {
  207. this.form.hoodNum = '' //单元号
  208. this.form.home = ''
  209. this.hoodNum = '',
  210. this.home = ''
  211. this.form.lou = data.item.name
  212. this.lou = data.item.id
  213. this.getLouData(this.name, 2, this.lou, '单元')
  214. },
  215. //单元号选择确定
  216. confirmHoodNum(data) {
  217. this.form.home = ''
  218. this.home = ''
  219. this.ceng=''
  220. this.form.hoodNum = data.item.name
  221. this.hoodNum = data.item.id
  222. this.getLouData(this.name, 3,this.hoodNum , '层')
  223. },
  224. // 发表
  225. submit() {
  226. // 判断信息是否选择完整
  227. if (this.form.houseName && this.form.lou && this.form.hoodNum && this.form.home && this.form.ceng) {
  228. this.isLoading = true
  229. this.http.httpRequest('/wxapplet/ownersidpeoinfor/add','post',{
  230. phoneNum:uni.getStorageSync('phoneNumber'),
  231. cardNo:uni.getStorageSync('idNumber'),
  232. comtyId:this.name,
  233. zzjgid:this.home
  234. }).then((res)=>{
  235. if(res.code==0){
  236. uni.setStorageSync('homeId',this.home)
  237. let str=this.form.houseName+this.form.lou+this.form.hoodNum+this.form.ceng+this.form.home
  238. uni.setStorageSync('homeAdress',str)
  239. // 判断认证房屋时 是否已经微信授权登录过了
  240. if (!uni.getStorageSync('createBy')) {
  241. uni.navigateTo({
  242. url: '../login/authorization'
  243. })
  244. } else {
  245. uni.navigateTo({
  246. url: '../mine/myHouse'
  247. })
  248. }
  249. }else{
  250. uni.showToast({
  251. title:res.msg,
  252. 'icon':'none'
  253. })
  254. }
  255. })
  256. } else {
  257. return
  258. }
  259. }
  260. },
  261. components: {
  262. LbPicker
  263. }
  264. }
  265. </script>
  266. <style>
  267. .backIcon {
  268. width: 48rpx;
  269. height: 48rpx;
  270. position: absolute;
  271. left: 24rpx;
  272. top: 30rpx;
  273. }
  274. .btn {
  275. width: 590rpx;
  276. height: 90rpx;
  277. font-size: 32rpx;
  278. font-family: PingFang SC;
  279. font-weight: bold;
  280. line-height: 90rpx;
  281. color: rgba(255, 255, 255, 1);
  282. background: rgba(163, 197, 237, 1);
  283. opacity: 1;
  284. position: absolute;
  285. top: 1160rpx;
  286. left: 80rpx;
  287. }
  288. .selectIcon {
  289. width: 17rpx;
  290. height: 12rpx;
  291. position: absolute;
  292. bottom: 60rpx;
  293. right: 30rpx;
  294. }
  295. .bottom {
  296. width: 642rpx;
  297. height: 42rpx;
  298. background: linear-gradient(84deg, rgba(64, 151, 255, 1) 0%, rgba(141, 193, 255, 1) 100%);
  299. opacity: 1;
  300. border-radius: 0rpx 0rpx 24rpx 24rpx;
  301. position: absolute;
  302. bottom: 0;
  303. }
  304. .pageBg {
  305. width: 100%;
  306. height: 100vh;
  307. background: url(../../static/select_bgimage@2x.png);
  308. background-size: 100% 100%;
  309. }
  310. .infoBox {
  311. position: relative;
  312. width: 642rpx;
  313. height: 950rpx;
  314. background: rgba(255, 255, 255, 1);
  315. box-shadow: 0px 0px 20px rgba(156, 202, 255, 0.36);
  316. opacity: 1;
  317. border-radius: 20px;
  318. /* margin: 0 auto; */
  319. /* margin-top: 190rpx; */
  320. overflow: hidden;
  321. position: absolute;
  322. top: 190rpx;
  323. left: 54rpx;
  324. }
  325. .topTitle {
  326. width: 348rpx;
  327. height: 80rpx;
  328. font-size: 56rpx;
  329. font-family: PingFang SC;
  330. font-weight: bold;
  331. line-height: 54rpx;
  332. color: rgba(41, 138, 253, 1);
  333. opacity: 1;
  334. margin: 0 auto;
  335. margin-top: 55rpx;
  336. }
  337. .dec {
  338. width: 532rpx;
  339. height: 44rpx;
  340. font-size: 32rpx;
  341. font-family: PingFang SC;
  342. font-weight: 400;
  343. line-height: 54rpx;
  344. color: rgba(153, 153, 153, 1);
  345. margin: 0 auto;
  346. margin-top: 16rpx;
  347. opacity: 1;
  348. }
  349. .item {
  350. position: relative;
  351. display: flex;
  352. width: 590rpx;
  353. height: 90rpx;
  354. border: 2rpx solid rgba(247, 247, 247, 1);
  355. opacity: 1;
  356. border-radius: 12rpx;
  357. margin: 0 auto;
  358. margin-top: 30rpx;
  359. }
  360. .item-input {
  361. font-size: 28rpx;
  362. font-family: PingFang SC;
  363. font-weight: 400;
  364. line-height: 54rpx;
  365. color: rgba(51, 51, 51, 1);
  366. }
  367. .active {
  368. background: rgba(41, 138, 253, 1);
  369. }
  370. .holder {
  371. color: rgba(204, 204, 204, 1);
  372. }
  373. </style>