This commit is contained in:
pushuo 2022-07-05 10:48:37 +08:00
parent 2842005daa
commit eebaabe7d9
3 changed files with 9 additions and 6 deletions

View File

@ -630,7 +630,8 @@ body.page-checkout .addresses-wrap .item .zipcode {
margin-bottom: 0.3rem;
}
body.page-checkout .addresses-wrap .item .address-info {
margin-bottom: 0.9rem;
height: 32px;
line-height: 1.3;
}
body.page-checkout .addresses-wrap .item .address-bottom {
display: flex;

View File

@ -181,7 +181,9 @@ body.page-checkout {
}
.address-info {
margin-bottom: .9rem;
// margin-bottom: .9rem;
height: 32px;
line-height: 1.3;
}
.address-bottom {

View File

@ -145,8 +145,8 @@
</el-form-item>
</div>
<div class="col-4">
<el-form-item prop="city_id">
<el-input v-model="dialogAddress.form.city_id" placeholder="输入 city"></el-input>
<el-form-item prop="city">
<el-input v-model="dialogAddress.form.city" placeholder="输入 city"></el-input>
</el-form-item>
</div>
</div>
@ -199,7 +199,7 @@
country_id: @json($country_id),
zipcode: '',
zone_id: '',
city_id: '',
city: '',
address_1: '',
address_2: '',
}
@ -210,7 +210,7 @@
phone: [{required: true, message: '请输入联系电话', trigger: 'blur'}, ],
address_1: [{required: true, message: '请输入详细地址 1', trigger: 'blur'}, ],
zone_id: [{required: true, message: '请选择省份', trigger: 'blur'}, ],
city_id: [{required: true, message: '请填写 city', trigger: 'blur'}, ],
city: [{required: true, message: '请填写 city', trigger: 'blur'}, ],
}
},