|
|
|
|
<template>
|
|
|
|
|
<el-dialog title="新增" append-to-body v-model="openShow" width="70%" @close="closeDialog">
|
|
|
|
|
<div style="margin-bottom: 12px" v-if="moldAddMore">
|
|
|
|
|
<el-button type="primary" @click="addTable">插入一行</el-button>
|
|
|
|
|
<el-button type="danger" @click="delTable">删除行</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table :data="tableData" style="width: 100%" border :cell-style="{ padding: '5px' }">
|
|
|
|
|
<!-- 设施 -->
|
|
|
|
|
<el-table-column prop="device" label="设施" align="center" width="150">
|
|
|
|
|
<template #header>
|
|
|
|
|
<span><i style="color: red">*</i>设施</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-input v-model="scope.row.device" placeholder="请输入" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="drug" label="药品" align="center" width="150">
|
|
|
|
|
<template #header>
|
|
|
|
|
<span><i style="color: red">*</i>药品</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-input v-model="scope.row.drug" placeholder="请输入" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="dose" label="剂量(kg)" align="center" width="150">
|
|
|
|
|
<template #header>
|
|
|
|
|
<span><i style="color: red">*</i>剂量(kg)</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-input v-model="scope.row.dose" type="number" placeholder="请输入" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="dosingTime" label="加药时间" align="center" width="210">
|
|
|
|
|
<template #header>
|
|
|
|
|
<span><i style="color: red" >*</i>加药时间</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-date-picker v-model="scope.row.dosingTime" format="YYYY-MM-DD HH:mm:ss" value-format="YYYY-MM-DD HH:mm:ss" type="datetime" placeholder="选择日期" style="width: 100%" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="dosingMan" label="加药人" align="center" width="150">
|
|
|
|
|
<template #header>
|
|
|
|
|
<span><i style="color: red">*</i>加药人</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-select v-model="scope.row.dosingMan" placeholder="请选择" style="width: 100%">
|
|
|
|
|
<el-option v-for="item in dosingManList" :key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="memo" label="备注" align="center">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-input v-model="scope.row.memo" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<template #footer>
|
|
|
|
|
<span class="dialog-footer">
|
|
|
|
|
<el-button @click="closeDialog">取 消</el-button>
|
|
|
|
|
<el-button type="primary" @click="submit">确 定</el-button>
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
|
showDialog: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
moldAddMore: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
dosingManList: {
|
|
|
|
|
type: Array,
|
|
|
|
|
default: () => [] // 默认空数组
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
openShow: false,
|
|
|
|
|
tableData: [
|
|
|
|
|
// 初始化一行空数据
|
|
|
|
|
{
|
|
|
|
|
device: null,
|
|
|
|
|
dosingTime: null,
|
|
|
|
|
dosingMan: null,
|
|
|
|
|
drug: null,
|
|
|
|
|
dose: null,
|
|
|
|
|
memo: '',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
// 监听父组件传入的显示状态,同步更新弹窗
|
|
|
|
|
showDialog: {
|
|
|
|
|
handler(newVal) {
|
|
|
|
|
this.openShow = newVal;
|
|
|
|
|
},
|
|
|
|
|
immediate: true
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.openShow = false;
|
|
|
|
|
this.$emit('closeDialog');
|
|
|
|
|
},
|
|
|
|
|
// 插入一行
|
|
|
|
|
addTable() {
|
|
|
|
|
this.tableData.push({
|
|
|
|
|
device: null,
|
|
|
|
|
dosingTime: null,
|
|
|
|
|
dosingMan: null,
|
|
|
|
|
drug: null,
|
|
|
|
|
dose: null,
|
|
|
|
|
memo: '',
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 删除行
|
|
|
|
|
delTable() {
|
|
|
|
|
if (this.tableData.length <= 1) {
|
|
|
|
|
this.$message.warning('至少保留一行数据');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.tableData.pop(); // 删除最后一行
|
|
|
|
|
},
|
|
|
|
|
// 提交数据
|
|
|
|
|
submit() {
|
|
|
|
|
const isValid = this.tableData.every(row => {
|
|
|
|
|
// 检查所有必填项
|
|
|
|
|
if (!row.device || !row.dosingTime || !row.dosingMan || !row.drug || !row.dose) {
|
|
|
|
|
// 指明具体缺少的字段
|
|
|
|
|
const missingFields = [];
|
|
|
|
|
if (!row.device) missingFields.push("设施");
|
|
|
|
|
if (!row.dosingTime) missingFields.push("加药时间");
|
|
|
|
|
if (!row.dosingMan) missingFields.push("加药人");
|
|
|
|
|
if (!row.drug) missingFields.push("药品");
|
|
|
|
|
if (!row.dose) missingFields.push("剂量(kg)");
|
|
|
|
|
this.$message.error(`请完善必填项: ${missingFields.join(", ")}`);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
if (isValid) {
|
|
|
|
|
const submitData = this.tableData.map(row => ({
|
|
|
|
|
...row,
|
|
|
|
|
dorType: 1
|
|
|
|
|
}));
|
|
|
|
|
// 如果所有必填项都填写了,则进行提交操作
|
|
|
|
|
this.$emit("submitData", submitData); // 通知父组件刷新表格数据
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped></style>
|