领料页面优化

This commit is contained in:
BianLzhaoMin 2024-06-05 14:03:17 +08:00
parent 924765b242
commit 9f963fbdc8
4 changed files with 5 additions and 1 deletions

View File

@ -41,6 +41,7 @@ export default {
methods: { methods: {
/* 新建领料任务 */ /* 新建领料任务 */
addPicking() { addPicking() {
this.viewTaskId = ''
this.isView = true this.isView = true
this.isEdit = false this.isEdit = false
this.isShowComponent = 'AddPicking' this.isShowComponent = 'AddPicking'

View File

@ -37,6 +37,7 @@ export default {
methods: { methods: {
// 退 // 退
returnApply() { returnApply() {
this.rejectId = ''
this.pageContent = '新建退料任务' this.pageContent = '新建退料任务'
this.isShowComponent = 'AddReturn' this.isShowComponent = 'AddReturn'
}, },

View File

@ -1,5 +1,5 @@
<template> <template>
<div class="app-container" id="newDevicesCode"> <div id="newDevicesCode">
<el-form <el-form
:model="queryParams" :model="queryParams"
ref="queryForm" ref="queryForm"

View File

@ -52,6 +52,8 @@ export default {
/* 新增工机具 */ /* 新增工机具 */
addTools() { addTools() {
this.isEdit = false this.isEdit = false
this.editTaskId = ''
this.queryTaskId = ''
this.pageContent = '新增机具' this.pageContent = '新增机具'
this.isShowComponent = 'AddTools' this.isShowComponent = 'AddTools'
}, },