| 12345678910111213141516171819202122232425 |
- <Yl_Headline title='开单信息' type='switch' switchLabel='仅显示必填信息' switch='{{showAll}}' bind:callBack='onChange' />
- <Yl_Field id='Form' form='{{form}}' showAll='{{!showAll}}' bind:onConfirm='onConfirm' bind:interrupt="interrupt" />
- <view style="height: 20rpx;"></view>
- <!-- Tab切换 -->
- <van-tabs active="{{activeTab}}" color='#3874F6' title-active-color='#3874F6' bind:change="onTabChange">
- <van-tab title="商品">
- <view style="padding: 20rpx;">
- <view class="empty">
- <text>请添加商品</text>
- </view>
- </view>
- </van-tab>
- <van-tab title="附件">
- <view style="padding: 20rpx;">
- <view class="empty">
- <text>请添加附件</text>
- </view>
- </view>
- </van-tab>
- </van-tabs>
- <view style="height: 150rpx;" />
- <view class="new-footer">
- <van-button custom-class='new-submit' color='#3874F6' disabled='{{disabled || loading}}' loading='{{loading}}' bind:tap='submit'>确定</van-button>
- </view>
|