代码更新

This commit is contained in:
梁州 2024-07-22 17:02:52 +08:00
parent 086ac4146e
commit ffa2fb6790
7 changed files with 447 additions and 54 deletions

View File

@ -64,6 +64,14 @@ const changeTaskStatus = (params) => {
}) })
} }
const getWorkByStandAndGoods = (params) => {
return request({
url: '/task/getWorkByStandAndGoods',
method: 'post',
data: params
})
}
export { export {
sendGoodsInTask, sendGoodsInTask,
sendGoodsOutTask, sendGoodsOutTask,
@ -73,4 +81,5 @@ export {
getTasks, getTasks,
finishPickingAndBack, finishPickingAndBack,
changeTaskStatus, changeTaskStatus,
getWorkByStandAndGoods
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,7 +1,7 @@
import axios from 'axios' import axios from 'axios'
const request = axios.create({ const request = axios.create({
baseURL: 'http://192.168.3.254:12315/wms', baseURL: 'http://localhost:12315/wms',
timeout: 5000 timeout: 5000
}) })

409
src/layout/prepareGoods.vue Normal file
View File

@ -0,0 +1,409 @@
<template>
<el-config-provider :locale="zhCn">
<el-container class="content">
<div class="work-area">
<fieldset class="title-area">
<legend>
工作台
</legend>
<div class="title-div">
<span class="title-text">Kitting备料</span>
</div>
<div class="station-div">
<span class="station-text">工作站</span>
</div>
<div class="station-no-div">
<span class="station-no-text">{{ standId }}</span>
</div>
</fieldset>
<fieldset class="main-area">
<legend>
备料
</legend>
<el-form ref="workFormRef" :model="workFormEntity" :label-position="labelPosition"
label-width="150px" style="max-width: 100%" :rules="rules" status-icon>
<div style="display: flex;">
<div style="display: block; margin: 5px;">
<div style="display: none;">{{ workFormEntity.tip }}</div>
<div style="display: flex;">
<div style="display: flex; flex-direction: column;">
<div class="display-title-div">
<span class="display-title-text">料号</span>
</div>
<div class="display-form-div">
<el-input v-model="workFormEntity.goodsId" size="default" v-on:keyup.prevent.enter="getCurrentWorkInfo()"
clearable></el-input>
</div>
</div>
<div style="display: flex; flex-direction: column;">
<div class="display-title-div">
<span class="display-title-text">计划拣选数量</span>
</div>
<div style="display: flex; margin-top: 20px;">
<div class="display-form-div-left">
<el-input-number v-model.number="workFormEntity.planPickNum"
controls-position="right" :min="0" width="200px" />
</div>
<div class="display-form-div-right">
<span class="display-form-text-right">{{ workFormEntity.goodsUnit }}</span>
</div>
</div>
</div>
<div style="display: flex; flex-direction: column;">
<div class="display-title-div">
<span class="display-title-text">实际数量差异</span>
</div>
<div style="display: flex; margin-top: 20px;">
<div class="display-form-div-left">
<el-input-number v-model.number="workFormEntity.actualDifference"
controls-position="right" :min="0" />
</div>
<div class="display-form-div-right">
<span class="display-form-text-right">{{ workFormEntity.goodsUnit }}</span>
</div>
</div>
</div>
</div>
<div style="display: flex; margin-top: 65px">
<div
style="display: inline-flex; justify-content: center; width: 160px; margin: 5px; padding: 5px; background-color: #CCCCCC;">
<span style="align-self: center; font-weight: bold;font-size: 25px;">备注</span>
</div>
<div
style="display: inline-flex; justify-content: center; width: 700px; margin: 5px; padding: 5px; background-color: #00AAE8;">
<span style="align-self: center; font-weight: bold;font-size: 25px;">{{ workFormEntity.remark }}</span>
</div>
</div>
<div style="display: flex; margin-top: 5px; margin-top: 15px">
<div
style="display: inline-flex; justify-content: center; width: 160px; margin: 5px; padding: 5px; background-color: #CCCCCC;">
<span
style="align-self: center; font-weight: bold;font-size: 20px;">当前进度</span>
</div>
<div
style="display: inline-flex; justify-content: center; width: 240px; margin: 5px; padding: 5px; background-color: #CCCCCC;">
<span style="align-self: center; font-weight: bold;font-size: 20px;">
{{ workFormEntity.finishedRows + '/' + workFormEntity.totalRows }}
</span>
</div>
<div
style="display: inline-flex; justify-content: center; width: 80px; margin: 5px; padding: 5px; background-color: #CCCCCC;">
<span style="align-self: center; font-weight: bold;font-size: 20px;"></span>
</div>
<div
style="display: inline-flex; justify-content: center; width: 240px; margin: 5px; padding: 5px; background-color: #CCCCCC;">
<span style="align-self: center; font-weight: bold;font-size: 20px;">
{{ workFormEntity.finishedCounts + '/' + workFormEntity.totalCounts }}
</span>
</div>
<div
style="display: inline-flex; justify-content: center; width: 80px; margin: 5px; padding: 5px; background-color: #CCCCCC;">
<span style="align-self: center; font-weight: bold;font-size: 20px;">{{ workFormEntity.goodsUnit }}</span>
</div>
</div>
</div>
<div style="margin: 10px;">
<div class="arrow">
<span
style="margin-left: 25px; align-self: center; font-weight: bold;font-size: 45px; writing-mode: vertical-lr;">完成确认</span>
</div>
</div>
</div>
</el-form>
</fieldset>
</div>
</el-container>
</el-config-provider>
</template>
<script setup>
import store from '@/store'
import { getWorkByStand } from '@/api/task'
import { taskStatusFormatter, dueFormatter, timeFormatter } from '@/utils/formatter.js'
import { reactive, ref } from 'vue'
import { ElMessage } from 'element-plus'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
</script>
<script>
export default {
name: 'prepareGoods',
data() {
return {
standId: store.getters.getStandId,
timer: '',
labelPosition: 'top',
workFormRef: ref(),
workFormEntity: reactive({
goodsId: '',
goodsUnit: '',
planPickNum: 0,
actualDifference: 0,
remark: '',
finishedRows: 0,
totalRows: 0,
finishedCounts: 0,
totalCounts: 0,
tip: ''
}),
rules: reactive({
goodsId: [
{ required: true, message: '请输入料号' }
]
}),
}
},
mounted() {
// this.timer = setInterval(() => {
// // this.getAllTasks()
// }, 2000)
},
beforeUnmount() {
clearInterval(this.timer)
},
methods: {
getCurrentWorkInfo() {
this.workFormEntity = {
goodsId: 'text0001',
goodsUnit: 'PC',
planPickNum: 10,
actualDifference: 0,
remark: '装盒子',
finishedRows: 800,
totalRows: 2500,
finishedCounts: 2500,
totalCounts: 6000,
tip: ''
}
// const request = {
// standId: this.standId,
// goodsId: this.workFormEntity.goodsId
// }
// getWorkByStandAndGoods(request).then(res => {
// const response = res.data
// if (response.code == 0) {
// this.workFormEntity.goodsId = response.returnData.goodsId
// this.workFormEntity.goodsUnit = response.returnData.goodsUnit
// this.workFormEntity.planPickNum = response.returnData.planPickNum
// this.workFormEntity.actualDifference = response.returnData.actualDifference
// this.workFormEntity.remark = response.returnData.remark
// this.workFormEntity.finishedRows = response.returnData.finishedRows
// this.workFormEntity.totalRows = response.returnData.totalRows
// this.workFormEntity.finishedCounts = response.returnData.finishedCounts
// this.workFormEntity.totalCounts = response.returnData.totalCounts
// this.workFormEntity.tip = response.returnData.tip
// }
// }).catch(err => {
// console.log(err)
// ElMessage.error('')
// })
},
//
taskStatusFormat: (row, column, cellValue, index) => {
return taskStatusFormatter(cellValue)
},
//
dueFormat: (row, column, cellValue, index) => {
return dueFormatter(cellValue)
},
//
timeFormat: (row, column, cellValue, index) => {
return timeFormatter(cellValue)
},
confirmTask(formEl, formData) {
if (!formEl) return
formEl.validate((valid) => {
if (!valid) {
ElMessage({
message: '确认信息验证失败',
type: 'warning',
})
return
}
if (formData.taskId = '' || formData.vehicleId == '' || formData.goodsId == '') {
ElMessage({
message: '载具号、物料号、任务号不可缺少',
type: 'error',
})
return
}
const confirmParams = {
taskId: formData.taskId,
vehicleId: formData.vehicleId,
goodsId: formData.goodsId,
opNum: formData.opNum,
originNum: formData.originNum,
userName: formData.userName
}
finishPickingAndBack(confirmParams).then(res => {
if (res.data.code == 0) {
ElMessage({
message: '确认成功!',
type: 'success',
})
formEl.resetFields()
} else {
ElMessage.error(res.data.message)
}
}).catch(err => {
ElMessage.error('创建出库任务错误!')
})
})
}
}
}
</script>
<style scoped>
.content {
display: flex;
width: 100%;
}
.work-area {
width: 100%;
/* padding: 5px; */
}
.main-area {
margin: auto;
height: 90%;
margin-bottom: 10px;
min-width: inherit;
border: solid 1px;
border-radius: 10px;
box-shadow: 0px 15px 10px -15px #000;
overflow: auto;
}
.title-area {
display: flex;
height: 10%;
margin-bottom: 10px;
min-width: inherit;
border: solid 1px;
border-radius: 10px;
box-shadow: 0px 15px 10px -15px #000;
overflow: auto;
}
.arrow {
background: linear-gradient(-105deg,
transparent 50%,
#309330 50%,
#309330 100%) top right,
linear-gradient(-75deg,
transparent 50%,
#309330 50%,
#309330 100%) bottom right;
background-size: 100% 50%;
height: 450px;
width: 250px;
background-repeat: no-repeat;
display: inline-flex;
}
:deep(.el-input) {
height: 130px;
font-size: 25px;
}
:deep(.el-input-number) {
height: 130px;
font-size: 25px;
}
.title-div {
display: inline-flex;
width: -webkit-fill-available;
margin-right: 5px;
padding: 5px;
background-color: #CCCCCC;
}
.title-text {
align-self: center;
font-weight: bold;
font-size: 25px;
}
.station-div {
display: inline-flex;
justify-content: center;
width: 125px;
margin-left: 5px;
margin-right: 5px;
padding: 5px;
background-color: #FFFAAA;
}
.station-text {
align-self: center;
font-weight: bold;
font-size: 25px;
}
.station-no-div {
display: inline-flex;
justify-content: center;
width: 75px;
padding: 5px;
border: 5px double #000000;
}
.station-no-text {
align-self: center;
font-weight: bold;
font-size: 25px;
}
.display-title-div {
display: inline-flex;
justify-content: center;
width: 280px;
height: 80px;
margin: 5px;
padding: 5px;
background-color: #FFFAAA;
}
.display-title-text {
align-self: center;
font-weight: bold;
font-size: 25px;
}
.display-form-div {
display: inline-flex;
justify-content: center;
width: 270px;
margin: 5px;
padding: 5px;
border: 5px double #000000;
margin-top: 25px;
}
.display-form-div-left {
display: inline-flex;
justify-content: center;
width: 170px;
margin: 5px;
padding: 5px;
border: 5px double #000000;
}
.display-form-div-right {
display: inline-flex;
justify-content: center;
width: 80px;
margin: 5px;
padding: 5px;
background-color: #CCCCCC;
}
.display-form-text-right {
align-self: center;
font-weight: bold;
font-size: 25px;
}
</style>

View File

@ -25,6 +25,7 @@ const routes = [
{ path: '/inventory', component: () => import('@/layout/inventory.vue') },// 盘点 { path: '/inventory', component: () => import('@/layout/inventory.vue') },// 盘点
{ path: '/inventoryRecord', component: () => import('@/layout/inventoryRecord.vue') },// 盘点 { path: '/inventoryRecord', component: () => import('@/layout/inventoryRecord.vue') },// 盘点
{ path: '/wmsLog', component: () => import('@/layout/wmsLog.vue') },// 日志 { path: '/wmsLog', component: () => import('@/layout/wmsLog.vue') },// 日志
{ path: '/testPrepareGoods', component: () => import('@/layout/prepareGoods.vue') },// 日志
] ]
}, },
{ {

View File

@ -10,7 +10,8 @@ export default createStore({
user: {}, user: {},
menuList: [], menuList: [],
token: '', token: '',
verifier: '' verifier: '',
standId: '# 1'
}, },
getters: { getters: {
getUserName(state) { getUserName(state) {
@ -25,6 +26,9 @@ export default createStore({
getVerify(state) { getVerify(state) {
return state.verifier return state.verifier
}, },
getStandId(state) {
return state.standId
}
}, },
mutations: { mutations: {
/** /**

View File

@ -1,11 +1,11 @@
<template> <template>
<el-container class="wms-home"> <el-container class="wms-home">
<el-header class="header"> <el-header class="header">
<div class="icon-img"> <!-- <div class="icon-img">
<el-image :src="icon_img_url" :fit="'fill'" /> <el-image :src="icon_img_url" :fit="'fill'" />
</div> </div> -->
<div class="title"> <div class="title">
<span style="font-size: 15px;font-weight: bold;">WMS仓库管理系统</span> <span style="font-size: 15px;font-weight: bold;">Caterpillar CSCL ASRS Management System</span>
</div> </div>
<div class="user"> <div class="user">
<el-dropdown @command="handleCommand"> <el-dropdown @command="handleCommand">
@ -23,21 +23,15 @@
</el-header> </el-header>
<el-container class="content"> <el-container class="content">
<el-aside class="aside"> <el-aside class="aside">
<el-scrollbar style="max-height: 95%;"> <el-scrollbar style="height: max-content;">
<sideMenu></sideMenu> <sideMenu></sideMenu>
</el-scrollbar> </el-scrollbar>
<div :class="$route.path === '/location' ? 'locationsSel' : 'locations'" @click="openLocations">
<el-icon>
<View />
</el-icon>
<span>库位监控</span>
</div>
</el-aside> </el-aside>
<el-container> <el-container class="view-container">
<el-header class="tag"> <el-header class="tag">
<appTag></appTag> <appTag></appTag>
</el-header> </el-header>
<el-main> <el-main class="view-main">
<!-- 路由占位符 --> <!-- 路由占位符 -->
<el-scrollbar> <el-scrollbar>
<router-view v-slot="{ Component }"> <router-view v-slot="{ Component }">
@ -48,7 +42,10 @@
</router-view> </router-view>
</el-scrollbar> </el-scrollbar>
</el-main> </el-main>
<el-footer class="footer">© 1970- 江苏菲达宝开电气股份有限公司</el-footer> <el-footer class="footer">
<span style="align-self: center; margin-left: 10px;">Lets do the work!</span>
<span style="align-self: center; margin-right: 10px;">Caterpillar © 2024. All Rights Reserved</span>
</el-footer>
</el-container> </el-container>
</el-container> </el-container>
</el-container> </el-container>
@ -77,14 +74,6 @@ export default {
} }
}, },
methods: { methods: {
openLocations() {
this.$store.commit('mutationSelectTags', {
id: '25',
labelName: '库位监控',
path: '/location'
})
this.$router.push('/location')
},
handleCommand: (command) => { handleCommand: (command) => {
const param = store.getters.getUser const param = store.getters.getUser
if (command == 1) { if (command == 1) {
@ -118,7 +107,8 @@ export default {
<style scoped> <style scoped>
.wms-home { .wms-home {
height: 100%; height: calc(100vh);
width: calc(100vw);
background-color: #CCCCCC; background-color: #CCCCCC;
} }
@ -128,8 +118,7 @@ export default {
} }
.header { .header {
/* background-color: #66CCFF; */ background-color: #FFC000;
background-color: #D9E3EE;
display: flex; display: flex;
align-items: center; align-items: center;
height: 5%; height: 5%;
@ -144,10 +133,9 @@ export default {
} }
.footer { .footer {
background-color: #F0FFFF; background-color: #FFC000;
display: flex; display: flex;
justify-content: center; justify-content: space-between;
flex-direction: column;
height: 3%; height: 3%;
} }
@ -155,7 +143,7 @@ export default {
padding-left: 1px; padding-left: 1px;
display: flex; display: flex;
align-items: center; align-items: center;
height: 30px; height: 35px;
border-bottom: solid 1px; border-bottom: solid 1px;
} }
@ -177,31 +165,13 @@ export default {
margin-left: auto; margin-left: auto;
} }
.locations { .view-container {
padding: 5px; height: 100%;
display: flex; width: 90%;
justify-content: center;
align-items: center;
height: 3.8%;
border-top: solid 1px;
cursor: pointer;
color: #5A9CF8;
} }
.locationsSel { .view-main {
padding: 5px; height: 97% - 35px;
display: flex; width: 100%;
justify-content: center;
align-items: center;
height: 3.8%;
border-top: solid 1px;
cursor: pointer;
background-color: #5A9CF8;
color: #000;
}
.locations:hover {
background-color: #5A9CF8;
color: #000;
} }
</style> </style>