706 lines
25 KiB
Vue
706 lines
25 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<div class="search-con">
|
|
<div class="title">查询条件</div>
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="100px">
|
|
<el-form-item label="计划名称" prop="planName">
|
|
<el-input v-model="queryParams.planName" placeholder="请输入计划名称" clearable @keyup.enter="handleQuery" />
|
|
</el-form-item>
|
|
<el-form-item label="人员" prop="personId">
|
|
<el-select v-model="queryParams.personId" placeholder="请选择人员" clearable filterable>
|
|
<el-option v-for="item in personList" :key="item.id" :label="item.name" :value="item.id" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="频率类型" prop="frequencyType">
|
|
<el-select v-model="queryParams.frequencyType" placeholder="请选择频率类型" clearable>
|
|
<el-option v-for="dict in medication_frequency_type" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="状态" prop="status">
|
|
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable>
|
|
<el-option v-for="dict in medication_plan_status" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="关键字" prop="keys">
|
|
<el-input v-model="queryParams.keys" placeholder="计划名称/药品名称" clearable @keyup.enter="handleQuery" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div class="search-btn-con">
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
<el-button type="info" icon="Refresh" @click="resetQuery">重置</el-button>
|
|
</div>
|
|
</div>
|
|
<div class="main-con">
|
|
<div class="title-con">
|
|
<div class="title">用药计划</div>
|
|
<div class="operate-btn-con">
|
|
<el-button @click="handleAdd" icon="Plus" v-hasPermi="['health:medicationPlan:add']">新增</el-button>
|
|
<el-button :disabled="multiple" icon="Delete" @click="handleDelete" v-hasPermi="['health:medicationPlan:remove']">删除</el-button>
|
|
</div>
|
|
</div>
|
|
<div class="content-con" v-loading="loading" height="calc(100% - 0.65rem)">
|
|
<el-table v-loading="loading" :data="planList" @selection-change="handleSelectionChange" height="calc(100% - 0.65rem)">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column type="index" label="序号" :index="indexMethod" width="50"></el-table-column>
|
|
<el-table-column label="计划名称" align="center" prop="planName" width="150" />
|
|
<el-table-column label="人员" align="center" prop="personName" width="100" />
|
|
<el-table-column label="药品" align="center" prop="medicineName" width="200" />
|
|
<el-table-column label="剂量" align="center" width="100">
|
|
<template #default="scope">
|
|
<span style="display: inline-flex; align-items: center; gap: 4px">
|
|
{{ scope.row.dosagePerTime }}
|
|
<dict-tag :options="medical_unit" :value="scope.row.dosageUnit" style="display: inline-flex" />
|
|
</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="频次类型" align="center" prop="frequencyType" width="100">
|
|
<template #default="scope">
|
|
<dict-tag :options="medication_frequency_type" :value="scope.row.frequencyType" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="服药时间" align="center" width="180">
|
|
<template #default="scope">
|
|
<div v-if="scope.row.timeSlots" class="time-slots-list">
|
|
<el-tag v-for="(time, idx) in parseTimeSlots(scope.row.timeSlots)" :key="idx" size="small" type="info" class="time-tag">
|
|
{{ time }}
|
|
</el-tag>
|
|
</div>
|
|
<span v-else>--</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="开始日期" align="center" prop="startDate" width="110">
|
|
<template #default="scope">
|
|
{{ formatDate(scope.row.startDate) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="结束日期" align="center" prop="endDate" width="110">
|
|
<template #default="scope">
|
|
{{ scope.row.endDate ? formatDate(scope.row.endDate) : '长期' }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="今日进度" align="center" width="100">
|
|
<template #default="scope">
|
|
<span v-if="scope.row.status === 1"> {{ scope.row.todayCompleted || 0 }}/{{ scope.row.todayTotal || 0 }} </span>
|
|
<span v-else>--</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="提醒" align="center" prop="remindEnabled" width="80">
|
|
<template #default="scope">
|
|
<el-tag v-if="scope.row.remindEnabled === 1" type="success">开</el-tag>
|
|
<el-tag v-else type="info">关</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="状态" align="center" prop="status" width="90">
|
|
<template #default="scope">
|
|
<dict-tag :options="medication_plan_status" :value="scope.row.status" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" class-name="small-padding">
|
|
<template v-slot="scope">
|
|
<div class="ctrl-btn d-flex">
|
|
<el-tooltip class="item" effect="dark" content="查看" placement="top">
|
|
<el-button icon="View" v-hasPermi="['health:medicationPlan:query']" circle @click="handleView(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip v-if="scope.row.status === 1" class="item" effect="dark" content="暂停" placement="top">
|
|
<el-button icon="VideoPause" v-hasPermi="['health:medicationPlan:edit']" circle @click="handlePause(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip v-if="scope.row.status === 2" class="item" effect="dark" content="恢复" placement="top">
|
|
<el-button icon="VideoPlay" v-hasPermi="['health:medicationPlan:edit']" circle @click="handleResume(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip v-if="scope.row.status !== 3" class="item" effect="dark" content="结束" placement="top">
|
|
<el-button icon="Finished" v-hasPermi="['health:medicationPlan:edit']" circle @click="handleEnd(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip class="item" effect="dark" content="修改" placement="top">
|
|
<el-button icon="Edit" v-hasPermi="['health:medicationPlan:edit']" circle @click="handleUpdate(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip class="item" effect="dark" content="删除" placement="top">
|
|
<el-button icon="Delete" v-hasPermi="['health:medicationPlan:remove']" circle @click="handleDelete(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<el-pagination
|
|
small
|
|
background
|
|
layout="total,sizes, prev, pager, next"
|
|
:total="total"
|
|
@size-change="handleSizeChange"
|
|
@current-change="handleCurrentChange"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<!-- 添加或修改用药计划对话框 -->
|
|
<el-dialog :title="title" v-model="open" width="900px" append-to-body>
|
|
<el-form ref="planRef" :model="form" :inline="true" :rules="rules" label-width="120px">
|
|
<el-form-item label="计划名称" prop="planName">
|
|
<el-input v-model="form.planName" placeholder="请输入计划名称(可选)" />
|
|
</el-form-item>
|
|
<el-form-item label="人员" prop="personId">
|
|
<el-select v-model="form.personId" placeholder="请选择人员" filterable @change="handlePersonChange">
|
|
<el-option v-for="item in personList" :key="item.id" :label="item.name" :value="item.id" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="慢性疾病" prop="chronicDiseaseId">
|
|
<el-select v-model="form.chronicDiseaseId" placeholder="请选择慢性疾病(可选)" filterable clearable>
|
|
<el-option v-for="item in chronicDiseaseList" :key="item.id" :label="item.diseaseName" :value="item.id" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="药品" prop="medicineId">
|
|
<el-select v-model="form.medicineId" placeholder="请选择药品" filterable @change="handleMedicineChange">
|
|
<el-option v-for="item in medicineList" :key="item.id" :label="item.shortName + '-' + item.brand" :value="item.id" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="每次剂量" prop="dosagePerTime">
|
|
<el-input-number v-model="form.dosagePerTime" :min="0" :precision="2" style="width: 150px" />
|
|
<el-select v-model="form.dosageUnit" placeholder="单位" style="width: 100px; margin-left: 10px">
|
|
<el-option v-for="dict in medical_unit" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="频次类型" prop="frequencyType">
|
|
<el-select v-model="form.frequencyType" placeholder="请选择频次类型">
|
|
<el-option label="每天" :value="1" />
|
|
<el-option label="每周" :value="2" />
|
|
<el-option label="隔天" :value="3" />
|
|
<el-option label="自定义" :value="4" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="服药时间点" prop="timeSlots" style="width: 100%">
|
|
<div class="time-slots-wrapper">
|
|
<div v-for="(time, index) in form.timePointList" :key="index" class="time-slot-item">
|
|
<span class="time-text">{{ time }}</span>
|
|
<el-icon class="close-icon" @click="removeTimePoint(index)"><Close /></el-icon>
|
|
</div>
|
|
<el-time-picker
|
|
v-model="newTimePoint"
|
|
placeholder="添加时间"
|
|
format="HH:mm"
|
|
value-format="HH:mm"
|
|
@change="addTimePoint"
|
|
style="width: 110px"
|
|
size="small"
|
|
/>
|
|
</div>
|
|
</el-form-item>
|
|
<el-form-item label="开始日期" prop="startDate">
|
|
<el-date-picker v-model="form.startDate" type="date" placeholder="选择开始日期" value-format="YYYY-MM-DD" />
|
|
</el-form-item>
|
|
<el-form-item label="结束日期" prop="endDate">
|
|
<el-date-picker v-model="form.endDate" type="date" placeholder="选择结束日期(可选)" value-format="YYYY-MM-DD" />
|
|
</el-form-item>
|
|
<el-form-item label="启用提醒" prop="remindEnabled">
|
|
<el-switch v-model="form.remindEnabled" :active-value="1" :inactive-value="0" />
|
|
</el-form-item>
|
|
<el-form-item v-if="form.remindEnabled === 1" label="提前提醒" prop="remindAdvanceMin">
|
|
<el-input-number v-model="form.remindAdvanceMin" :min="0" :max="60" />
|
|
<span style="margin-left: 10px">分钟</span>
|
|
</el-form-item>
|
|
<el-form-item label="通知家属" prop="notifyFamily">
|
|
<el-switch v-model="form.notifyFamily" :active-value="1" :inactive-value="0" />
|
|
</el-form-item>
|
|
<el-form-item v-if="form.notifyFamily === 1" label="家属成员" prop="familyMemberIds">
|
|
<el-select v-model="form.familyMemberIdList" multiple placeholder="请选择家属成员" filterable style="width: 300px">
|
|
<el-option v-for="item in personList" :key="item.id" :label="item.name" :value="item.id" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="备注" style="width: 100%">
|
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入备注" :rows="3" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<template v-if="title !== '查看用药计划'" #footer>
|
|
<div class="dialog-footer">
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup name="MedicationPlan">
|
|
import {
|
|
listMedicationPlan,
|
|
getMedicationPlan,
|
|
delMedicationPlan,
|
|
addMedicationPlan,
|
|
updateMedicationPlan,
|
|
pauseMedicationPlan,
|
|
resumeMedicationPlan,
|
|
endMedicationPlan
|
|
} from '@/api/health/medicationPlan'
|
|
import { listMedicineBasic } from '@/api/health/medicineBasic'
|
|
import { listPerson } from '@/api/health/person'
|
|
import { listChronicDiseaseByMember } from '@/api/health/chronicDisease'
|
|
import { Close } from '@element-plus/icons-vue'
|
|
|
|
const { proxy } = getCurrentInstance()
|
|
const route = useRoute()
|
|
const { medication_frequency_type, medication_plan_status, medical_unit } = proxy.useDict('medication_frequency_type', 'medication_plan_status', 'medical_unit')
|
|
|
|
const planList = ref([])
|
|
const personList = ref([])
|
|
const medicineList = ref([])
|
|
const chronicDiseaseList = ref([])
|
|
const open = ref(false)
|
|
const loading = ref(true)
|
|
const showSearch = ref(true)
|
|
const ids = ref([])
|
|
const single = ref(true)
|
|
const multiple = ref(true)
|
|
const total = ref(0)
|
|
const title = ref('')
|
|
const newTimePoint = ref(null)
|
|
|
|
const data = reactive({
|
|
form: {},
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
planName: null,
|
|
personId: null,
|
|
chronicDiseaseId: null,
|
|
frequencyType: null,
|
|
status: null,
|
|
keys: null,
|
|
keyword: null
|
|
},
|
|
rules: {
|
|
personId: [{ required: true, message: '请选择人员', trigger: 'change' }],
|
|
medicineId: [{ required: true, message: '请选择药品', trigger: 'change' }],
|
|
dosagePerTime: [{ required: true, message: '请输入剂量', trigger: 'blur' }],
|
|
startDate: [{ required: true, message: '请选择开始日期', trigger: 'change' }]
|
|
}
|
|
})
|
|
|
|
const { queryParams, form, rules } = toRefs(data)
|
|
|
|
/** 查询用药计划列表 */
|
|
function getList() {
|
|
loading.value = true
|
|
const params = { ...queryParams.value, keyword: queryParams.value.keys }
|
|
listMedicationPlan(params).then((response) => {
|
|
planList.value = response.rows
|
|
total.value = response.total
|
|
loading.value = false
|
|
})
|
|
}
|
|
|
|
/** 查询人员列表 */
|
|
function getPersonList() {
|
|
listPerson({ pageNum: 1, pageSize: 100 }).then((response) => {
|
|
personList.value = response.rows || []
|
|
})
|
|
}
|
|
|
|
/** 查询药品列表 */
|
|
function getMedicineList() {
|
|
listMedicineBasic({ pageNum: 1, pageSize: 1000 }).then((response) => {
|
|
medicineList.value = response.rows || []
|
|
})
|
|
}
|
|
|
|
// 取消按钮
|
|
function cancel() {
|
|
open.value = false
|
|
reset()
|
|
}
|
|
|
|
// 表单重置
|
|
function reset() {
|
|
form.value = {
|
|
id: null,
|
|
personId: null,
|
|
chronicDiseaseId: null,
|
|
medicineId: null,
|
|
planName: null,
|
|
medicineName: null,
|
|
specification: null,
|
|
dosagePerTime: 1,
|
|
dosageUnit: '片',
|
|
frequencyType: 1,
|
|
frequencyConfig: null,
|
|
timeSlots: null,
|
|
timePointList: ['08:00', '12:00', '18:00'],
|
|
startDate: null,
|
|
endDate: null,
|
|
remindEnabled: 0,
|
|
remindAdvanceMin: 15,
|
|
notifyFamily: 0,
|
|
familyMemberIds: null,
|
|
familyMemberIdList: [],
|
|
status: 1,
|
|
remark: null
|
|
}
|
|
chronicDiseaseList.value = []
|
|
proxy.resetForm('planRef')
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
function handleQuery() {
|
|
queryParams.value.pageNum = 1
|
|
getList()
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
function resetQuery() {
|
|
proxy.resetForm('queryRef')
|
|
queryParams.value.chronicDiseaseId = null
|
|
handleQuery()
|
|
}
|
|
|
|
// 分页
|
|
const handleCurrentChange = (val) => {
|
|
queryParams.value.pageNum = val
|
|
getList()
|
|
}
|
|
|
|
const handleSizeChange = (val) => {
|
|
queryParams.value.pageSize = val
|
|
getList()
|
|
}
|
|
|
|
// 序号翻页递增
|
|
const indexMethod = (index) => {
|
|
const nowPage = queryParams.value.pageNum
|
|
const nowLimit = queryParams.value.pageSize
|
|
return index + 1 + (nowPage - 1) * nowLimit
|
|
}
|
|
|
|
// 多选框选中数据
|
|
function handleSelectionChange(selection) {
|
|
ids.value = selection.map((item) => item.id)
|
|
single.value = selection.length !== 1
|
|
multiple.value = !selection.length
|
|
}
|
|
|
|
// 格式化日期
|
|
function formatDate(date) {
|
|
if (!date) return ''
|
|
// 处理数组格式 [2026, 3, 21]
|
|
if (Array.isArray(date)) {
|
|
return `${date[0]}-${String(date[1]).padStart(2, '0')}-${String(date[2]).padStart(2, '0')}`
|
|
}
|
|
// 处理字符串格式
|
|
if (typeof date === 'string') {
|
|
return date.substring(0, 10)
|
|
}
|
|
return ''
|
|
}
|
|
|
|
// 解析服药时间点 JSON
|
|
function parseTimeSlots(timeSlots) {
|
|
if (!timeSlots) return []
|
|
try {
|
|
return typeof timeSlots === 'string' ? JSON.parse(timeSlots) : timeSlots
|
|
} catch (e) {
|
|
return []
|
|
}
|
|
}
|
|
|
|
// 将数组日期转换为字符串日期
|
|
function convertArrayDateToString(dateArray) {
|
|
if (!dateArray) return null
|
|
if (Array.isArray(dateArray)) {
|
|
return `${dateArray[0]}-${String(dateArray[1]).padStart(2, '0')}-${String(dateArray[2]).padStart(2, '0')}`
|
|
}
|
|
if (typeof dateArray === 'string') {
|
|
return dateArray.substring(0, 10)
|
|
}
|
|
return null
|
|
}
|
|
|
|
// 查看
|
|
const handleView = (row) => {
|
|
getMedicationPlan(row.id).then((response) => {
|
|
form.value = response.data
|
|
// 转换日期格式
|
|
form.value.startDate = convertArrayDateToString(form.value.startDate)
|
|
form.value.endDate = convertArrayDateToString(form.value.endDate)
|
|
// 解析 timeSlots JSON
|
|
if (form.value.timeSlots) {
|
|
try {
|
|
form.value.timePointList = typeof form.value.timeSlots === 'string' ? JSON.parse(form.value.timeSlots) : form.value.timeSlots
|
|
} catch (e) {
|
|
form.value.timePointList = []
|
|
}
|
|
} else {
|
|
form.value.timePointList = []
|
|
}
|
|
// 解析 familyMemberIds JSON
|
|
if (form.value.familyMemberIds) {
|
|
try {
|
|
form.value.familyMemberIdList = typeof form.value.familyMemberIds === 'string' ? JSON.parse(form.value.familyMemberIds) : form.value.familyMemberIds
|
|
} catch (e) {
|
|
form.value.familyMemberIdList = []
|
|
}
|
|
} else {
|
|
form.value.familyMemberIdList = []
|
|
}
|
|
title.value = '查看用药计划'
|
|
open.value = true
|
|
// 加载该人员的慢性疾病列表
|
|
if (form.value.personId) {
|
|
listChronicDiseaseByMember(form.value.personId).then((res) => {
|
|
chronicDiseaseList.value = res.data || []
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
/** 新增按钮操作 */
|
|
function handleAdd() {
|
|
reset()
|
|
open.value = true
|
|
title.value = '添加用药计划'
|
|
}
|
|
|
|
function handleAddFromChronicDisease() {
|
|
const personId = route.query.personId ? Number(route.query.personId) : null
|
|
const chronicDiseaseId = route.query.chronicDiseaseId ? Number(route.query.chronicDiseaseId) : null
|
|
if (!personId || !chronicDiseaseId) {
|
|
return
|
|
}
|
|
reset()
|
|
form.value.personId = personId
|
|
form.value.chronicDiseaseId = chronicDiseaseId
|
|
form.value.planName = route.query.diseaseName ? `${route.query.diseaseName}用药计划` : null
|
|
queryParams.value.personId = personId
|
|
queryParams.value.chronicDiseaseId = chronicDiseaseId
|
|
listChronicDiseaseByMember(personId).then((res) => {
|
|
chronicDiseaseList.value = res.data || []
|
|
})
|
|
open.value = true
|
|
title.value = '添加用药计划'
|
|
getList()
|
|
}
|
|
|
|
/** 修改按钮操作 */
|
|
function handleUpdate(row) {
|
|
reset()
|
|
const _id = row.id || ids.value
|
|
getMedicationPlan(_id).then((response) => {
|
|
form.value = response.data
|
|
// 转换日期格式
|
|
form.value.startDate = convertArrayDateToString(form.value.startDate)
|
|
form.value.endDate = convertArrayDateToString(form.value.endDate)
|
|
// 解析 timeSlots JSON
|
|
if (form.value.timeSlots) {
|
|
try {
|
|
form.value.timePointList = typeof form.value.timeSlots === 'string' ? JSON.parse(form.value.timeSlots) : form.value.timeSlots
|
|
} catch (e) {
|
|
form.value.timePointList = []
|
|
}
|
|
} else {
|
|
form.value.timePointList = []
|
|
}
|
|
// 解析 familyMemberIds JSON
|
|
if (form.value.familyMemberIds) {
|
|
try {
|
|
form.value.familyMemberIdList = typeof form.value.familyMemberIds === 'string' ? JSON.parse(form.value.familyMemberIds) : form.value.familyMemberIds
|
|
} catch (e) {
|
|
form.value.familyMemberIdList = []
|
|
}
|
|
} else {
|
|
form.value.familyMemberIdList = []
|
|
}
|
|
open.value = true
|
|
title.value = '修改用药计划'
|
|
// 加载该人员的慢性疾病列表
|
|
if (form.value.personId) {
|
|
listChronicDiseaseByMember(form.value.personId).then((res) => {
|
|
chronicDiseaseList.value = res.data || []
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
/** 暂停按钮操作 */
|
|
function handlePause(row) {
|
|
proxy.$modal
|
|
.confirm('确认暂停该用药计划?')
|
|
.then(() => {
|
|
return pauseMedicationPlan(row.id)
|
|
})
|
|
.then((response) => {
|
|
getList()
|
|
proxy.$modal.msgSuccess('暂停成功')
|
|
})
|
|
.catch(() => {})
|
|
}
|
|
|
|
/** 恢复按钮操作 */
|
|
function handleResume(row) {
|
|
resumeMedicationPlan(row.id).then(() => {
|
|
getList()
|
|
proxy.$modal.msgSuccess('恢复成功')
|
|
})
|
|
}
|
|
|
|
/** 结束按钮操作 */
|
|
function handleEnd(row) {
|
|
proxy.$modal
|
|
.confirm('确认结束该用药计划?结束后将不再生成用药记录。')
|
|
.then(() => {
|
|
return endMedicationPlan(row.id)
|
|
})
|
|
.then(() => {
|
|
getList()
|
|
proxy.$modal.msgSuccess('已结束')
|
|
})
|
|
.catch(() => {})
|
|
}
|
|
|
|
/** 提交按钮 */
|
|
function submitForm() {
|
|
proxy.$refs.planRef.validate((valid) => {
|
|
if (valid) {
|
|
// 构建提交数据,排除后端自动生成的字段
|
|
const submitData = { ...form.value }
|
|
// 将时间点列表转为 JSON 字符串
|
|
submitData.timeSlots = JSON.stringify(form.value.timePointList)
|
|
// 将家属成员ID列表转为 JSON 字符串
|
|
if (form.value.familyMemberIdList && form.value.familyMemberIdList.length > 0) {
|
|
submitData.familyMemberIds = JSON.stringify(form.value.familyMemberIdList)
|
|
} else {
|
|
submitData.familyMemberIds = null
|
|
}
|
|
// 根据药品ID获取药品名称和规格
|
|
const medicine = medicineList.value.find((m) => m.id === submitData.medicineId)
|
|
if (medicine) {
|
|
submitData.medicineName = medicine.shortName + '-' + medicine.brand
|
|
submitData.specification = medicine.specification || ''
|
|
}
|
|
// 移除后端自动管理的字段
|
|
delete submitData.createTime
|
|
delete submitData.updateTime
|
|
delete submitData.familyMemberIdList
|
|
if (submitData.id != null) {
|
|
updateMedicationPlan(submitData).then((response) => {
|
|
proxy.$modal.msgSuccess('修改成功')
|
|
open.value = false
|
|
getList()
|
|
})
|
|
} else {
|
|
addMedicationPlan(submitData).then((response) => {
|
|
proxy.$modal.msgSuccess('新增成功')
|
|
open.value = false
|
|
getList()
|
|
})
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
function handleDelete(row) {
|
|
const _ids = row.id || ids.value
|
|
proxy.$modal
|
|
.confirm('是否确认删除选中的数据项?')
|
|
.then(function () {
|
|
return delMedicationPlan(_ids)
|
|
})
|
|
.then(() => {
|
|
getList()
|
|
proxy.$modal.msgSuccess('删除成功')
|
|
})
|
|
.catch(() => {})
|
|
}
|
|
|
|
/** 添加服药时间点 */
|
|
function addTimePoint(val) {
|
|
if (val && !form.value.timePointList.includes(val)) {
|
|
form.value.timePointList.push(val)
|
|
}
|
|
newTimePoint.value = null
|
|
}
|
|
|
|
/** 移除服药时间点 */
|
|
function removeTimePoint(index) {
|
|
form.value.timePointList.splice(index, 1)
|
|
}
|
|
|
|
/** 药品选择变化 */
|
|
function handleMedicineChange(medicineId) {
|
|
const medicine = medicineList.value.find((m) => m.id === medicineId)
|
|
if (medicine) {
|
|
form.value.dosageUnit = medicine.unit || '片'
|
|
}
|
|
}
|
|
|
|
/** 人员选择变化 */
|
|
function handlePersonChange(personId) {
|
|
form.value.chronicDiseaseId = null
|
|
chronicDiseaseList.value = []
|
|
if (personId) {
|
|
listChronicDiseaseByMember(personId).then((response) => {
|
|
chronicDiseaseList.value = response.data || []
|
|
})
|
|
}
|
|
}
|
|
|
|
getPersonList()
|
|
getMedicineList()
|
|
getList()
|
|
handleAddFromChronicDisease()
|
|
</script>
|
|
|
|
<style scoped>
|
|
.time-slots-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 12px;
|
|
background: #fafbfc;
|
|
border: 1px solid #e4e7ed;
|
|
border-radius: 6px;
|
|
min-height: 44px;
|
|
}
|
|
|
|
.time-slot-item {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 4px 10px;
|
|
background: #fff;
|
|
border: 1px solid #dcdfe6;
|
|
border-radius: 4px;
|
|
color: #606266;
|
|
font-size: 13px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.time-slot-item:hover {
|
|
border-color: #409eff;
|
|
color: #409eff;
|
|
}
|
|
|
|
.time-text {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.close-icon {
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
color: #c0c4cc;
|
|
transition: all 0.2s;
|
|
margin-left: 2px;
|
|
}
|
|
|
|
.close-icon:hover {
|
|
color: #f56c6c;
|
|
}
|
|
|
|
.time-slots-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.time-tag {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
</style>
|