WxApp/page/component/invoice/invoice.wxml

11 lines
444 B
Plaintext
Raw Normal View History

2024-08-29 14:36:16 +08:00
<view class="main">
<view class="form-box">
<form bindsubmit="formSubmit">
<input value="{{address.name}}" name="name" placeholder="姓名"/>
<input type="number" name="phone" value="{{address.phone}}" placeholder="手机号"/>
<input name="detail" value="{{address.detail}}" placeholder="电子邮箱"/>
<button form-type="submit">保存</button>
</form>
</view>
</view>