- 新增挂号模块,包括分页查询、列表查询、添加、修改、删除及批量删除功能 - 新增医生入驻申请模块,包含完整的CRUD操作接口- 新增医疗记录模块,支持分页及列表查询、增删改查功能 - 新增分销商用户记录表模块,提供完整的数据管理接口- 新增病例模块,实现分页查询、列表查询及数据操作功能 - 新增药品库模块,支持药品信息的增删改查及分页查询- 新增出入库模块,提供完整的库存变动记录管理接口 - 新增药品库存模块,包含库存信息的查询、添加、修改及删除功能 - 新增处方订单模块,实现订单信息的全面管理接口
239 lines
6.1 KiB
Vue
239 lines
6.1 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="name">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入药名"
|
|
v-model:value="form.name"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="拼音" name="pinyin">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入拼音"
|
|
v-model:value="form.pinyin"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="分类" name="category">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入分类"
|
|
v-model:value="form.category"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="规格" name="specification">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入规格"
|
|
v-model:value="form.specification"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="单位" name="unit">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入单位(如“克”、“袋”)"
|
|
v-model:value="form.unit"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="描述" name="content">
|
|
<a-textarea
|
|
:rows="4"
|
|
:maxlength="200"
|
|
placeholder="请输入描述"
|
|
v-model:value="form.content"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="单价" name="pricePerUnit">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入单价"
|
|
v-model:value="form.pricePerUnit"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="是否活跃" name="isActive">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入是否活跃"
|
|
v-model:value="form.isActive"
|
|
/>
|
|
</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>
|
|
</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 { addClinicMedicine, updateClinicMedicine } from '@/api/clinic/clinicMedicine';
|
|
import { ClinicMedicine } from '@/api/clinic/clinicMedicine/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?: ClinicMedicine | 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<ClinicMedicine>({
|
|
id: undefined,
|
|
name: undefined,
|
|
pinyin: undefined,
|
|
category: undefined,
|
|
specification: undefined,
|
|
unit: undefined,
|
|
content: undefined,
|
|
pricePerUnit: undefined,
|
|
isActive: undefined,
|
|
userId: undefined,
|
|
comments: undefined,
|
|
tenantId: undefined,
|
|
createTime: undefined,
|
|
updateTime: undefined,
|
|
clinicMedicineId: undefined,
|
|
clinicMedicineName: '',
|
|
status: 0,
|
|
comments: '',
|
|
sortNumber: 100
|
|
});
|
|
|
|
/* 更新visible */
|
|
const updateVisible = (value: boolean) => {
|
|
emit('update:visible', value);
|
|
};
|
|
|
|
// 表单验证规则
|
|
const rules = reactive({
|
|
clinicMedicineName: [
|
|
{
|
|
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 ? updateClinicMedicine : addClinicMedicine;
|
|
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>
|