28 lines
1.4 KiB
XML
28 lines
1.4 KiB
XML
<!-- index.wxml -->
|
|
<view class="page-body">
|
|
<t-input placeholder="姓名" label="slot" size="medium" confirm-type="done" oak:value="name" bind:change="setValue">
|
|
<text slot="label">
|
|
<text style="color: #e34d59"> *</text>收货人
|
|
</text>
|
|
</t-input>
|
|
<t-input placeholder="11位手机号码" label="slot" size="medium" confirm-type="done" oak:value="phone" bind:change="setValue">
|
|
<text slot="label">
|
|
<text style="color: #e34d59"> *</text>手机号
|
|
</text>
|
|
</t-input>
|
|
<t-input placeholder="请选择地区" label="slot" size="medium" confirm-type="done" oak:value="areaText" bind:focus="callAreaPicker" suffix-icon="chevron-right">
|
|
<text slot="label">
|
|
<text style="color: #e34d59"> *</text>所在地区
|
|
</text>
|
|
</t-input>
|
|
<t-textarea placeholder="请输入详细地址" confirm-type="done" bind:change="setValue" oak:value="detail">
|
|
<text slot="label">
|
|
<text style="color: #e34d59"> *</text>详细地址
|
|
</text>
|
|
</t-textarea>
|
|
<view style="flex: 1" />
|
|
<t-button-group>
|
|
<t-button theme="danger" style="margin: 16rpx" variant="outline" block size="large" bind:tap="reset" content="重置" />
|
|
<t-button theme="primary" style="margin: 16rpx" block size="large" bind:tap="confirm" content="确定" />
|
|
</t-button-group>
|
|
</view> |