Files
intc-vue-h5/src/pages/health/marRecord/addEdit.vue
2024-12-22 17:49:23 +08:00

505 lines
17 KiB
Vue

<template>
<view class="container" style="paddingBottom:1rpx;">
<u-navbar
leftIconSize="40rpx"
leftIconColor="#333333"
title="用药记录"
>
</u-navbar>
<view class="section">
<view class="section-title">{{ title}}</view>
<view class="form-view">
<u--form labelPosition="left" :model="form" :rules="rules" ref="uForm" label-width="auto"
:labelStyle="{ color: '#333333', fontSize: '30rpx' }">
<u-form-item label="人员姓名" prop="personName" required @click="handlePerson">
<u--input v-model="form.personName" disabled disabledColor="#ffffff" placeholder="请选择人员"
inputAlign="right" border="none"></u--input>
<u-icon slot="right" name="arrow-down"></u-icon>
</u-form-item>
<u-form-item label="健康档案" prop="healthRecordName" required @click="handHealthRecord">
<u--input v-model="form.healthRecordName" disabled disabledColor="#ffffff" placeholder="请选择健康档案"
inputAlign="right" border="none"></u--input>
<u-icon slot="right" name="arrow-down"></u-icon>
</u-form-item>
<u-form-item label="用药类型" prop="marTypeName" required @click="handleMarType">
<u--input v-model="form.marTypeName" disabled disabledColor="#ffffff" placeholder="请选择用药类型"
inputAlign="right" border="none"></u--input>
<u-icon slot="right" name="arrow-down"></u-icon>
</u-form-item>
<u-form-item label="药品名称" prop="medicalName" required @click="handleMedical">
<u--input v-model="form.medicalName" disabled disabledColor="#ffffff" placeholder="请选择药品名称"
inputAlign="right" border="none"></u--input>
<u-icon slot="right" name="arrow-down"></u-icon>
</u-form-item>
<u-form-item label="药品来源" prop="resourceName" required @click="handleResource">
<u--input v-model="form.resourceName" disabled disabledColor="#ffffff" placeholder="请选择药品来源"
inputAlign="right" border="none"></u--input>
<u-icon slot="right" name="arrow-down"></u-icon>
</u-form-item>
<u-form-item label="用药地点" prop="placeName" required @click="handlePlace">
<u--input v-model="form.placeName" disabled disabledColor="#ffffff" placeholder="请选择用药地点"
inputAlign="right" border="none"></u--input>
<u-icon slot="right" name="arrow-down"></u-icon>
</u-form-item>
<u-form-item label="用药时间" prop="dosingTime" required @click="selectDate()">
<u--input v-model="form.dosingTime" disabled disabledColor="#ffffff" placeholder="请选择用药时间" inputAlign="right" border="none"></u--input>
<u-icon slot="right" name="arrow-right"></u-icon>
</u-form-item>
<u-form-item label="用药剂量" prop="dosage" required >
<u--input v-model="form.dosage" placeholder="请填写用药剂量"
inputAlign="right" border="none"></u--input>
</u-form-item>
<u-form-item label="用药单位" prop="unitName" required @click="handleUnit">
<u--input v-model="form.unitName" disabled disabledColor="#ffffff" placeholder="请选择用药单位"
inputAlign="right" border="none"></u--input>
<u-icon slot="right" name="arrow-down"></u-icon>
</u-form-item>
<u-form-item label="备注" prop="remark" labelPosition="top">
<u--textarea v-model="form.remark" placeholder="请填写备注" border="none" autoHeight inputAlign="right" count
maxlength="2000" style="padding:18rpx 0;"></u--textarea>
</u-form-item>
</u--form>
<view class="form-btn">
<u-button type="primary" text="提交" @click="submit"></u-button>
</view>
</view>
</view>
<u-toast ref="uToast"></u-toast>
<u-picker itemHeight="88" :show="showPerson" :columns="personList" keyName="name" @cancel="handlePersonCancel"
@confirm="handlePersonConfirm"></u-picker>
<u-picker itemHeight="88" :show="showResource" :columns="resourceList" keyName="dictLabel" @cancel="handleResourceCancel"
@confirm="handleResourceConfirm"></u-picker>
<u-picker itemHeight="88" :show="showPlace" :columns="placeList" keyName="dictLabel" @cancel="handlePlaceCancel"
@confirm="handlePlaceConfirm"></u-picker>
<u-picker itemHeight="88" :show="showMarType" :columns="marTypeList" keyName="dictLabel" @cancel="handleMarTypeCancel"
@confirm="handleMarTypeConfirm"></u-picker>
<u-picker itemHeight="88" :show="showHealthRecord" :columns="healthRecordList" keyName="name" @cancel="handHealthRecordCancel"
@confirm="handHealthRecordConfirm"></u-picker>
<u-picker itemHeight="88" :show="showMedical" :columns="medicalList" keyName="shortNameBrandPackaging" @cancel="handleMedicalCancel"
@confirm="handleMedicalConfirm"></u-picker>
<u-picker itemHeight="88" :show="showUnit" :columns="unitList" keyName="dictLabel" @cancel="handleUnitCancel"
@confirm="handleUnitConfirm"></u-picker>
<u-datetime-picker
:show="datePickShow"
mode="datetime"
ref="dosingTimeRef"
@cancel="datePickShow=false"
@confirm="datePickConfirm"
itemHeight="88"
></u-datetime-picker>
</view>
</template>
<script setup>
import { getMarRecord, addMarRecord, updateMarRecord } from '@/api/health/marRecord'
import { listPerson, getPerson } from '@/api/health/person'
import { listHealthRecord } from '@/api/health/healthRecord'
import { listMedicineBasic, getMedicineBasic } from '@/api/health/medicineBasic'
const { proxy } = getCurrentInstance()
import { getDicts } from '@/api/system/dict/data.js'
import dayjs from 'dayjs'
import {onLoad,onReady} from "@dcloudio/uni-app";
// 计算属性与监听属性是在vue中而非uniap中 需要注意!!!
import {reactive ,toRefs,ref,computed ,getCurrentInstance }from "vue";
const datePickShow = ref(false)
const showPerson = ref(false)
const flag = ref('add')
const showHealthRecord = ref(false)
const title = ref("用药记录")
const healthRecordList = ref([])
const personList = ref([])
const medicalList = ref([])
const showMedical = ref(false)
const marTypeList = ref([])
const showMarType = ref(false)
const resourceList = ref([])
const showResource = ref(false)
const placeList = ref([])
const showPlace = ref(false)
const unitList = ref([])
const showUnit = ref(false)
const data = reactive({
form: {
id: null,
name: null,
type: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
delFlag: null,
remark: null,
healthRecordId: null,
dosingTime: null,
dosage: null,
personId: null,
resource: '1',
place: '1',
resourceName: '医院开药',
placeName: '家中'
},
queryPersonParams: {
pageNum: 1,
status: '1',
pageSize: 1000
},
queryHealthRecordParams: {
pageNum: 1,
personId:null,
pageSize: 1000
},
queryMedicineParams: {
pageNum: 1,
treatmentType: null,
pageSize: 1000
},
rules: {
healthRecordName: [{ required: true, message: '健康档案不能为空', trigger:['change', 'blur'] }],
personName: [{ required: true, message: '人员不能为空', trigger: ['change', 'blur'] }],
medicalName: [{ required: true, message: '药品名称不能为空', trigger: ['change', 'blur'] }],
marTypeName: [{ required: true, message: '用药类型不能为空', trigger: ['change', 'blur'] }],
resource: [{ required: true, message: '药品来源不能为空', trigger: ['change', 'blur'] }],
place: [{ required: true, message: '用药地点不能为空', trigger: ['change', 'blur'] }],
dosage: [{ type: 'number', required: true, message: '用药剂量不能为空', trigger: ['change', 'blur'] }],
dosingTime: [{ required: true, message: '用药时间不能为空', trigger: ['change', 'blur'] }]
}
})
const { form, queryPersonParams, queryHealthRecordParams,queryMedicineParams, rules} = toRefs(data)
onLoad((option) => {
form.value.id = option.id
flag.value = option.flag
if(flag.value==null){
if(form.value.id!=null){
title.value="用药记录-修改"
}else{
title.value="用药记录-新增"
}
}else{
title.value="用药记录-复制"
}
getData()
})
onReady(() => {
form.value.dosingTime = dayjs(new Date().getTime()).format("YYYY-MM-DD HH:mm:ss")
})
function dictStr(val, arr) {
let str = ''
arr.map(item => {
if (item.dictValue === val) {
str = item.dictLabel
}
})
return str
}
function getData() {
listMedicineBasic(queryMedicineParams.value).then((response) => {
medicalList.value = [response.rows]
})
// 药品来源
if(form.value.id!=null){
getMarRecord(form.value.id).then(res => {
listPerson(queryPersonParams.value).then((response) => {
personList.value = [response.rows]
if(response.rows.length>0){
form.value.personName= response.rows[0].name
form.value.personId = response.rows[0].id
queryHealthRecordParams.value.personId=res.data.personId
listHealthRecord(queryHealthRecordParams.value).then((response) => {
healthRecordList.value = [response.rows]
if(response.rows.length>0){
form.value.healthRecordName= response.rows[0].name
form.value.healthRecordId = response.rows[0].id
}
})
}
})
form.value = res.data
form.value.medicalName=form.value.name
getDicts('mar_place').then(result => {
form.value.placeName=dictStr(form.value.place, result.data)
})
// 药品来源
getDicts('mar_resource').then(result => {
form.value.resourceName=dictStr(form.value.resource, result.data)
})
// 药品来源
getDicts('medical_unit').then(result => {
form.value.unitName=dictStr(form.value.unit, result.data)
})
// 用药类型
getDicts('mar_type').then(result => {
form.value.marTypeName=dictStr(form.value.type, result.data)
})
})
}else{
listPerson(queryPersonParams.value).then((response) => {
personList.value = [response.rows]
if(response.rows.length>0){
form.value.personName= response.rows[0].name
form.value.personId = response.rows[0].id
queryHealthRecordParams.value.personId=response.rows[0].id
listHealthRecord(queryHealthRecordParams.value).then((response) => {
healthRecordList.value = [response.rows]
if(response.rows.length>0){
form.value.healthRecordName= response.rows[0].name
form.value.healthRecordId = response.rows[0].id
}
})
}
})
// 类型
getDicts('mar_type').then(res => {
marTypeList.value =[res.data]
})
// 类型
getDicts('medical_unit').then(res => {
unitList.value =[res.data]
})
// 类型
getDicts('mar_resource').then(res => {
resourceList.value =[res.data]
})
// 子类型
getDicts('mar_place').then(res => {
placeList.value =[res.data]
})
}
}
function handlePerson() {
if (personList.value[0].length === 0) {
proxy.$refs['uToast'].show({
message: '人员为空 ', type: 'warning'
})
} else {
showPerson.value = true
}
}
function handlePersonConfirm(e) {
form.value.personName = e.value[0].name
form.value.personId = e.value[0].id
form.value.healthRecordName = ''
form.value.healthRecordId = ''
queryHealthRecordParams.value.personId=e.value[0].id
listHealthRecord(queryHealthRecordParams.value).then((response) => {
healthRecordList.value = [response.rows]
if(response.rows.length>0){
form.value.healthRecordName= response.rows[0].name
form.value.healthRecordId = response.rows[0].id
}
showPerson.value = false
})
}
function handlePersonCancel() {
showPerson.value = false
}
function handleMedical() {
if (medicalList.value[0].length === 0) {
proxy.$refs['uToast'].show({
message: '药品为空 ', type: 'warning'
})
} else {
showMedical.value = true
}
}
function handleMedicalConfirm(e) {
form.value.medicalName = e.value[0].shortNameBrandPackaging
form.value.name = e.value[0].shortNameBrandPackaging
form.value.medicineId = e.value[0].id
getMedicineBasic(e.value[0].id).then((response) => {
form.value.unit = response.data.unit
// 药品来源
getDicts('medical_unit').then(result => {
form.value.unitName=dictStr( response.data.unit, result.data)
})
form.value.contentUnit = response.data.contentUnit
})
showMedical.value = false
}
function handleMedicalCancel() {
showMedical.value = false
}
function handHealthRecord() {
if (healthRecordList.value[0].length === 0) {
proxy.$refs['uToast'].show({
message: '健康档案为空 ', type: 'warning'
})
} else {
showHealthRecord.value = true
}
}
function handHealthRecordConfirm(e) {
form.value.healthRecordName = e.value[0].name
form.value.healthRecordId = e.value[0].id
showHealthRecord.value = false
}
function handHealthRecordCancel() {
showHealthRecord.value = false
}
function handleResource() {
if (resourceList.value[0].length === 0) {
proxy.$refs['uToast'].show({
message: '药品来源为空 ', type: 'warning'
})
} else {
showResource.value = true
}
}
function handleResourceConfirm(e) {
form.value.resourceName = e.value[0].dictLabel
form.value.resource = e.value[0].dictValue
showResource.value = false
}
function handleResourceCancel() {
showResource.value = false
}
function handleUnit() {
if (unitList.value[0].length === 0) {
proxy.$refs['uToast'].show({
message: '用药单位为空 ', type: 'warning'
})
} else {
showUnit.value = true
}
}
function handleUnitConfirm(e) {
form.value.unitName = e.value[0].dictLabel
form.value.unit = e.value[0].dictValue
showUnit.value = false
}
function handleUnitCancel() {
showUnit.value = false
}
function handlePlace() {
if (placeList.value[0].length === 0) {
proxy.$refs['uToast'].show({
message: '用药地点为空 ', type: 'warning'
})
} else {
showPlace.value = true
}
}
function handlePlaceConfirm(e) {
form.value.placeName = e.value[0].dictLabel
form.value.place = e.value[0].dictValue
showPlace.value = false
}
function handlePlaceCancel() {
showPlace.value = false
}
function handleMarType() {
if (marTypeList.value[0].length === 0) {
proxy.$refs['uToast'].show({
message: '用药类型为空 ', type: 'warning'
})
} else {
showMarType.value = true
}
}
function handleMarTypeConfirm(e) {
form.value.marTypeName = e.value[0].dictLabel
form.value.type = e.value[0].dictValue
queryMedicineParams.value.treatmentType = e.value[0].dictValue
form.value.medicalName = ""
form.value.name = ""
form.value.medicineId = null
listMedicineBasic(queryMedicineParams.value).then((response) => {
medicalList.value = [response.rows]
})
showMarType.value = false
}
function handleMarTypeCancel() {
showMarType.value = false
}
function selectDate() {
datePickShow.value = true
proxy.$refs['dosingTimeRef'].innerValue = new Date().getTime()
}
function datePickConfirm(e) {
form.value.dosingTime = dayjs(e.value).format("YYYY-MM-DD HH:mm:ss")
datePickShow.value = false
}
function submit() {
proxy.$refs['uForm'].validate().then(() => {
if (form.value.id != null) {
if(flag.value==null){
updateMarRecord(form.value).then(res => {
proxy.$refs['uToast'].show({
message: '修改成功', complete() {
uni.navigateTo({ url: `/pages/health/marRecord/list` })
}
})
})
}else {
form.value.id == null
addMarRecord(form.value).then(res => {
proxy.$refs['uToast'].show({
message: '新增成功', complete() {
uni.navigateTo({ url: `/pages/health/marRecord/list` })
}
})
})
}
}else {
addMarRecord(form.value).then(res => {
proxy.$refs['uToast'].show({
message: '新增成功', complete() {
uni.navigateTo({ url: `/pages/health/marRecord/list` })
}
})
})
}
})
}
</script>
<style lang="scss" scoped>
.section {
margin: 24rpx;
padding: 16rpx 24rpx;
background-color: #fff;
border-radius: 8rpx;
.section-title {
width: 360rpx;
color: #333333;
line-height: 44rpx;
font-size: 30rpx;
border-left: 6rpx solid #2681FF;
padding-left: 26rpx;
}
.form-view {
padding: 20rpx 0rpx 0 10rpx;
.form-btn {
padding-top: 20rpx;
}
}
}
</style>