create.wxml 970 B

12345678910111213141516171819202122232425
  1. <Yl_Headline title='开单信息' type='switch' switchLabel='仅显示必填信息' switch='{{showAll}}' bind:callBack='onChange' />
  2. <Yl_Field id='Form' form='{{form}}' showAll='{{!showAll}}' bind:onConfirm='onConfirm' bind:interrupt="interrupt" />
  3. <view style="height: 20rpx;"></view>
  4. <!-- Tab切换 -->
  5. <van-tabs active="{{activeTab}}" color='#3874F6' title-active-color='#3874F6' bind:change="onTabChange">
  6. <van-tab title="商品">
  7. <view style="padding: 20rpx;">
  8. <view class="empty">
  9. <text>请添加商品</text>
  10. </view>
  11. </view>
  12. </van-tab>
  13. <van-tab title="附件">
  14. <view style="padding: 20rpx;">
  15. <view class="empty">
  16. <text>请添加附件</text>
  17. </view>
  18. </view>
  19. </van-tab>
  20. </van-tabs>
  21. <view style="height: 150rpx;" />
  22. <view class="new-footer">
  23. <van-button custom-class='new-submit' color='#3874F6' disabled='{{disabled || loading}}' loading='{{loading}}' bind:tap='submit'>确定</van-button>
  24. </view>