|
|
<template>
|
|
|
<LayoutApp :title="title" :show-back="true">
|
|
|
<div class="pane-body">
|
|
|
<div class="pane-body" ref="paneBody">
|
|
|
<FormItem>
|
|
|
<CInput
|
|
|
label="收货人"
|
...
|
...
|
@@ -71,6 +71,7 @@ |
|
|
></Radio>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="white-space"></div>
|
|
|
<div :class="submitClass" @touchend="onSubmit">确 认</div>
|
|
|
|
|
|
<AddressAct
|
...
|
...
|
@@ -279,12 +280,15 @@ export default { |
|
|
chooseArea() {
|
|
|
this.isShowProvince = true;
|
|
|
|
|
|
this.$refs.paneBody.style.overflow = 'hidden';
|
|
|
|
|
|
this.$refs.addressAct.parentHandleclick({
|
|
|
areaCode: this.area_code
|
|
|
});
|
|
|
},
|
|
|
popHidden() {
|
|
|
let that = this;
|
|
|
this.$refs.paneBody.style.overflow = 'auto';
|
|
|
that.isShowProvince = false;
|
|
|
},
|
|
|
modifyAddressAct(info) {
|
...
|
...
|
@@ -402,6 +406,13 @@ export default { |
|
|
}
|
|
|
}
|
|
|
|
|
|
.white-space {
|
|
|
position: relative;
|
|
|
display: block;
|
|
|
overflow: hidden;
|
|
|
height: 120px;
|
|
|
}
|
|
|
|
|
|
.wrapper-tag {
|
|
|
margin: 30px 0;
|
|
|
|
...
|
...
|
@@ -449,7 +460,7 @@ export default { |
|
|
background-color: #cccccc;
|
|
|
color: white;
|
|
|
border-radius: 40px;
|
|
|
position: absolute;
|
|
|
position: fixed;
|
|
|
left: 32px;
|
|
|
right: 32px;
|
|
|
bottom: 24px;
|
...
|
...
|
|