个人中心页--添加企业其他选项
This commit is contained in:
@ -37,8 +37,14 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col class="line" :span="2" style="text-align: center;">-</el-col>
|
<el-col
|
||||||
<el-col :span="10">
|
class="line"
|
||||||
|
:span="2"
|
||||||
|
style="text-align: center;"
|
||||||
|
v-if="form.addressType != 4"
|
||||||
|
>-</el-col
|
||||||
|
>
|
||||||
|
<el-col :span="10" v-if="form.addressType != 4">
|
||||||
<el-form-item prop="cityId">
|
<el-form-item prop="cityId">
|
||||||
<el-select v-model="form.cityId" placeholder="请选择">
|
<el-select v-model="form.cityId" placeholder="请选择">
|
||||||
<el-option
|
<el-option
|
||||||
@ -137,6 +143,10 @@ export default {
|
|||||||
{
|
{
|
||||||
value: 3,
|
value: 3,
|
||||||
label: '合肥区县'
|
label: '合肥区县'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 4,
|
||||||
|
label: '其它'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
optionList2: [],
|
optionList2: [],
|
||||||
@ -201,8 +211,10 @@ export default {
|
|||||||
// 地级市
|
// 地级市
|
||||||
if (e === 2) {
|
if (e === 2) {
|
||||||
this.getType(false);
|
this.getType(false);
|
||||||
} else {
|
} else if (e === 3) {
|
||||||
this.getCity(false);
|
this.getCity(false);
|
||||||
|
} else {
|
||||||
|
this.form.cityId = '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 获取地级市
|
// 获取地级市
|
||||||
|
|||||||
@ -33,6 +33,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<el-divider></el-divider>
|
<el-divider></el-divider>
|
||||||
</div>
|
</div>
|
||||||
|
<div style="text-align: center;margin:30px 0" v-show="!total">
|
||||||
|
<div style="height:210px;display: inline-block;color:#999">
|
||||||
|
<img
|
||||||
|
style="width:100%;height:100%;"
|
||||||
|
src="@/assets/image/empty.png"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
暂无数据
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<pagination
|
<pagination
|
||||||
v-show="total > 0"
|
v-show="total > 0"
|
||||||
:total="total"
|
:total="total"
|
||||||
|
|||||||
Reference in New Issue
Block a user