fix: 新增档案过程记录功能。
This commit is contained in:
44
src/api/health/processRecord.js
Normal file
44
src/api/health/processRecord.js
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询档案过程记录列表
|
||||||
|
export function listProcessRecord(query) {
|
||||||
|
return request({
|
||||||
|
url: '/health/processRecord/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询档案过程记录详细
|
||||||
|
export function getProcessRecord(id) {
|
||||||
|
return request({
|
||||||
|
url: '/health/processRecord/' + id,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增档案过程记录
|
||||||
|
export function addProcessRecord(data) {
|
||||||
|
return request({
|
||||||
|
url: '/health/processRecord',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改档案过程记录
|
||||||
|
export function updateProcessRecord(data) {
|
||||||
|
return request({
|
||||||
|
url: '/health/processRecord',
|
||||||
|
method: 'put',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除档案过程记录
|
||||||
|
export function delProcessRecord(id) {
|
||||||
|
return request({
|
||||||
|
url: '/health/processRecord/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
||||||
350
src/views/health/processRecord/index.vue
Normal file
350
src/views/health/processRecord/index.vue
Normal file
@@ -0,0 +1,350 @@
|
|||||||
|
<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="personId">
|
||||||
|
<el-select v-model="queryParams.personId" placeholder="请选择人员姓名" clearable>
|
||||||
|
<el-option v-for="person in personList" :key="person.id" :label="person.name" :value="person.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="记录时间" prop="time">
|
||||||
|
<el-date-picker v-model="queryParams.time" type="daterange" range-separator="至" start-placeholder="开始时间" end-placeholder="结束时间" />
|
||||||
|
</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:processRecord:add']">新增</el-button>
|
||||||
|
<el-button :disabled="multiple" icon="Delete" @click="handleDelete" v-hasPermi="['health:processRecord:remove']">删除</el-button>
|
||||||
|
<el-button @click="handleExport" icon="Download" v-hasPermi="['health:processRecord:export']">导出</el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-con" v-loading="loading" height="calc(100% - 0.65rem)">
|
||||||
|
<el-table v-loading="loading" :data="processRecordList" @selection-change="handleSelectionChange" height="calc(100% - 0.65rem)">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="人员姓名" width="150" align="center" prop="personName" />
|
||||||
|
<el-table-column label="健康档案" width="180" align="center" prop="healthRecordName" />
|
||||||
|
<el-table-column label="记录时间" align="center" prop="recordingTime" width="180"> </el-table-column>
|
||||||
|
<el-table-column label="记录内容" align="center" prop="content"> </el-table-column>
|
||||||
|
<el-table-column label="操作" width="200" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<div class="ctrl-btn d-flex">
|
||||||
|
<el-tooltip v-for="item in operateList" :key="item.id" class="item" effect="dark" :content="item.title" placement="top">
|
||||||
|
<el-button :icon="item.icon" :v-hasPermi="item.hasPermi" circle @click="handleOperate(item.id, scope.row)"></el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-pagination small background layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 添加或修改档案过程记录对话框 -->
|
||||||
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
||||||
|
<el-form ref="processRecordRef" :model="form" :rules="rules" label-width="120px">
|
||||||
|
<el-form-item label="人员姓名" prop="personId">
|
||||||
|
<el-select v-model="form.personId" placeholder="请选择人员姓名" @change="handlePersonChange" clearable>
|
||||||
|
<el-option v-for="person in personList" :key="person.id" :label="person.name" :value="person.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="健康档案" prop="healthRecordId">
|
||||||
|
<el-select v-model="form.healthRecordId" placeholder="请选择健康档案" clearable>
|
||||||
|
<el-option v-for="health in healthRecordList" :key="health.id" :label="health.name" :value="health.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="记录时间" prop="recordingTime">
|
||||||
|
<el-date-picker clearable v-model="form.recordingTime" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择记录时间">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="记录内容" prop="content">
|
||||||
|
<el-input v-model="form.content" type="textarea" placeholder="请输入记录内容" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入备注" />
|
||||||
|
</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="ProcessRecord">
|
||||||
|
import { listProcessRecord, getProcessRecord, delProcessRecord, addProcessRecord, updateProcessRecord } from '@/api/health/processRecord'
|
||||||
|
import { listPerson, getPerson } from '@/api/health/person'
|
||||||
|
import { listHealthRecord } from '@/api/health/healthRecord'
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
// eslint-disable-next-line no-unused-vars
|
||||||
|
import { require } from '@/utils/require'
|
||||||
|
const { proxy } = getCurrentInstance()
|
||||||
|
|
||||||
|
const processRecordList = 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 personList = ref([])
|
||||||
|
const healthRecordList = ref([])
|
||||||
|
const operateList = ref([
|
||||||
|
{ id: 'view', icon: 'View', title: '查看', hasPermi: ['health:processRecord:query'] },
|
||||||
|
{ id: 'edit', icon: 'Edit', title: '修改', hasPermi: ['health:processRecord:edit'] },
|
||||||
|
{ id: 'copy', icon: 'Link', title: '复制', hasPermi: ['health:marRecord:edit'] },
|
||||||
|
{ id: 'delete', icon: 'Delete', title: '删除', hasPermi: ['health:processRecord:remove'] }
|
||||||
|
])
|
||||||
|
const data = reactive({
|
||||||
|
form: {},
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
healthRecordId: null,
|
||||||
|
time: '',
|
||||||
|
content: null,
|
||||||
|
personId: null
|
||||||
|
},
|
||||||
|
queryPersonParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 1000
|
||||||
|
},
|
||||||
|
queryHealthRecordParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
personId: null,
|
||||||
|
state: '1',
|
||||||
|
pageSize: 1000
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
personId: [{ required: true, message: '人员姓名不能为空', trigger: 'blur' }],
|
||||||
|
recordingTime: [{ required: true, message: '记录时间不能为空', trigger: 'blur' }],
|
||||||
|
content: [{ required: true, message: '记录内容不能为空', trigger: 'blur' }]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const handleOperate = (operate, row) => {
|
||||||
|
switch (operate) {
|
||||||
|
case 'view':
|
||||||
|
handleView(row)
|
||||||
|
break
|
||||||
|
case 'edit':
|
||||||
|
handleUpdate(row)
|
||||||
|
break
|
||||||
|
case 'delete':
|
||||||
|
handleDelete(row)
|
||||||
|
break
|
||||||
|
case 'copy':
|
||||||
|
handleCopy(row)
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const { queryParams, form, rules, queryPersonParams, queryHealthRecordParams } = toRefs(data)
|
||||||
|
|
||||||
|
const handlePersonChange = (personId) => {
|
||||||
|
queryHealthRecordParams.personId = personId
|
||||||
|
listHealthRecord(queryHealthRecordParams).then((response) => {
|
||||||
|
healthRecordList.value = response.rows
|
||||||
|
if (response.rows.length > 0) {
|
||||||
|
form.value.healthRecordId = healthRecordList.value[0].id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 查询成员管理列表 */
|
||||||
|
function getPersonList() {
|
||||||
|
listPerson(queryPersonParams.value).then((response) => {
|
||||||
|
personList.value = response.rows
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 复制按钮操作 */
|
||||||
|
function handleCopy(row) {
|
||||||
|
reset()
|
||||||
|
queryHealthRecordParams.personId = row.personId
|
||||||
|
listHealthRecord(queryHealthRecordParams).then((response) => {
|
||||||
|
healthRecordList.value = response.rows
|
||||||
|
})
|
||||||
|
const _id = row.id || ids.value
|
||||||
|
getProcessRecord(_id).then((response) => {
|
||||||
|
form.value = response.data
|
||||||
|
form.value.id = null
|
||||||
|
open.value = true
|
||||||
|
title.value = '复制档案过程记录'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 查询档案过程记录列表 */
|
||||||
|
function getList() {
|
||||||
|
loading.value = true
|
||||||
|
const timeRange = queryParams.value.time
|
||||||
|
let st = ''
|
||||||
|
let et = ''
|
||||||
|
if (timeRange && timeRange.length === 2) {
|
||||||
|
st = dayjs(timeRange[0]).format('YYYY-MM-DD')
|
||||||
|
et = dayjs(timeRange[1]).format('YYYY-MM-DD')
|
||||||
|
}
|
||||||
|
queryParams.value.startTime = st
|
||||||
|
queryParams.value.endTime = et
|
||||||
|
listProcessRecord(queryParams.value).then((response) => {
|
||||||
|
processRecordList.value = response.rows
|
||||||
|
total.value = response.total
|
||||||
|
loading.value = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 取消按钮
|
||||||
|
function cancel() {
|
||||||
|
open.value = false
|
||||||
|
reset()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 表单重置
|
||||||
|
function reset() {
|
||||||
|
form.value = {
|
||||||
|
id: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null,
|
||||||
|
delFlag: null,
|
||||||
|
remark: null,
|
||||||
|
healthRecordId: null,
|
||||||
|
recordingTime: null,
|
||||||
|
content: null,
|
||||||
|
personId: null
|
||||||
|
}
|
||||||
|
proxy.resetForm('processRecordRef')
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
function handleQuery() {
|
||||||
|
queryParams.value.pageNum = 1
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
function resetQuery() {
|
||||||
|
proxy.resetForm('queryRef')
|
||||||
|
handleQuery()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 分页
|
||||||
|
const handleCurrentChange = (val) => {
|
||||||
|
queryParams.value.pageNum = val
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 多选框选中数据
|
||||||
|
function handleSelectionChange(selection) {
|
||||||
|
ids.value = selection.map((item) => item.id)
|
||||||
|
single.value = selection.length !== 1
|
||||||
|
multiple.value = !selection.length
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查看
|
||||||
|
const handleView = (row) => {
|
||||||
|
title.value = '查看档案过程记录'
|
||||||
|
queryHealthRecordParams.personId = row.personId
|
||||||
|
listHealthRecord(queryHealthRecordParams).then((response) => {
|
||||||
|
healthRecordList.value = response.rows
|
||||||
|
})
|
||||||
|
form.value = row
|
||||||
|
open.value = true
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
function handleAdd() {
|
||||||
|
reset()
|
||||||
|
if (personList.value.length > 0) {
|
||||||
|
form.value.personId = personList.value[0].id
|
||||||
|
queryHealthRecordParams.personId = personList.value[0].id
|
||||||
|
listHealthRecord(queryHealthRecordParams).then((response) => {
|
||||||
|
healthRecordList.value = response.rows
|
||||||
|
if (response.rows.length > 0) {
|
||||||
|
form.value.healthRecordId = healthRecordList.value[0].id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
open.value = true
|
||||||
|
title.value = '添加档案过程记录'
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
function handleUpdate(row) {
|
||||||
|
reset()
|
||||||
|
queryHealthRecordParams.personId = row.personId
|
||||||
|
listHealthRecord(queryHealthRecordParams).then((response) => {
|
||||||
|
healthRecordList.value = response.rows
|
||||||
|
})
|
||||||
|
const _id = row.id || ids.value
|
||||||
|
getProcessRecord(_id).then((response) => {
|
||||||
|
form.value = response.data
|
||||||
|
open.value = true
|
||||||
|
title.value = '修改档案过程记录'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 提交按钮 */
|
||||||
|
function submitForm() {
|
||||||
|
proxy.$refs.processRecordRef.validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
|
if (form.value.id != null) {
|
||||||
|
updateProcessRecord(form.value).then((response) => {
|
||||||
|
proxy.$modal.msgSuccess('修改成功')
|
||||||
|
open.value = false
|
||||||
|
getList()
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
addProcessRecord(form.value).then((response) => {
|
||||||
|
proxy.$modal.msgSuccess('新增成功')
|
||||||
|
open.value = false
|
||||||
|
getList()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
function handleDelete(row) {
|
||||||
|
const _ids = row.id || ids.value
|
||||||
|
proxy.$modal
|
||||||
|
.confirm('是否确认删除选中的数据项?')
|
||||||
|
.then(function () {
|
||||||
|
return delProcessRecord(_ids)
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
getList()
|
||||||
|
proxy.$modal.msgSuccess('删除成功')
|
||||||
|
})
|
||||||
|
.catch(() => {})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
function handleExport() {
|
||||||
|
proxy.download(
|
||||||
|
'health/processRecord/export',
|
||||||
|
{
|
||||||
|
...queryParams.value
|
||||||
|
},
|
||||||
|
`processRecord_${new Date().getTime()}.xlsx`
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
getList()
|
||||||
|
getPersonList()
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user