|
|
|
@ -11,8 +11,8 @@ |
|
|
|
<el-form-item label="街道"> |
|
|
|
<el-select v-model="dataForm.streetId" placeholder="请选择" @change="getCommunityList"> |
|
|
|
<el-option |
|
|
|
v-for="item in streetOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item,index) in streetOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
@ -21,8 +21,8 @@ |
|
|
|
<el-form-item label="社区"> |
|
|
|
<el-select v-model="dataForm.communityId" placeholder="请选择" @change="getGridList"> |
|
|
|
<el-option |
|
|
|
v-for="item in communityOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item,index) in communityOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
@ -31,8 +31,8 @@ |
|
|
|
<el-form-item label="网格"> |
|
|
|
<el-select v-model="dataForm.gridId" placeholder="请选择"> |
|
|
|
<el-option |
|
|
|
v-for="item in gridOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item,index) in gridOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
@ -127,8 +127,8 @@ |
|
|
|
<el-form-item label="街道"> |
|
|
|
<el-select v-model="dataForm.streetId" placeholder="请选择" @change="getCommunityList"> |
|
|
|
<el-option |
|
|
|
v-for="item in streetOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item, index) in streetOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
@ -137,8 +137,8 @@ |
|
|
|
<el-form-item label="社区"> |
|
|
|
<el-select v-model="dataForm.communityId" placeholder="请选择" @change="getGridList"> |
|
|
|
<el-option |
|
|
|
v-for="item in communityOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item,index) in communityOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
@ -147,8 +147,8 @@ |
|
|
|
<el-form-item label="网格"> |
|
|
|
<el-select v-model="dataForm.gridId" placeholder="请选择"> |
|
|
|
<el-option |
|
|
|
v-for="item in gridOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item,index) in gridOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
@ -173,8 +173,8 @@ |
|
|
|
<el-form-item label="是否是党员"> |
|
|
|
<el-select v-model="dataForm.isParty" placeholder="请选择" > |
|
|
|
<el-option |
|
|
|
v-for="item in partyFlagOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item,index) in partyFlagOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
@ -253,8 +253,8 @@ |
|
|
|
<el-form-item label="街道"> |
|
|
|
<el-select v-model="dataForm.streetId" placeholder="请选择" @change="getCommunityList"> |
|
|
|
<el-option |
|
|
|
v-for="item in streetOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item, index) in streetOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
@ -263,8 +263,8 @@ |
|
|
|
<el-form-item label="社区"> |
|
|
|
<el-select v-model="dataForm.communityId" placeholder="请选择" @change="getGridList"> |
|
|
|
<el-option |
|
|
|
v-for="item in communityOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item,index) in communityOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
@ -273,8 +273,8 @@ |
|
|
|
<el-form-item label="网格"> |
|
|
|
<el-select v-model="dataForm.gridId" placeholder="请选择"> |
|
|
|
<el-option |
|
|
|
v-for="item in gridOptions" |
|
|
|
:key="item.id" |
|
|
|
v-for="(item,index) in gridOptions" |
|
|
|
:key="index" |
|
|
|
:label="item.name" |
|
|
|
:value="item.id"> |
|
|
|
</el-option> |
|
|
|
|