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.
40 lines
681 B
40 lines
681 B
<template>
|
|
<view class="">
|
|
<product-receipt-job ref="productreceiptjob" type='scrap'></product-receipt-job>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import productReceiptJob from '@/pages/productReceipt/job/productReceiptJob.vue'
|
|
|
|
export default {
|
|
name: 'semiProductReceiptJob',
|
|
components: {
|
|
productReceiptJob
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
|
|
onPullDownRefresh() {
|
|
this.$refs.productreceiptjob.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>
|