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.
51 lines
922 B
51 lines
922 B
<template>
|
|
<view class="page-wraper">
|
|
<comMoveJob :isShowItemCode="true" :isShowQurery="true" :title="title" ref="comMoveJob" businessTypeCode='OkToHold' > </comMoveJob>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import comMoveJob from '@/pages/inventoryMove/coms/comMoveJob.vue'
|
|
export default {
|
|
components: {
|
|
comMoveJob
|
|
},
|
|
data() {
|
|
return {
|
|
title:''
|
|
}
|
|
},
|
|
onLoad(option){
|
|
this.title = option.title
|
|
},
|
|
onShow() {
|
|
if(this.$refs.comMoveJob){
|
|
this.$refs.comMoveJob.refresh();
|
|
}
|
|
},
|
|
|
|
onPullDownRefresh() {
|
|
if(this.$refs.comMoveJob){
|
|
this.$refs.comMoveJob.refresh();
|
|
}
|
|
},
|
|
|
|
onReachBottom() {
|
|
if(this.$refs.comMoveJob){
|
|
this.$refs.comMoveJob.onReach();
|
|
}
|
|
},
|
|
onNavigationBarButtonTap(e) {
|
|
if (e.index === 0) {
|
|
this.$refs.comMoveJob.toHome();
|
|
} else if (e.index == 1) {
|
|
this.$refs.comMoveJob.openFilter();
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
|