lijuncheng
4 months ago
3 changed files with 70 additions and 1 deletions
@ -0,0 +1,38 @@ |
|||||
|
<template> |
||||
|
<view class="page-wraper"> |
||||
|
<comMoveJob :title="title" ref="comMoveJob" businessTypeCode='NokToHold' > </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 |
||||
|
}, |
||||
|
onPullDownRefresh() { |
||||
|
this.$refs.comMoveJob.refresh(); |
||||
|
}, |
||||
|
|
||||
|
onNavigationBarButtonTap(e) { |
||||
|
if (e.index === 0) { |
||||
|
this.$refs.comMoveJob.toHome(); |
||||
|
} else if (e.index == 1) { |
||||
|
this.$refs.comMoveJob.openFilter(); |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
methods: { |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
Loading…
Reference in new issue