Browse Source

feat: updated modify-form for better display of readonly form fields

dev
hechang27-sprt 6 months ago
parent
commit
e9bdf0a233
  1. 174
      packages/base/data/modify-form.vue

174
packages/base/data/modify-form.vue

@ -1,18 +1,60 @@
<template> <template>
<div class="modify-form"> <div class="modify-form">
<el-form label-position="right" :class="class" :label-width="width ? width + 'px' : ''" :model="param" <el-form
ref="modifyForm" :rules="rules"> label-position="right"
:class="class"
:label-width="width ? width + 'px' : ''"
:model="param"
ref="modifyForm"
:rules="rules"
>
<template v-for="item in items"> <template v-for="item in items">
<el-form-item :label="item.name || t(item.i18n)" :prop="item.code" <el-form-item :label="item.name || t(item.i18n)" :prop="item.code" v-if="!modify || (modify && !item.noModify)">
v-if="!modify || (modify && !item.noModify)"> <template v-if="item.dict || item.maxValue">
<NoobSelect v-if="item.dict || item.maxValue" v-model="param[item.code]" :dict="item.dict" <NoobSelect
:max-value="item.maxValue" full v-if="!item.readonly"
:placeholder="t('rule.pleaseSelect') + (item.name || t(item.i18n))" :disabled="item.disabled" /> v-model="param[item.code]"
<NoobDate v-else-if="item.date" v-model="param[item.code]" :formater="item.formater" full :dict="item.dict"
:placeholder="t('rule.pleaseSelect') + (item.name || t(item.i18n))" :disabled="item.disabled" /> :max-value="item.maxValue"
full
:placeholder="t('rule.pleaseSelect') + (item.name || t(item.i18n))"
:disabled="item.disabled"
/>
<el-input v-else readonly :model-value="sysDict[item.dict as string][param[item.code]]" />
</template>
<template v-else-if="item.date">
<NoobDate
v-if="!item.readonly"
v-model="param[item.code]"
:formater="item.formater"
full
:placeholder="t('rule.pleaseSelect') + (item.name || t(item.i18n))"
:disabled="item.disabled || item.readonly"
/>
<TzDateTime
v-else
:value="param[item.code]"
:value-format="item.formater"
display-format="YYYY-MM-DD HH:mm:ss"
slot
>
<template #default="{ display }">
<el-input :model-value="display" readonly />
</template>
</TzDateTime>
<!-- <span>{{ param[item.code].toString() }}</span>-->
</template>
<slot v-else-if="item.slot" :name="item.code" /> <slot v-else-if="item.slot" :name="item.code" />
<NoobInput v-else v-model="param[item.code]" full :type="item.type" :rows="item.rows" <NoobInput
:placeholder="t('rule.pleaseEnter') + (item.name || t(item.i18n))" :disabled="item.disabled" /> v-else
v-model="param[item.code]"
full
:type="item.type"
:rows="item.rows"
:placeholder="item.readonly || item.disabled ? '空' : t('rule.pleaseEnter') + (item.name || t(item.i18n))"
:disabled="item.disabled"
:readonly="item.readonly"
/>
</el-form-item> </el-form-item>
</template> </template>
<slot></slot> <slot></slot>
@ -27,49 +69,58 @@
<script lang="ts" setup> <script lang="ts" setup>
import { onMounted, ref, watch } from "vue"; import { onMounted, ref, watch } from "vue";
import { FormInstance } from "element-plus"; import { FormInstance } from "element-plus";
import { useI18n } from 'vue3-i18n'; import { useI18n } from "vue3-i18n";
import { NoobSelect, NoobInput, NoobDate, NoobButton } from "noob-mengyxu"; import { NoobSelect, NoobInput, NoobDate, NoobButton, TzDateTime } from "noob-mengyxu";
import { useSysDict } from "@/composables/useSysDict";
const { t } = useI18n(); const { t } = useI18n();
const { sysDict, updateDict } = useSysDict();
const prop = defineProps({ interface FormItem {
width: { code: string;
type: Number, name?: string;
default: 80, i18n?: string;
}, dict?: string;
param: { maxValue?: number;
type: Object, date?: boolean;
default: {}, formater?: string;
}, slot?: boolean;
rules: { type?: string;
type: Object, rows?: number;
default: {}, disabled?: boolean;
}, noModify?: boolean;
class: { readonly?: boolean;
type: String, }
default: '',
}, interface Props {
type: { width?: number;
type: String, param?: Record<string, any>;
default: null, rules?: Record<string, any>;
}, class?: string;
modify: { type?: string | null;
type: Boolean, modify?: boolean;
default: false, items?: FormItem[];
}, confirm?: string;
items: { cancel?: string;
type: Array<any>(), }
default: [],
}, const prop = withDefaults(defineProps<Props>(), {
confirm: { width: 80,
type: String, param: () => ({}),
default: 'base.confirm' rules: () => ({}),
}, class: "",
cancel: { type: null,
type: String, modify: false,
default: 'base.cancel' items: () => [],
} confirm: "base.confirm",
cancel: "base.cancel",
}); });
const emit = defineEmits(["confirm", "cancel"]);
const emit = defineEmits<{
confirm: [];
cancel: [];
}>();
const modifyForm = ref<FormInstance>(); const modifyForm = ref<FormInstance>();
const formConfirm = () => { const formConfirm = () => {
@ -84,28 +135,33 @@ const formConfirm = () => {
const clearValidate = () => { const clearValidate = () => {
modifyForm.value?.clearValidate(); modifyForm.value?.clearValidate();
} };
watch(() => prop.param, () => { watch(
() => prop.param,
() => {
modifyForm.value?.clearValidate(); modifyForm.value?.clearValidate();
}); },
);
defineExpose({ clearValidate }) defineExpose({ clearValidate });
onMounted(() => { onMounted(async () => {
await updateDict(prop.items.map((item) => item.dict).filter(Boolean) as string[]);
}); });
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
//@import url(); css //@import url(); css
::v-deep .el-select { :deep(.el-select) {
width: 100%; width: 100%;
} }
::v-deep .el-date-editor { :deep(.el-date-editor) {
width: 100% !important; width: 100% !important;
} }
::v-deep .el-autocomplete { :deep(.el-autocomplete) {
width: 100%; width: 100%;
} }
</style> </style>
Loading…
Cancel
Save