三码合一功能

This commit is contained in:
2026-01-05 13:34:30 +08:00
parent 05f5eb6020
commit 450877937d
4 changed files with 133 additions and 22 deletions

View File

@@ -718,46 +718,52 @@
"navigationStyle": "custom"
}
}
,{
"path" : "pages/SecondPhase/slitting/ManEmptyAxle",
,{
"path" : "pages/SecondPhase/slitting/ManEmptyAxle",
"style" :
{
"navigationStyle": "custom"
}
}
,{
"path" : "pages/SecondPhase/slitting/GdsPrepInOut",
}
,{
"path" : "pages/SecondPhase/slitting/GdsPrepInOut",
"style" :
{
"navigationStyle": "custom"
}
}
,{
"path" : "pages/SecondPhase/finished/RelabelOut",
}
,{
"path" : "pages/SecondPhase/finished/RelabelOut",
"style" :
{
"navigationStyle": "custom"
}
}
,{
"path" : "pages/SecondPhase/slitting/Task",
}
,{
"path" : "pages/SecondPhase/slitting/Task",
"style" :
{
"navigationStyle": "custom"
}
}
,{
"path" : "pages/SecondPhase/VehicleUnbind",
}
,{
"path" : "pages/SecondPhase/VehicleUnbind",
"style" :
{
"navigationStyle": "custom"
}
}
}
,{
"path" : "pages/SecondPhase/ThreeCodeToOne",
"style" :
{
"navigationStyle": "custom"
}
}
],
"globalStyle": {
// "pageOrientation": "landscape",

View File

@@ -0,0 +1,97 @@
<template>
<view class="zd_container">
<!-- <nav-bar title="载具解绑"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">内标</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1" />
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">管标</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val2" />
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">木箱码</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val3" />
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">外箱标签码</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val4" />
</view>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !val1 || !val2 || !val3 || !val4}" :disabled="disabled" @tap="_checkCode">外箱标签码</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {checkCode} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
val1: '',
val2: '',
val3: '',
val4: '',
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
methods: {
async _checkCode () {
this.disabled = true
if (!this.val1 || !this.val2 || !this.val3 || !this.val4) {
this.disabled = false
return
}
try {
let res = await checkCode(this.val1, this.val2, this.val3, this.val4)
uni.showToast({
title: res.message,
icon: 'none'
})
this.clearUp()
this.disabled = false
} catch (e) {
this.disabled = false
}
},
clearUp () {
this.val1 = ''
this.val2 = ''
this.val3 = ''
this.val4 = ''
}
}
}
</script>

View File

@@ -666,4 +666,11 @@ export const seeTaskByPoint = (code) => request({
export const vehicleUnbind = (code) => request({
url:'api/twoPda/st/vehicleUnbind',
data: {vehicle_code: code}
})
})
/**
* 三码合一校验(二期打包间管理-三码合一)
*/
export const checkCode = (ncode, gcode, bcode, ccode) => request({
url:'api/pdmBiSubpackagerelation/checkCode',
data: {nb_code: ncode, gb_code: gcode, box_code: bcode, customer_code: ccode}
})

View File

@@ -119,7 +119,8 @@ export const allAuthority = () => {
{menu_id: '1', title: '子卷包装解绑', path: '/pages/SecondPhase/SubRollPackUnbind'},
{menu_id: '1', title: '装箱口木箱回库', path: '/pages/SecondPhase/BoxReturn'},
{menu_id: '1', title: '人工点维护', path: '/pages/SecondPhase/ManMaintain'},
{menu_id: '1', title: '载具解绑', path: '/pages/SecondPhase/VehicleUnbind'}
{menu_id: '1', title: '载具解绑', path: '/pages/SecondPhase/VehicleUnbind'},
{menu_id: '1', title: '三码合一', path: '/pages/SecondPhase/ThreeCodeToOne'}
]},
{menu_id: '6', path: 'RF04', title: '点位管理', sonTree: [
{menu_id: '1', title: '点位管理', path: '/pages/SecondPhase/point/PointManage'},