Files
cdTestPlant3/cdTMP/src/components/ma-form/formItem/form-textarea.vue
2025-04-02 19:16:28 +08:00

66 lines
2.2 KiB
Vue

<template>
<ma-form-item
v-if="typeof props.component.display == 'undefined' || props.component.display === true"
:component="props.component"
:custom-field="props.customField"
>
<slot :name="`form-${props.component.dataIndex}`" v-bind="props.component">
<a-textarea
v-model="value"
:size="props.component.size"
:allow-clear="props.component.allowClear ?? true"
:disabled="props.component.disabled"
:readonly="props.component.readonly"
:auto-size="props.component.autoSize || true"
:error="props.component.error"
:placeholder="props.component.placeholder ?? `请输入${props.component.title}`"
:max-length="props.component.maxLength"
:show-word-limit="props.component.showWordLimit"
:word-length="props.component.wordLength"
:word-slice="props.component.wordSlice"
@input="rv('onInput', $event)"
@change="rv('onChange', $event)"
@clear="rv('onClear')"
@focus="rv('onFocus')"
@blur="rv('onBlur')"
>
</a-textarea>
</slot>
</ma-form-item>
</template>
<script setup>
import { ref, inject, onMounted, watch } from "vue"
import { get, set } from "lodash-es"
import MaFormItem from "./form-item.vue"
import { runEvent } from "../js/event.js"
const props = defineProps({
component: Object,
customField: { type: String, default: undefined }
})
const formModel = inject("formModel")
const getColumnService = inject("getColumnService")
const columns = inject("columns")
const rv = async (ev, value = undefined) =>
await runEvent(props.component, ev, { formModel, getColumnService, columns }, value)
const index = props.customField ?? props.component.dataIndex
const value = ref(get(formModel.value, index))
watch(
() => get(formModel.value, index),
(vl) => (value.value = vl)
)
watch(
() => value.value,
(v) => {
set(formModel.value, index, v)
index.indexOf(".") > -1 && delete formModel.value[index]
}
)
rv("onCreated")
onMounted(() => rv("onMounted"))
</script>