生产补料验证

This commit is contained in:
刘晓鹏 2025-06-13 17:22:28 +08:00
parent fefa0bf215
commit 0bef97c39a
2 changed files with 7 additions and 2 deletions

View File

@ -34,11 +34,9 @@
<view class="type-item type-item-hl" @tap="toPages('/pages/supplementaryValidation/index')">
<view class="type-item-text">{{ t('home.scblyz') }}</view>
</view>
<view class="type-item type-item-hl" @tap="toPages('/pages/returnMaterials/index')">
<view class="type-item-text">{{ t('home.sctl') }}</view>
</view>
<view class="type-item type-item-hl" @tap="toPages('/pages/productionReturnVerify/index')">
<view class="type-item-text">{{ t('home.sctlyz') }}</view>
</view>

View File

@ -76,6 +76,7 @@
}).then((res:any) => {
if(res.code === 200){
uni.$u.toast(t('public.cg'))
toPages('/pages/ruleClaim/index')
}
})
}
@ -96,6 +97,12 @@
let item = val.find((p : any) => p.Key === (lang_Id === 'cn' ? 2052 : 1033));
return item ? item.Value : (val[0]?.Value || '');
};
const toPages = (url : string, data : any = {}) => {
uni.$u.route({
url: url,
params: data
})
}
</script>
<style lang="scss" scoped>