copy from "\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/Order/OutboundOrder.vue"
copy to "\351\241\271\347\233\256\344\273\243\347\240\201/PDA/pages/Inventory/InventoryOutboundOrder.vue"
| Îļþ´Ó ÏîÄ¿´úÂë/PDA/pages/Order/OutboundOrder.vue ¸´ÖÆ |
| | |
| | | </view> |
| | | </u-sticky> |
| | | <uni-list :border="true"> |
| | | <uni-list-item direction="column" clickable @click="groupClick(item.id)" link :to="page+item.orderNo" |
| | | <uni-list-item direction="column" clickable @click="groupClick(item.id,item.upperOrderNo)" link :to="page+item.orderNo" |
| | | v-for="item in allReceivingOrders" :key="item.orderNo"> |
| | | <template v-slot:body> |
| | | <!-- <uni-group margin-top="20"> |
| | |
| | | <view class="value">{{item.upperOrderNo}}</view> |
| | | </view> |
| | | <view class="flex-row"> |
| | | <view class="label">ç©æç¼ç :</view> |
| | | <view class="value">{{item.materielCode}}</view> |
| | | </view> |
| | | <view class="flex-row"> |
| | | <view class="label">åæ®æ°é:</view> |
| | | <view class="value">{{item.orderQuantity}}</view> |
| | | </view> |
| | | <view class="flex-row"> |
| | | <view class="label">å·²åºåºæ°é:</view> |
| | | <view class="value">{{item.overOutQuantity}}</view> |
| | | <view class="label">å建æ¶é´:</view> |
| | | <view class="value">{{item.createDate}}</view> |
| | | </view> |
| | | </uni-group> |
| | | </template> |
| | |
| | | export default { |
| | | data() { |
| | | return { |
| | | page: "/pages/Order/Outorderboxing?orderNo=", |
| | | page: "/pages/Inventory/InventoryOutorderboxing?orderNo=", |
| | | loadVisible: false, |
| | | istrue:false, |
| | | searchValue: "", |
| | | status: "more", |
| | | allReceivingOrders: [], |
| | |
| | | search(res) { |
| | | this.getData(); |
| | | }, |
| | | groupClick(Id) { |
| | | window.location="/pages/Order/Outorderboxing?Id="+Id; |
| | | // console.log(Id); |
| | | groupClick(Id,orderNo) { |
| | | window.location="/pages/Inventory/InventoryOutorderboxing?Id="+Id+"&orderNo="+orderNo; |
| | | }, |
| | | getData() { |
| | | var postData = { |
| | | orderNo: this.searchValue, |
| | | pageNo: this.pageNo |
| | | } |
| | | this.$u.post('/api/OutboundOrder/GetOutboundOrder', postData).then((res) => { |
| | | this.$u.post('/api/InventoryOutboundOrder/GetInventoryOutboundOrder', postData).then((res) => { |
| | | if (res.status) { |
| | | if (this.searchValue == '') { |
| | | this.allReceivingOrders = this.allReceivingOrders.concat(res.data); |