bind.wxml 589 B

1234567891011121314151617
  1. <import src="/assets/libs/zanui/field/index.wxml" />
  2. <import src="/assets/libs/zanui/dialog/index.wxml" />
  3. <view class="container">
  4. <form bindsubmit="formSubmit" bindreset="formReset">
  5. <view class="zan-panel">
  6. <template is="zan-field" data="{{ ...base.account }}"></template>
  7. <template is="zan-field" data="{{ ...base.password }}"></template>
  8. </view>
  9. <view class="zan-btns">
  10. <button class="zan-btn zan-btn--primary" formType="submit">立即绑定</button>
  11. <button class="zan-btn" formType="reset">重置数据</button>
  12. </view>
  13. </form>
  14. </view>