| ÎļþÃû´Ó ÏîÄ¿´úÂë/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/Production/ProductionOutorderboxing?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/Production/ProductionOutorderboxing?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/ProductionOutboundOrder/GetProductOutboundOrder', postData).then((res) => { |
| | | if (res.status) { |
| | | if (this.searchValue == '') { |
| | | this.allReceivingOrders = this.allReceivingOrders.concat(res.data); |