selectHouse.vue 11 KB

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