|
|
<template>
|
|
|
<el-form
|
|
|
ref="formRef"
|
|
|
:model="formData"
|
|
|
:rules="formRules"
|
|
|
v-loading="formLoading"
|
|
|
label-width="0px"
|
|
|
:inline-message="true"
|
|
|
>
|
|
|
<el-table :data="formData" class="-mt-10px">
|
|
|
<el-table-column label="序号" type="index" width="100" />
|
|
|
<el-table-column label="产品" min-width="150">
|
|
|
<template #default="{ row, $index }">
|
|
|
<el-form-item :prop="`${$index}.productId`" :rules="formRules.productId" class="mb-0px!">
|
|
|
<el-input v-model="row.productId" placeholder="请输入产品" />
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="单位" min-width="150">
|
|
|
<template #default="{ row, $index }">
|
|
|
<el-form-item :prop="`${$index}.unitId`" :rules="formRules.unitId" class="mb-0px!">
|
|
|
<el-input v-model="row.unitId" placeholder="请输入单位" />
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="数量" min-width="150">
|
|
|
<template #default="{ row, $index }">
|
|
|
<el-form-item :prop="`${$index}.number`" :rules="formRules.number" class="mb-0px!">
|
|
|
<el-input v-model="row.number" placeholder="请输入数量" />
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="备注" min-width="150">
|
|
|
<template #default="{ row, $index }">
|
|
|
<el-form-item :prop="`${$index}.remark`" :rules="formRules.remark" class="mb-0px!">
|
|
|
<el-input v-model="row.remark" placeholder="请输入备注" />
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" fixed="right" label="操作" width="60">
|
|
|
<template #default="{ $index }">
|
|
|
<el-button type="danger" @click="handleDelete($index)" link>
|
|
|
<Icon icon="ep:delete" />
|
|
|
</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</el-form>
|
|
|
<el-row justify="center" class="mt-3">
|
|
|
<el-button @click="handleAdd" round>+ 添加领料明细</el-button>
|
|
|
</el-row>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
import { ItemRequisitionApi } from '@/api/mes/itemrequisition'
|
|
|
|
|
|
const props = defineProps<{
|
|
|
itemRequisitionId: undefined // 领料单ID(主表的关联字段)
|
|
|
}>()
|
|
|
const formLoading = ref(false) // 表单的加载中
|
|
|
const formData = ref([])
|
|
|
const formRules = reactive({
|
|
|
productId: [{ required: true, message: '产品ID不能为空', trigger: 'blur' }],
|
|
|
unitId: [{ required: true, message: '单位ID不能为空', trigger: 'blur' }],
|
|
|
itemRequisitionId: [{ required: true, message: '领料单ID不能为空', trigger: 'blur' }]
|
|
|
})
|
|
|
const formRef = ref() // 表单 Ref
|
|
|
|
|
|
/** 监听主表的关联字段的变化,加载对应的子表数据 */
|
|
|
watch(
|
|
|
() => props.itemRequisitionId,
|
|
|
async (val) => {
|
|
|
// 1. 重置表单
|
|
|
formData.value = []
|
|
|
// 2. val 非空,则加载数据
|
|
|
if (!val) {
|
|
|
return;
|
|
|
}
|
|
|
try {
|
|
|
formLoading.value = true
|
|
|
formData.value = await ItemRequisitionApi.getItemRequisitionDetailListByItemRequisitionId(val)
|
|
|
} finally {
|
|
|
formLoading.value = false
|
|
|
}
|
|
|
},
|
|
|
{ immediate: true }
|
|
|
)
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
const handleAdd = () => {
|
|
|
const row = {
|
|
|
id: undefined,
|
|
|
productId: undefined,
|
|
|
unitId: undefined,
|
|
|
itemRequisitionId: undefined,
|
|
|
number: undefined,
|
|
|
remark: undefined
|
|
|
}
|
|
|
row.itemRequisitionId = props.itemRequisitionId
|
|
|
formData.value.push(row)
|
|
|
}
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
const handleDelete = (index) => {
|
|
|
formData.value.splice(index, 1)
|
|
|
}
|
|
|
|
|
|
/** 表单校验 */
|
|
|
const validate = () => {
|
|
|
return formRef.value.validate()
|
|
|
}
|
|
|
|
|
|
/** 表单值 */
|
|
|
const getData = () => {
|
|
|
return formData.value
|
|
|
}
|
|
|
|
|
|
defineExpose({ validate, getData })
|
|
|
</script>
|