12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view class="shuntBackList">
- <view class="check-list">
- <productList ref="productList" noDataText="暂无产品" @updateNums="updateNums" @allChecked="allCheckedCallback"></productList>
- </view>
- <view class="backOrderFooter u-flex u-row-between">
- <view class="footerBox_m u-flex">
- <view class="middle_l">
- 已选
- <text>{{chooseArr.length}}</text>
- 款/
- <text>{{totalNum}}</text>
- 件
- </view>
- <view class="middle_r" @click="seeDetail">
- <text>查看明细</text>
- <u-icon name="arrow-up" color="#999" size="28"></u-icon>
- </view>
- </view>
- <view class="footerBox_r"><u-button type="primary" shape="circle" @click="addBackOrder">新增调回单</u-button></view>
- </view>
- </view>
- </template>
- <script>
- import productList from './productList.vue'
- export default{
- components: {
- productList
- },
- data(){
- return{
-
- }
- },
- methods:{
-
- }
- }
- </script>
- <style>
- </style>
|