addShuntBack.vue 958 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view class="shuntBackList">
  3. <view class="check-list">
  4. <productList ref="productList" noDataText="暂无产品" @updateNums="updateNums" @allChecked="allCheckedCallback"></productList>
  5. </view>
  6. <view class="backOrderFooter u-flex u-row-between">
  7. <view class="footerBox_m u-flex">
  8. <view class="middle_l">
  9. 已选
  10. <text>{{chooseArr.length}}</text>
  11. 款/
  12. <text>{{totalNum}}</text>
  13. </view>
  14. <view class="middle_r" @click="seeDetail">
  15. <text>查看明细</text>
  16. <u-icon name="arrow-up" color="#999" size="28"></u-icon>
  17. </view>
  18. </view>
  19. <view class="footerBox_r"><u-button type="primary" shape="circle" @click="addBackOrder">新增调回单</u-button></view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import productList from './productList.vue'
  25. export default{
  26. components: {
  27. productList
  28. },
  29. data(){
  30. return{
  31. }
  32. },
  33. methods:{
  34. }
  35. }
  36. </script>
  37. <style>
  38. </style>