diff --git a/src/pages/purchaseReceipt/job/purchaseReject.vue b/src/pages/purchaseReceipt/job/purchaseReject.vue index 67993938..12ac4876 100644 --- a/src/pages/purchaseReceipt/job/purchaseReject.vue +++ b/src/pages/purchaseReceipt/job/purchaseReject.vue @@ -1,6 +1,6 @@ @@ -10,6 +10,7 @@ import { onShow, onNavigationBarButtonTap, onReady, onReachBottom, onPullDownRef import receiptJob from '@/pages/purchaseReceipt/job/receiptJob.vue' const receiptjob = ref() +const title = ref('') onShow(() => { nextTick(() => { if (receiptjob.value != undefined) { @@ -17,6 +18,9 @@ onShow(() => { } }) }) +onLoad((option) => { + title.value = option.title +}) onPullDownRefresh(() => { receiptjob.value.refresh() })