You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
794 B
46 lines
794 B
12 months ago
|
<template>
|
||
|
<view class="">
|
||
|
<productPutawayJob ref="productPutawayJob" type='assemble'></productPutawayJob>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import productPutawayJob from '@/pages/productPutaway/job/productPutawayJob.vue'
|
||
|
|
||
|
export default {
|
||
|
name: 'productPutawayJob',
|
||
|
components: {
|
||
|
productPutawayJob
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
},
|
||
|
|
||
|
onShow() {
|
||
|
if(this.$refs.productPutawayJob!=undefined){
|
||
|
this.$refs.productPutawayJob.refresh();
|
||
|
}
|
||
|
},
|
||
|
|
||
|
onPullDownRefresh() {
|
||
|
this.$refs.productPutawayJob.refresh();
|
||
|
},
|
||
|
onNavigationBarButtonTap(e) {
|
||
|
if (e.index === 0) {
|
||
|
this.$refs.productreceiptjob.toHome();
|
||
|
} else if (e.index == 1) {
|
||
|
this.$refs.productreceiptjob.openFilter();
|
||
|
}
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|