index.wxml 404 B

1234567891011121314
  1. <view class="l-form-container-class">
  2. <slot/>
  3. </view>
  4. <view class="l-form-btn-class">
  5. <slot name="submit-front"/>
  6. <view class="l-form-submit-class" capture-bind:tap="submit">
  7. <slot name="submit"/>
  8. </view>
  9. <slot name="reset-front"/>
  10. <view class="l-form-reset-class" capture-bind:tap="reset">
  11. <slot name="reset"/>
  12. </view>
  13. <slot name="reset-behind"/>
  14. </view>