|
@@ -1,12 +1,14 @@
|
|
<script>
|
|
<script>
|
|
import AddressSelect from '@/pages/components/addressSelect/index'
|
|
import AddressSelect from '@/pages/components/addressSelect/index'
|
|
import InterestSelect from '@/pages/components/interestSelect/index'
|
|
import InterestSelect from '@/pages/components/interestSelect/index'
|
|
|
|
+import StandAddressSelect from '@/pages/components/standAddressSelect/index'
|
|
import {getDicInfo} from "@/api/digitalDoor";
|
|
import {getDicInfo} from "@/api/digitalDoor";
|
|
|
|
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
AddressSelect,
|
|
AddressSelect,
|
|
- InterestSelect
|
|
|
|
|
|
+ InterestSelect,
|
|
|
|
+ StandAddressSelect
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -14,7 +16,8 @@ export default {
|
|
householdRegistrationTypeDialogShow: false,
|
|
householdRegistrationTypeDialogShow: false,
|
|
householdRegistrationTypeList: [],
|
|
householdRegistrationTypeList: [],
|
|
domicileDialogShow: false,
|
|
domicileDialogShow: false,
|
|
- residenceDialogShow: false
|
|
|
|
|
|
+ residenceDialogShow: false,
|
|
|
|
+ houseNumberNameShow:false,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad() {
|
|
onLoad() {
|
|
@@ -55,7 +58,17 @@ export default {
|
|
<template>
|
|
<template>
|
|
<view class="page-container">
|
|
<view class="page-container">
|
|
<view class="container-center">
|
|
<view class="container-center">
|
|
- <AddressSelect title="所属范围" ref="addressSelectRef"></AddressSelect>
|
|
|
|
|
|
+ <AddressSelect title="所属范围" ref="addressSelectRef">
|
|
|
|
+ <template>
|
|
|
|
+ <van-field v-model="form.houseNumberName"
|
|
|
|
+ @click="houseNumberNameShow = true"
|
|
|
|
+ label="标准地址"
|
|
|
|
+ is-link
|
|
|
|
+ readonly
|
|
|
|
+ placeholder="请选择标准地址"/>
|
|
|
|
+ <StandAddressSelect :show.sync="houseNumberNameShow"></StandAddressSelect>
|
|
|
|
+ </template>
|
|
|
|
+ </AddressSelect>
|
|
<view class="box">
|
|
<view class="box">
|
|
<view class="title">
|
|
<view class="title">
|
|
<text>管理地</text>
|
|
<text>管理地</text>
|