个人中心页--添加企业其他选项
This commit is contained in:
@ -37,8 +37,14 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col class="line" :span="2" style="text-align: center;">-</el-col>
|
||||
<el-col :span="10">
|
||||
<el-col
|
||||
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-select v-model="form.cityId" placeholder="请选择">
|
||||
<el-option
|
||||
@ -137,6 +143,10 @@ export default {
|
||||
{
|
||||
value: 3,
|
||||
label: '合肥区县'
|
||||
},
|
||||
{
|
||||
value: 4,
|
||||
label: '其它'
|
||||
}
|
||||
],
|
||||
optionList2: [],
|
||||
@ -201,8 +211,10 @@ export default {
|
||||
// 地级市
|
||||
if (e === 2) {
|
||||
this.getType(false);
|
||||
} else {
|
||||
} else if (e === 3) {
|
||||
this.getCity(false);
|
||||
} else {
|
||||
this.form.cityId = '';
|
||||
}
|
||||
},
|
||||
// 获取地级市
|
||||
|
@ -33,6 +33,16 @@
|
||||
</div>
|
||||
<el-divider></el-divider>
|
||||
</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
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
|
Reference in New Issue
Block a user