Files
cdTestPlant3/cdTMP/src/components/ma-form/formItem/form-cascader.vue

107 lines
4.3 KiB
Vue
Raw Normal View History

2023-06-08 21:09:28 +08:00
<!--
- MineAdmin is committed to providing solutions for quickly building web applications
- Please view the LICENSE file that was distributed with this source code,
- For the full copyright and license information.
- Thank you very much for using MineAdmin.
-
- @Author X.Mo<root@imoi.cn>
- @Link https://gitee.com/xmo/mineadmin-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-cascader
v-model="value"
:path-mode="props.component.pathMode"
:placeholder="props.component.placeholder || `请选择${props.component.title}`"
:allow-clear="props.component.allowClear ?? true"
:allow-search="props.component.allowSearch ?? true"
:size="props.component.size"
:disabled="props.component.disabled"
:multiple="props.component.multiple"
:options="props.component.options ?? dictList[dictIndex] ?? []"
:input-value="props.component.inputValue"
:default-input-value="props.component.defaultInputValue"
:popup-visible="props.component.popupVisible"
:default-popup-visible="props.component.defaultPopupVisible"
:expand-trigger="props.component.expandTrigger"
:filter-option="props.component.filterOption"
:popup-container="props.component.popupContainer"
:max-tag-count="props.component.maxTagCount"
:format-label="props.component.formatLabel"
:trigger-props="props.component.triggerProps"
:check-strictly="props.component.checkStrictly"
:load-more="props.component.loadMore"
:loading="props.component.loading"
:search-option-only-label="props.component.searchOptionOnlyLabel"
:search-delay="props.component.searchDelay"
:field-names="
props.component.fieldNames ?? props.component?.dict?.props ?? { key: 'value', title: 'label' }
"
:value-key="props.component.valueKey"
:fallback="props.component.fallback"
:expand-child="props.component.expandChild"
@change="maEvent.handleChangeEvent(props.component, $event)"
@input-value-change="maEvent.handleInputEvent(props.component, $event)"
@popup-visible-change="maEvent.customeEvent(props.component, $event, 'onPopupVisibleChange')"
@clear="maEvent.handleCommonEvent(props.component, 'onClear')"
@focus="maEvent.handleCommonEvent(props.component, 'onFocus')"
@blur="maEvent.handleCommonEvent(props.component, 'onBlur')"
@search="maEvent.customeEvent(props.component, $event, 'onSearch')"
>
</a-cascader>
</slot>
</ma-form-item>
</template>
<script setup>
import { ref, inject, onMounted, watch } from "vue"
import { get, set } from "lodash"
import MaFormItem from "./form-item.vue"
import { maEvent } from "../js/formItemMixin.js"
const props = defineProps({
component: Object,
customField: { type: String, default: undefined }
})
const formModel = inject("formModel")
const dictList = inject("dictList")
const index = props.customField ?? props.component.dataIndex
const dictIndex = index.match(/^(\w+\.)\d+\./)
? index.match(/^(\w+\.)\d+\./)[1] + props.component.dataIndex
: 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]
}
)
if (
props.component.dict &&
(props.component.dict.name || props.component.dict.data) &&
!value.value &&
!props.component.multiple &&
!props.component.pathMode
) {
value.value = value.value + ""
}
maEvent.handleCommonEvent(props.component, "onCreated")
onMounted(() => {
maEvent.handleCommonEvent(props.component, "onMounted")
})
</script>