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
603 B
40 lines
603 B
12 months ago
|
<template>
|
||
|
<view class="page-wraper">
|
||
|
<comMoveJob ref="comMoveJob" businessTypeCode='HoldToOk'> </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>
|