This commit is contained in:
2019-12-24 16:32:27 +08:00
parent 68a7aea72c
commit f9ef1a34bd
34 changed files with 136 additions and 55 deletions

View File

@@ -4,7 +4,10 @@ Component({
* 组件的属性列表
*/
properties: {
name:String,
number:String,
phone:String,
addr:String
},
/**

View File

@@ -1,12 +1,12 @@
<view class="orderchooseaddr" bindtap="choose">
<view class="left">
<view class="userinfo">
<text class="username">于于宇 15698857895</text>
<text>邮政编码:677467</text>
<text class="username">{{name == "" ? "请选择地址" :name}} {{phone}}</text>
<text>邮政编码:{{number}}</text>
</view>
<view class="addr">
中国大陆 山东省 青岛市 即墨区 纯阳路 某某某小区
</view>
{{addr}}
</view>
</view>
<view class="right"></view>
</view>