| | |
| | | <view class="warp"> |
| | | <view class="table"> |
| | | <uni-table border stripe |
| | | type="selection" |
| | | ref="table1" |
| | | @selection-change="selectionChange" |
| | | |
| | | emptyText="暂无更多数据"> |
| | | <uni-tr> |
| | | <uni-th align="center">订单编号</uni-th> |
| | | <uni-th align="center">产品</uni-th> |
| | | <uni-th align="center">客户</uni-th> |
| | | <uni-th align="center" width="70">产品</uni-th> |
| | | <uni-th align="center" width="70"> 客户</uni-th> |
| | | <uni-th align="center" width="70"> 剩余量</uni-th> |
| | | <uni-th align="center">操作</uni-th> |
| | | </uni-tr> |
| | | <uni-tr v-for="(item, index) in subDataList" :key="index"> |
| | | <uni-td align="center"> |
| | |
| | | <uni-td> |
| | | <view class="name">{{ item.customerName }}</view> |
| | | </uni-td> |
| | | <uni-td> |
| | | <view class="name">{{ item.surplusQuant }}</view> |
| | | </uni-td> |
| | | <uni-td> |
| | | <view class="name"> |
| | | <u-button type='primary' text='选择' size='mini' @click.native.stop="checkOrder(item)"></u-button> |
| | | </view> |
| | | </uni-td> |
| | | </uni-tr> |
| | | </uni-table> |
| | | |
| | | </view> |
| | | <view class="confirm-build"> |
| | | <!-- <view class="confirm-build"> |
| | | <view class="confirm-build_block"> |
| | | <u-button text="确认创建" |
| | | type="primary" |
| | |
| | | :loading="buildLoading" |
| | | :disabled="abledBuild"></u-button> |
| | | </view> |
| | | </view> |
| | | </view> --> |
| | | </view> |
| | | |
| | | </template> |