|
|
@ -65,6 +65,7 @@ const status = ref('1,2') // 待处理 、进行中 |
|
|
|
const detailOptions = ref([]) |
|
|
|
const detailGiveupOptions = ref([]) |
|
|
|
const scanMessage = ref('') |
|
|
|
const scanMessage = ref('') |
|
|
|
const filter = ref() |
|
|
|
const comMessageRef = ref() |
|
|
|
const jobInfoPopupRef = ref() |
|
|
@ -163,6 +164,7 @@ const openJobDetail = (item, scanMessage = '') => { |
|
|
|
url: `./scrapReceiptDetail?id=${item.masterId}&status=${item.status}&scanMessage=${scanMessage}&title=${title.value}` |
|
|
|
}) |
|
|
|
} |
|
|
|
scanMessage.value = '' |
|
|
|
} |
|
|
|
|
|
|
|
const showItemList = (itemList) => { |
|
|
@ -319,6 +321,11 @@ const getScanResult = (result) => { |
|
|
|
column: 'status', |
|
|
|
action: 'in', |
|
|
|
value: '1,2' |
|
|
|
}, |
|
|
|
{ |
|
|
|
column: 'accept_user_id', |
|
|
|
action: '==', |
|
|
|
value: store.id |
|
|
|
} |
|
|
|
// { |
|
|
|
// column: 'fromLocationCode', |
|
|
@ -332,6 +339,7 @@ const getScanResult = (result) => { |
|
|
|
pageSize: 100 |
|
|
|
}) |
|
|
|
.then((res) => { |
|
|
|
scanMessage.value = result.scanMessage |
|
|
|
const resultList = res.data.list |
|
|
|
if (resultList.length > 0) { |
|
|
|
resultList.forEach((item) => { |
|
|
|