|
|
@ -54,7 +54,14 @@ |
|
|
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="CountConfig.allSchemas" /> |
|
|
|
|
|
|
|
<!-- 导入 --> |
|
|
|
<ImportForm ref="importFormRef" url="/wms/count-config/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
|
|
|
<ImportForm ref="importFormRef" |
|
|
|
url="/wms/count-config/import" |
|
|
|
:importTemplateData="importTemplateData" |
|
|
|
@success="importSuccess" |
|
|
|
:updateIsDisable="true" |
|
|
|
:appendIsDisable="true" |
|
|
|
:mode="3" |
|
|
|
/> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
@ -158,6 +165,21 @@ const buttonTableClick = async (val, row) => { |
|
|
|
/** 添加/修改操作 */ |
|
|
|
const basicFormRef = ref() |
|
|
|
const openForm = (type: string, row?: any) => { |
|
|
|
if(type=='create'){ |
|
|
|
CountConfig.allSchemas.formSchema.forEach(item =>{ |
|
|
|
if(item.field == "itemCode"){ |
|
|
|
item.componentProps.isSearchList = true |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
}) |
|
|
|
} else if(type=='update'){ |
|
|
|
CountConfig.allSchemas.formSchema.forEach(item =>{ |
|
|
|
if(item.field == "itemCode"){ |
|
|
|
item.componentProps.isSearchList = false |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
basicFormRef.value.open(type, row) |
|
|
|
} |
|
|
|
|
|
|
|