niexiting
10 months ago
8 changed files with 281 additions and 112 deletions
@ -0,0 +1,49 @@ |
|||
<template> |
|||
<view class=""> |
|||
<receipt-job ref="receiptjob" operation='receipt'></receipt-job> |
|||
</view> |
|||
</template> |
|||
|
|||
<script> |
|||
import receiptJob from '@/pages/purchaseReceipt/job/receiptJob.vue' |
|||
|
|||
export default { |
|||
name: 'purchaseReceipt', |
|||
components: { |
|||
receiptJob |
|||
}, |
|||
data() { |
|||
return { |
|||
|
|||
}; |
|||
}, |
|||
onShow() { |
|||
if(this.$refs.receiptjob!=undefined){ |
|||
this.$refs.receiptjob.refresh(); |
|||
} |
|||
}, |
|||
|
|||
onPullDownRefresh() { |
|||
this.$refs.receiptjob.refresh(); |
|||
}, |
|||
|
|||
onReachBottom() { |
|||
this.$refs.receiptjob.onReach(); |
|||
}, |
|||
onNavigationBarButtonTap(e) { |
|||
if (e.index === 0) { |
|||
this.$refs.receiptjob.goHome(); |
|||
// this.$refs.receiptjob.refresh(); |
|||
} else if (e.index == 1) { |
|||
this.$refs.receiptjob.openFilter(); |
|||
} |
|||
}, |
|||
methods: { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style scoped lang="scss"> |
|||
|
|||
</style> |
@ -0,0 +1,48 @@ |
|||
<template> |
|||
<view class=""> |
|||
<receipt-job ref="receiptjob" operation='reject'></receipt-job> |
|||
</view> |
|||
</template> |
|||
|
|||
<script> |
|||
import receiptJob from '@/pages/purchaseReceipt/job/receiptJob.vue' |
|||
|
|||
export default { |
|||
name: 'purchaseReject', |
|||
components: { |
|||
receiptJob |
|||
}, |
|||
data() { |
|||
return { |
|||
|
|||
}; |
|||
}, |
|||
onShow() { |
|||
if(this.$refs.receiptjob!=undefined){ |
|||
this.$refs.receiptjob.refresh(); |
|||
} |
|||
}, |
|||
|
|||
onPullDownRefresh() { |
|||
this.$refs.receiptjob.refresh(); |
|||
}, |
|||
|
|||
onReachBottom() { |
|||
this.$refs.receiptjob.onReach(); |
|||
}, |
|||
onNavigationBarButtonTap(e) { |
|||
if (e.index === 0) { |
|||
this.$refs.receiptjob.goHome(); |
|||
} else if (e.index == 1) { |
|||
this.$refs.receiptjob.openFilter(); |
|||
} |
|||
}, |
|||
methods: { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style scoped lang="scss"> |
|||
|
|||
</style> |
Loading…
Reference in new issue