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.
|
|
|
<template>
|
|
|
|
<view class="page-wraper">
|
|
|
|
<comMoveJob ref="comMoveJob" businessTypeCode='ScrapToHold'> </comMoveJob>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import comMoveJob from '@/pages/inventoryMove/coms/comMoveJob.vue'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
comMoveJob
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onPullDownRefresh() {
|
|
|
|
this.$refs.comMoveJob.refresh();
|
|
|
|
},
|
|
|
|
onNavigationBarButtonTap(e) {
|
|
|
|
if (e.index === 0) {
|
|
|
|
this.$refs.comMoveJob.toHome();
|
|
|
|
} else if (e.index == 1) {
|
|
|
|
this.$refs.comMoveJob.openFilter();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onLoad() {},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
</style>
|