材料员-领料确认

This commit is contained in:
bb_pan 2025-07-28 10:38:02 +08:00
parent 94042b4704
commit 658177b84f
4 changed files with 10 additions and 5 deletions

View File

@ -46,7 +46,9 @@
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
"<uses-feature android:name=\"android.hardware.camera\"/>",
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>",
"CAMERA",
"WRITE_EXTERNAL_STORAGE"
]
},
/* ios */

View File

@ -73,7 +73,7 @@ const isUsingList = ref([
{ path: 'teamStore', name: '班组库存', src: 'teamStore', isShow: true },
{ path: 'teamWarning', name: '班组预警', src: 'teamWarning', isShow: true },
{ path: 'authorizeSignature', name: '项目部授权', src: 'authorizeSignature', isShow: true },
{ path: 'materialClerkConfirms', name: '材料员确认', src: 'outStore', isShow: true },
{ path: 'materialClerkConfirms', name: '领料确认', src: 'outStore', isShow: true },
])
const userAgent = navigator.userAgent.toLowerCase()

View File

@ -36,11 +36,15 @@ import { getInfoByIdApi } from '@/services/materialsStation'
const itemId = ref(null)
const tableList = ref([])
onShow(() => {
if (itemId.value) getList()
})
onLoad((opt) => {
console.log('🚀 ~ onLoad ~ opt:', opt)
itemId.value = opt.id
console.log('🚀 ~ itemId.value:', itemId.value)
getList()
// getList()
})
const onScrollTolower = () => {

View File

@ -83,8 +83,7 @@ const finish = computed(() => {
if (total.value === tableList.value.length) return true
})
onShow((opt) => {
console.log('🚀 ~ onLoad ~ opt:', opt)
onShow(() => {
getList()
})