- 新增挂号模块,包括分页查询、列表查询、添加、修改、删除及批量删除功能 - 新增医生入驻申请模块,包含完整的CRUD操作接口- 新增医疗记录模块,支持分页及列表查询、增删改查功能 - 新增分销商用户记录表模块,提供完整的数据管理接口- 新增病例模块,实现分页查询、列表查询及数据操作功能 - 新增药品库模块,支持药品信息的增删改查及分页查询- 新增出入库模块,提供完整的库存变动记录管理接口 - 新增药品库存模块,包含库存信息的查询、添加、修改及删除功能 - 新增处方订单模块,实现订单信息的全面管理接口
240 lines
6.4 KiB
Vue
240 lines
6.4 KiB
Vue
<!-- 编辑弹窗 -->
|
|
<template>
|
|
<ele-modal
|
|
:width="800"
|
|
:visible="visible"
|
|
:maskClosable="false"
|
|
:maxable="maxable"
|
|
:title="isUpdate ? '编辑挂号' : '添加挂号'"
|
|
:body-style="{ paddingBottom: '28px' }"
|
|
@update:visible="updateVisible"
|
|
@ok="save"
|
|
>
|
|
<a-form
|
|
ref="formRef"
|
|
:model="form"
|
|
:rules="rules"
|
|
:label-col="styleResponsive ? { md: 4, sm: 5, xs: 24 } : { flex: '90px' }"
|
|
:wrapper-col="
|
|
styleResponsive ? { md: 19, sm: 19, xs: 24 } : { flex: '1' }
|
|
"
|
|
>
|
|
<!-- <a-form-item label="类型" name="type">-->
|
|
<!-- <a-input-->
|
|
<!-- allow-clear-->
|
|
<!-- placeholder="请输入类型"-->
|
|
<!-- v-model:value="form.type"-->
|
|
<!-- />-->
|
|
<!-- </a-form-item>-->
|
|
<a-form-item label="就诊原因" name="reason">
|
|
<a-textarea
|
|
:rows="4"
|
|
:maxlength="200"
|
|
disabled
|
|
placeholder="请输入描述"
|
|
v-model:value="form.reason"
|
|
/>
|
|
</a-form-item>
|
|
<!-- <a-form-item label="挂号时间" name="evaluateTime">-->
|
|
<!-- <a-input-->
|
|
<!-- allow-clear-->
|
|
<!-- placeholder="请输入挂号时间"-->
|
|
<!-- v-model:value="form.evaluateTime"-->
|
|
<!-- />-->
|
|
<!-- </a-form-item>-->
|
|
<!-- <a-form-item label="医生" name="doctorId">-->
|
|
<!-- <a-input-->
|
|
<!-- allow-clear-->
|
|
<!-- placeholder="请输入医生"-->
|
|
<!-- v-model:value="form.doctorId"-->
|
|
<!-- />-->
|
|
<!-- </a-form-item>-->
|
|
<!-- <a-form-item label="患者" name="userId">-->
|
|
<!-- <a-input-->
|
|
<!-- allow-clear-->
|
|
<!-- placeholder="请输入患者"-->
|
|
<!-- v-model:value="form.userId"-->
|
|
<!-- />-->
|
|
<!-- </a-form-item>-->
|
|
<a-form-item label="备注" name="comments">
|
|
<a-textarea
|
|
:rows="4"
|
|
:maxlength="200"
|
|
placeholder="请输入描述"
|
|
v-model:value="form.comments"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="排序号" name="sortNumber">
|
|
<a-input-number
|
|
:min="0"
|
|
:max="9999"
|
|
class="ele-fluid"
|
|
placeholder="请输入排序号"
|
|
v-model:value="form.sortNumber"
|
|
/>
|
|
</a-form-item>
|
|
<!-- <a-form-item label="是否删除" name="isDelete">-->
|
|
<!-- <a-input-->
|
|
<!-- allow-clear-->
|
|
<!-- placeholder="请输入是否删除"-->
|
|
<!-- v-model:value="form.isDelete"-->
|
|
<!-- />-->
|
|
<!-- </a-form-item>-->
|
|
<!-- <a-form-item label="修改时间" name="updateTime">-->
|
|
<!-- <a-input-->
|
|
<!-- allow-clear-->
|
|
<!-- placeholder="请输入修改时间"-->
|
|
<!-- v-model:value="form.updateTime"-->
|
|
<!-- />-->
|
|
<!-- </a-form-item>-->
|
|
</a-form>
|
|
</ele-modal>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, reactive, watch } from 'vue';
|
|
import { Form, message } from 'ant-design-vue';
|
|
import { assignObject, uuid } from 'ele-admin-pro';
|
|
import { addClinicAppointment, updateClinicAppointment } from '@/api/clinic/clinicAppointment';
|
|
import { ClinicAppointment } from '@/api/clinic/clinicAppointment/model';
|
|
import { useThemeStore } from '@/store/modules/theme';
|
|
import { storeToRefs } from 'pinia';
|
|
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
|
|
import { FormInstance } from 'ant-design-vue/es/form';
|
|
import { FileRecord } from '@/api/system/file/model';
|
|
|
|
// 是否是修改
|
|
const isUpdate = ref(false);
|
|
const useForm = Form.useForm;
|
|
// 是否开启响应式布局
|
|
const themeStore = useThemeStore();
|
|
const { styleResponsive } = storeToRefs(themeStore);
|
|
|
|
const props = defineProps<{
|
|
// 弹窗是否打开
|
|
visible: boolean;
|
|
// 修改回显的数据
|
|
data?: ClinicAppointment | null;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'done'): void;
|
|
(e: 'update:visible', visible: boolean): void;
|
|
}>();
|
|
|
|
// 提交状态
|
|
const loading = ref(false);
|
|
// 是否显示最大化切换按钮
|
|
const maxable = ref(true);
|
|
// 表格选中数据
|
|
const formRef = ref<FormInstance | null>(null);
|
|
const images = ref<ItemType[]>([]);
|
|
|
|
// 用户信息
|
|
const form = reactive<ClinicAppointment>({
|
|
id: undefined,
|
|
type: undefined,
|
|
reason: undefined,
|
|
evaluateTime: undefined,
|
|
doctorId: undefined,
|
|
userId: undefined,
|
|
comments: undefined,
|
|
sortNumber: undefined,
|
|
isDelete: undefined,
|
|
tenantId: undefined,
|
|
createTime: undefined,
|
|
updateTime: undefined,
|
|
clinicAppointmentId: undefined,
|
|
clinicAppointmentName: '',
|
|
status: 0,
|
|
comments: '',
|
|
sortNumber: 100
|
|
});
|
|
|
|
/* 更新visible */
|
|
const updateVisible = (value: boolean) => {
|
|
emit('update:visible', value);
|
|
};
|
|
|
|
// 表单验证规则
|
|
const rules = reactive({
|
|
clinicAppointmentName: [
|
|
{
|
|
required: true,
|
|
type: 'string',
|
|
message: '请填写挂号名称',
|
|
trigger: 'blur'
|
|
}
|
|
]
|
|
});
|
|
|
|
const chooseImage = (data: FileRecord) => {
|
|
images.value.push({
|
|
uid: data.id,
|
|
url: data.path,
|
|
status: 'done'
|
|
});
|
|
form.image = data.path;
|
|
};
|
|
|
|
const onDeleteItem = (index: number) => {
|
|
images.value.splice(index, 1);
|
|
form.image = '';
|
|
};
|
|
|
|
const { resetFields } = useForm(form, rules);
|
|
|
|
/* 保存编辑 */
|
|
const save = () => {
|
|
if (!formRef.value) {
|
|
return;
|
|
}
|
|
formRef.value
|
|
.validate()
|
|
.then(() => {
|
|
loading.value = true;
|
|
const formData = {
|
|
...form
|
|
};
|
|
const saveOrUpdate = isUpdate.value ? updateClinicAppointment : addClinicAppointment;
|
|
saveOrUpdate(formData)
|
|
.then((msg) => {
|
|
loading.value = false;
|
|
message.success(msg);
|
|
updateVisible(false);
|
|
emit('done');
|
|
})
|
|
.catch((e) => {
|
|
loading.value = false;
|
|
message.error(e.message);
|
|
});
|
|
})
|
|
.catch(() => {});
|
|
};
|
|
|
|
watch(
|
|
() => props.visible,
|
|
(visible) => {
|
|
if (visible) {
|
|
images.value = [];
|
|
if (props.data) {
|
|
assignObject(form, props.data);
|
|
if(props.data.image){
|
|
images.value.push({
|
|
uid: uuid(),
|
|
url: props.data.image,
|
|
status: 'done'
|
|
})
|
|
}
|
|
isUpdate.value = true;
|
|
} else {
|
|
isUpdate.value = false;
|
|
}
|
|
} else {
|
|
resetFields();
|
|
}
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|