style(AddressEdit): area picker use round popup (#6584)

This commit is contained in:
neverland 2020-06-20 16:40:58 +08:00 committed by GitHub
parent 5480c003e0
commit f10a97b692
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -364,14 +364,15 @@ export default createComponent({
</div> </div>
<Popup <Popup
vModel={this.showAreaPopup} vModel={this.showAreaPopup}
round
position="bottom" position="bottom"
lazyRender={false} lazyRender={false}
getContainer="body" getContainer="body"
> >
<Area <Area
ref="area" ref="area"
loading={!this.areaListLoaded}
value={data.areaCode} value={data.areaCode}
loading={!this.areaListLoaded}
areaList={this.areaList} areaList={this.areaList}
columnsPlaceholder={this.areaColumnsPlaceholder} columnsPlaceholder={this.areaColumnsPlaceholder}
onConfirm={this.onAreaConfirm} onConfirm={this.onAreaConfirm}