nursing_unit_vue/src/views/services/directivePackage/components/DirectivePackageForm.vue

292 lines
9.8 KiB
Vue
Raw Normal View History

2025-03-24 14:59:31 +08:00
<template>
<a-spin :spinning="confirmLoading">
2025-09-04 16:22:31 +08:00
<div class="card-style">
<JFormContainer :disabled="disabled">
<template #detail>
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol"
name="DirectivePackageForm">
<a-row>
<a-col :span="12">
<a-row>
<a-col :span="24">
<a-form-item label="指令包名称" v-bind="validateInfos.packageName" id="DirectivePackageForm-packageName"
name="packageName">
<a-input v-model:value="formData.packageName" placeholder="请输入服务指令包名称" allow-clear :maxlength="20"
:showCount="true"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="服务总时长" v-bind="validateInfos.totalDuration"
id="DirectivePackageForm-totalDuration" name="totalDuration">
<a-input-number v-model:value="formData.totalDuration" :min="0" :step="5" addon-after="分钟"
2025-09-04 16:22:31 +08:00
placeholder="请输入服务时长(分钟)" allow-clear @keydown="onDurationKeydown" :disabled="disabled" />
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="超时时长" v-bind="validateInfos.timeoutDuration"
id="DirectivePackageForm-timeoutDuration" name="timeoutDuration">
<a-input-number v-model:value="formData.timeoutDuration" :min="0" :step="5" addon-after="分钟"
placeholder="请输入超时时长(分钟)" allow-clear @keydown="onDurationKeydown" :disabled="disabled" />
2025-09-04 16:22:31 +08:00
</a-form-item>
</a-col>
</a-row>
</a-col>
<a-col :span="12">
<a-row>
<a-col :span="24">
<a-form-item label="分类标签" v-bind="validateInfos.instructionTagId"
id="DirectivePackageForm-instructionTagId" name="instructionTagId" :labelCol="labelCol2"
:wrapperCol="wrapperCol2">
<j-dict-select-tag v-model:value="formData.instructionTagId"
:dictCode="`nu_config_service_instruction_tag,instruction_name,id,del_flag = 0 and iz_enabled = 'Y' order by sort asc`"
placeholder="请选择分类标签" allowClear
:disabled="!!props.seletedRecord && !!props.seletedRecord.directives && !!props.seletedRecord.directives.length > 0" />
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="是否启用" v-bind="validateInfos.izEnabled" id="DirectivePackageForm-izEnabled"
name="izEnabled" :labelCol="labelCol2" :wrapperCol="wrapperCol2">
<j-dict-select-tag type='list' v-model:value="formData.izEnabled" dictCode="iz_enabled"
placeholder="是否启用" allow-clear />
</a-form-item>
</a-col>
2025-09-04 16:22:31 +08:00
<a-col :span="24">
<a-form-item label="说明" v-bind="validateInfos.description" id="DirectivePackageForm-description"
name="description" :labelCol="labelCol2" :wrapperCol="wrapperCol2">
<a-textarea v-model:value="formData.description" :maxlength="200" :autosize="{ minRows: 1 }"
2025-09-04 16:22:31 +08:00
:showCount="true" placeholder="请输入说明" />
</a-form-item>
</a-col>
</a-row>
</a-col>
</a-row>
</a-form>
</template>
</JFormContainer>
</div>
2025-03-24 14:59:31 +08:00
</a-spin>
</template>
<script lang="ts" setup>
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted } from 'vue';
import { defHttp } from '/@/utils/http/axios';
import { useMessage } from '/@/hooks/web/useMessage';
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
import { getValueType } from '/@/utils';
import { saveOrUpdate } from '../DirectivePackage.api';
import { Form } from 'ant-design-vue';
2025-07-15 13:42:49 +08:00
import dayjs from "dayjs";
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
const props = defineProps({
formDisabled: { type: Boolean, default: false },
formData: { type: Object, default: () => ({}) },
formBpm: { type: Boolean, default: true },
seletedRecord: null,
});
const formRef = ref();
const useForm = Form.useForm;
const emit = defineEmits(['register', 'ok']);
const formData = reactive<Record<string, any>>({
id: '',
packageName: '',
description: '',
sort: 99,
izEnabled: 'Y',
2025-07-15 13:42:49 +08:00
startTimeStr: '',
endTimeStr: '',
2025-07-15 16:30:33 +08:00
instructionTagId: '',
2025-09-04 16:22:31 +08:00
totalDuration: 0,
timeoutDuration: 0,
});
const { createMessage } = useMessage();
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
2025-09-04 16:22:31 +08:00
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
const labelCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 3 } });
2025-09-04 16:22:31 +08:00
const wrapperCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 21 } });
const confirmLoading = ref<boolean>(false);
//表单验证
const validatorRules = reactive({
2025-09-04 16:22:31 +08:00
packageName: [{ required: true, message: '请输入服务指令包名称!' },],
instructionTagId: [{ required: true, message: '请选择分类标签!' },],
2025-09-04 16:22:31 +08:00
totalDuration: [{ required: true, message: '请输入服务总时长(分钟)!' }, {
validator: (_, value) => {
if (value < 0) {
2025-09-04 16:22:31 +08:00
return Promise.reject('请输入服务总时长!');
}
return Promise.resolve();
},
},],
izEnabled: [{ required: true, message: '请选择是否启用!' },],
});
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
2025-03-24 14:59:31 +08:00
2025-09-04 16:22:31 +08:00
const onDurationKeydown = (e: KeyboardEvent) => {
const key = e.key;
// 放行控制键
if (['Backspace', 'Delete', 'ArrowLeft', 'ArrowRight', 'Tab'].includes(key)) return;
// 只能输数字和点
if (!/[\d.]/.test(key)) {
e.preventDefault();
return;
}
const input = e.target as HTMLInputElement;
const { value, selectionStart: s, selectionEnd: t } = input;
const next = value.slice(0, s!) + key + value.slice(t!);
// 整数最多5位小数最多2位
if (!/^\d{0,3}$/.test(next)) {
e.preventDefault();
}
};
// 表单禁用
const disabled = computed(() => {
if (props.formBpm === true) {
if (props.formData.disabled === false) {
return false;
} else {
return true;
2025-03-24 14:59:31 +08:00
}
}
return props.formDisabled;
});
2025-03-24 14:59:31 +08:00
/**
* 新增
*/
function add() {
edit({});
}
/**
* 编辑
*/
function edit(record) {
nextTick(() => {
resetFields();
const tmpData = {};
Object.keys(formData).forEach((key) => {
if (record.hasOwnProperty(key)) {
tmpData[key] = record[key]
}
})
2025-07-15 13:42:49 +08:00
console.log("🚀 ~ nextTick ~ tmpData:", tmpData)
//赋值
Object.assign(formData, tmpData);
2025-09-04 16:22:31 +08:00
if (formData.startTimeStr) {
formData.startTimeStr = dayjs(formData.startTimeStr, "YYYY-MM-DD hh:mm:ss")
2025-07-15 13:42:49 +08:00
}
2025-09-04 16:22:31 +08:00
if (formData.endTimeStr) {
formData.endTimeStr = dayjs(formData.endTimeStr, "YYYY-MM-DD hh:mm:ss")
2025-07-15 13:42:49 +08:00
}
console.log("🚀 ~ nextTick ~ formData:", formData)
});
}
/**
* 提交数据
*/
async function submitForm(directives) {
try {
// 触发表单验证
await validate();
} catch ({ errorFields }) {
if (errorFields) {
const firstField = errorFields[0];
if (firstField) {
formRef.value.scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
2025-03-24 14:59:31 +08:00
}
}
return Promise.reject(errorFields);
}
confirmLoading.value = true;
const isUpdate = ref<boolean>(false);
//时间格式化
let model = formData;
if (model.id) {
isUpdate.value = true;
}
//循环数据
for (let data in model) {
//如果该数据是数组并且是字符串类型
if (model[data] instanceof Array) {
let valueType = getValueType(formRef.value.getProps, data);
//如果是字符串类型的需要变成以逗号分割的字符串
if (valueType === 'string') {
model[data] = model[data].join(',');
2025-03-24 14:59:31 +08:00
}
}
}
2025-03-28 16:44:40 +08:00
if (directives.length > 0) {
model.directives = directives
}
2025-09-04 16:22:31 +08:00
// if (!model.packageName) {
// createMessage.warning('请填写服务指令包名称');
// confirmLoading.value = false;
// return;
// }
// if (!model.startTimeStr) {
// createMessage.warning('请选择开始时间');
// confirmLoading.value = false;
// return;
// }
// if (!model.endTimeStr) {
// createMessage.warning('请选择结束时间');
// confirmLoading.value = false;
// return;
// }
var directivesList = model.directives;
if (!directivesList || directivesList.length == 0) {
createMessage.warning('请选择服务指令');
2025-07-15 13:42:49 +08:00
confirmLoading.value = false;
return;
2025-09-04 16:22:31 +08:00
} else {
model.instructionTagId = directivesList[0].instructionTagId;
2025-07-15 13:42:49 +08:00
}
2025-09-04 16:22:31 +08:00
console.log('model', model);
// confirmLoading.value = false;
await saveOrUpdate(model, isUpdate.value)
.then((res) => {
if (res.success) {
createMessage.success(res.message);
emit('ok');
} else {
createMessage.warning(res.message);
}
})
.finally(() => {
confirmLoading.value = false;
2025-09-04 16:22:31 +08:00
});
}
2025-03-24 14:59:31 +08:00
defineExpose({
add,
edit,
submitForm,
formData,
});
2025-03-24 14:59:31 +08:00
</script>
<style lang="less" scoped>
.antd-modal-form {
padding: 14px;
}
2025-09-04 16:22:31 +08:00
.card-style {
padding-top: 14px;
padding-left: 14px;
padding-right: 14px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
margin-bottom: 14px;
}
:deep .ant-input-number-group-wrapper {
width: 100%;
}
2025-03-24 14:59:31 +08:00
</style>