Browse Source

YT-2526要货计划编辑页面不应该有筛选内容

intex_online20250427
张立 4 days ago
parent
commit
fc0c1e936b
  1. 8
      src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/index.vue

8
src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/index.vue

@ -76,7 +76,7 @@
@onBlur="onEnter">
<template #TableFormHead>
<div style="border-top:1px solid #ebeef5;padding:10px 10px 0 10px ;margin-right:10px">
<div style="border-top:1px solid #ebeef5;padding:10px 10px 0 10px ;margin-right:10px" v-if="clickType =='create'">
<el-form :inline="true" :model="tableDataSearch">
<el-form-item label="筛选: 品番">
<el-input v-model="tableDataSearch.itemCode" placeholder="请输入品番" clearable @change="changeTableDataSearch"/>
@ -544,9 +544,11 @@ const isShowMainButton1 = (row, val) => {
}
/** 添加/修改操作 */
const formRef = ref()
const openForm = async (type : string, row ?: number) => {
const formRef = ref()
const clickType = ref('')
const openForm = async (type : string, row ?: number) => {
clearTableDataSearch()
clickType.value = type
formRef.value.open(type, row)
if('create'==type){
nextTick(async () => {

Loading…
Cancel
Save