This commit is contained in:
ktianc 2022-09-30 17:29:55 +08:00
parent d43d67276d
commit 051ddca964
4 changed files with 136 additions and 26 deletions

View File

@ -1,5 +1,5 @@
<script lang="tsx">
import { PropType, defineComponent, ref, computed, unref, watch, onMounted } from 'vue'
import { PropType, defineComponent, ref, computed, unref, watch, onMounted, Ref, isRef } from 'vue'
import { ElForm, ElFormItem, ElRow, ElCol, ElTooltip } from 'element-plus'
import { componentMap } from './componentMap'
import { propTypes } from '@/utils/propTypes'
@ -207,6 +207,14 @@ export default defineComponent({
)
}
}
if (item?.componentProps?.placeholder === undefined) {
if (item.componentProps === undefined) {
item.componentProps = {}
}
if (item?.component === 'Input') {
item.componentProps.placeholder = `请输入${item.label}`
}
}
return (
<ElFormItem {...(item.formItemProps || {})} prop={item.field} label={item.label || ''}>
{{
@ -217,7 +225,6 @@ export default defineComponent({
>
const { autoSetPlaceholder } = unref(getProps)
return slots[item.field] ? (
getSlot(slots, item.field, formModel.value)
) : (

View File

@ -1,6 +1,6 @@
import type { Form, FormExpose } from '@/components/Form'
import type { ElForm } from 'element-plus'
import { ref, unref, nextTick } from 'vue'
import { ref, unref, nextTick, Ref } from 'vue'
import type { FormProps } from '@/components/Form/src/types'
export const useForm = (props?: FormProps) => {
@ -46,7 +46,6 @@ export const useForm = (props?: FormProps) => {
const form = await getForm()
form?.setValues(data)
},
/**
* @param schemaProps schemaProps
*/

View File

@ -5,7 +5,7 @@ import { PropType, reactive, watch } from 'vue'
import { TableData } from '@/api/table/types'
import { useValidator } from '@/hooks/web/useValidator'
import { getMenuTreeOptionsApi } from '@/api/vadmin/auth/menu'
import { ElButton } from 'element-plus'
import { ElButton, ElInput } from 'element-plus'
const { required } = useValidator()
@ -16,6 +16,10 @@ const props = defineProps({
}
})
const handleRadioChange = (item: string) => {
console.log(item)
}
const schema = reactive<FormSchema[]>([
{
field: 'parent_id',
@ -56,30 +60,115 @@ const schema = reactive<FormSchema[]>([
label: '按钮',
value: '2'
}
]
],
onChange: handleRadioChange
},
value: '0'
},
{
field: 'icon',
label: '菜单图标',
colProps: {
span: 24
}
},
{
field: 'title',
label: '菜单名称',
component: 'Input',
colProps: {
span: 12
}
},
{
field: 'order',
label: '显示排序',
component: 'InputNumber',
colProps: {
span: 12
}
},
{
field: 'path',
label: '路由地址',
component: 'Input',
colProps: {
span: 12
}
},
{
field: 'component',
label: '组件路径',
component: 'Input',
colProps: {
span: 12
}
},
{
field: 'hidden',
label: '显示状态',
colProps: {
span: 12
},
component: 'Radio',
componentProps: {
style: {
width: '100%'
},
options: [
{
label: '显示',
value: true
},
{
label: '隐藏',
value: false
}
]
},
value: true
},
{
field: 'disabled',
label: '菜单状态',
colProps: {
span: 12
},
component: 'Radio',
componentProps: {
style: {
width: '100%'
},
options: [
{
label: '正常',
value: false
},
{
label: '停用',
value: true
}
]
},
value: false
},
{
field: 'perms',
label: '权限标识',
component: 'Input',
colProps: {
span: 24
},
componentProps: {
placeholder: '支持 Iconify 中的所有图标请登录网站自行搜索https://iconify.design/'
}
hidden: true
}
])
const rules = reactive({
title: [required()],
author: [required()],
importance: [required()],
pageviews: [required()],
display_time: [required()],
content: [required()]
disabled: [required()],
hidden: [required()],
path: [required()],
order: [required()]
})
const { register, methods, elFormRef } = useForm({
@ -115,6 +204,10 @@ const getMenuTreeOptions = async () => {
getMenuTreeOptions()
const toIconify = () => {
window.open('https://iconify.design/')
}
defineExpose({
elFormRef,
getFormData: methods.getFormData
@ -123,14 +216,16 @@ defineExpose({
<template>
<Form :rules="rules" @register="register">
<template #iconClick-label>
<!-- <div>
<el-button type="primary">跳转</el-button>
</div> -->
</template>
<template #iconClick>
<div>
<ElButton type="primary">跳转</ElButton>
<template #icon="form">
<div style="display: flex; justify-content: space-between">
<ElInput
v-model="form['icon']"
placeholder="支持 Iconify 中的所有图标请登录网站自行搜索https://iconify.design/"
style="width: 500px"
/>
<div style="margin-left: 10px">
<ElButton type="primary" @click="toIconify">跳转</ElButton>
</div>
</div>
</template>
</Form>

View File

@ -43,9 +43,6 @@ const columns = reactive<TableColumn[]>([
label: t('tableDemo.action'),
form: {
show: false
},
detail: {
show: false
}
}
])
@ -88,7 +85,19 @@ const delData = async (row: TableData | null, multiple: boolean) => {
const loading = ref(false)
const save = async () => {}
const writeRef = ref<ComponentRef<typeof Write>>()
const save = async () => {
const write = unref(writeRef)
await write?.elFormRef?.validate(async (isValid) => {
if (isValid) {
loading.value = true
const data = (await write?.getFormData()) as TableData
console.log('a', data)
loading.value = false
}
})
}
const { getList } = methods