|
|
@ -47,6 +47,10 @@ const props = defineProps({ |
|
|
|
type: { |
|
|
|
type: String, |
|
|
|
default: 'assemble' |
|
|
|
}, |
|
|
|
title: { |
|
|
|
type: String, |
|
|
|
default: '' |
|
|
|
} |
|
|
|
}) |
|
|
|
const jobList = ref([]) |
|
|
@ -122,13 +126,8 @@ const getList = (type) => { |
|
|
|
|
|
|
|
const { list } = res.data |
|
|
|
totalCount.value = res.data.total |
|
|
|
if (props.type == 'predict') { |
|
|
|
updateTitle(`预生产收货任务(${totalCount.value})`) |
|
|
|
} else if (props.type == 'assemble') { |
|
|
|
updateTitle(`装配收货任务(${totalCount.value})`) |
|
|
|
} else { |
|
|
|
updateTitle(`报废收货任务(${totalCount.value})`) |
|
|
|
} |
|
|
|
updateTitle(`${title.value}(${totalCount.value})`) |
|
|
|
|
|
|
|
loadingType.value = 'loadmore' |
|
|
|
if (list == null || list.length == 0) { |
|
|
|
loadingType.value = 'nomore' |
|
|
@ -141,13 +140,8 @@ const getList = (type) => { |
|
|
|
if (type === 'refresh') { |
|
|
|
uni.stopPullDownRefresh() |
|
|
|
} |
|
|
|
if (props.type == 'predict') { |
|
|
|
updateTitle(`预生产收货任务(${totalCount.value})`) |
|
|
|
} else if (props.type == 'assemble') { |
|
|
|
updateTitle(`装配收货任务(${totalCount.value})`) |
|
|
|
} else { |
|
|
|
updateTitle(`报废收货任务(${totalCount.value})`) |
|
|
|
} |
|
|
|
updateTitle(`${title.value}(${totalCount.value})`) |
|
|
|
|
|
|
|
loadingType.value = '' |
|
|
|
uni.hideLoading() |
|
|
|
showMessage(error) |
|
|
@ -157,15 +151,15 @@ const getList = (type) => { |
|
|
|
const openJobDetail = (item, packingNumber = '') => { |
|
|
|
if (props.type == 'predict') { |
|
|
|
uni.navigateTo({ |
|
|
|
url: `./productReceiptDetail?id=${item.masterId}&status=${item.status}&scaned=${packingNumber}` |
|
|
|
url: `./productReceiptDetail?id=${item.masterId}&status=${item.status}&scaned=${packingNumber}&title=${title.value}` |
|
|
|
}) |
|
|
|
} else if (props.type == 'assemble') { |
|
|
|
uni.navigateTo({ |
|
|
|
url: `./fgProductReceiptDetail?id=${item.masterId}&status=${item.status}&scaned=${packingNumber}` |
|
|
|
url: `./fgProductReceiptDetail?id=${item.masterId}&status=${item.status}&scaned=${packingNumber}&title=${title.value}` |
|
|
|
}) |
|
|
|
} else { |
|
|
|
uni.navigateTo({ |
|
|
|
url: `./scrapReceiptDetail?id=${item.masterId}&status=${item.status}&scaned=${packingNumber}` |
|
|
|
url: `./scrapReceiptDetail?id=${item.masterId}&status=${item.status}&scaned=${packingNumber}&title=${title.value}` |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|