Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
84ed5778
Commit
84ed5778
authored
Jun 12, 2025
by
linjinhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改form文件夹名称
parent
dee79e59
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
17 additions
and
15 deletions
+17
-15
components.d.ts
+7
-5
src/components/CustomizeForm.tsx
+6
-6
src/components/Form/AmountInput.vue
+0
-0
src/components/Form/DatePicker.vue
+0
-0
src/components/Form/DateRangePicker.vue
+0
-0
src/components/Form/Select.vue
+0
-0
src/components/Form/Switch .vue
+0
-0
src/components/Form/form.scss
+0
-0
src/components/SearchForm.tsx
+4
-4
No files found.
components.d.ts
View file @
84ed5778
...
...
@@ -7,10 +7,10 @@ export {}
declare
module
'vue'
{
export
interface
GlobalComponents
{
AmountInput
:
typeof
import
(
'./src/components/Form
.vue
/AmountInput.vue'
)[
'default'
]
AmountInput
:
typeof
import
(
'./src/components/Form/AmountInput.vue'
)[
'default'
]
CommonCard
:
typeof
import
(
'./src/components/CommonCard.vue'
)[
'default'
]
DatePicker
:
typeof
import
(
'./src/components/Form
.vue
/DatePicker.vue'
)[
'default'
]
DateRangePicker
:
typeof
import
(
'./src/components/Form
.vue
/DateRangePicker.vue'
)[
'default'
]
DatePicker
:
typeof
import
(
'./src/components/Form/DatePicker.vue'
)[
'default'
]
DateRangePicker
:
typeof
import
(
'./src/components/Form/DateRangePicker.vue'
)[
'default'
]
ElButton
:
typeof
import
(
'element-plus/es'
)[
'ElButton'
]
ElCard
:
typeof
import
(
'element-plus/es'
)[
'ElCard'
]
ElCarousel
:
typeof
import
(
'element-plus/es'
)[
'ElCarousel'
]
...
...
@@ -32,6 +32,7 @@ declare module 'vue' {
ElImage
:
typeof
import
(
'element-plus/es'
)[
'ElImage'
]
ElInput
:
typeof
import
(
'element-plus/es'
)[
'ElInput'
]
ElInputNumber
:
typeof
import
(
'element-plus/es'
)[
'ElInputNumber'
]
ElLink
:
typeof
import
(
'element-plus/es'
)[
'ElLink'
]
ElMenu
:
typeof
import
(
'element-plus/es'
)[
'ElMenu'
]
ElMenuItem
:
typeof
import
(
'element-plus/es'
)[
'ElMenuItem'
]
ElOption
:
typeof
import
(
'element-plus/es'
)[
'ElOption'
]
...
...
@@ -52,6 +53,7 @@ declare module 'vue' {
ElTimelineItem
:
typeof
import
(
'element-plus/es'
)[
'ElTimelineItem'
]
ElTooltip
:
typeof
import
(
'element-plus/es'
)[
'ElTooltip'
]
ElTree
:
typeof
import
(
'element-plus/es'
)[
'ElTree'
]
ElUpload
:
typeof
import
(
'element-plus/es'
)[
'ElUpload'
]
Icon
:
typeof
import
(
'./src/components/Icon.vue'
)[
'default'
]
ImageView
:
typeof
import
(
'./src/components/ImageView.vue'
)[
'default'
]
LogList
:
typeof
import
(
'./src/components/LogList.vue'
)[
'default'
]
...
...
@@ -59,10 +61,10 @@ declare module 'vue' {
RenderColumn
:
typeof
import
(
'./src/components/RenderColumn.vue'
)[
'default'
]
RouterLink
:
typeof
import
(
'vue-router'
)[
'RouterLink'
]
RouterView
:
typeof
import
(
'vue-router'
)[
'RouterView'
]
Select
:
typeof
import
(
'./src/components/Form
.vue
/Select.vue'
)[
'default'
]
Select
:
typeof
import
(
'./src/components/Form/Select.vue'
)[
'default'
]
ShipmentOrderDetail
:
typeof
import
(
'./src/components/ShipmentOrderDetail.vue'
)[
'default'
]
SplitDiv
:
typeof
import
(
'./src/components/splitDiv/splitDiv.vue'
)[
'default'
]
'Switch '
:
typeof
import
(
'./src/components/Form
.vue
/Switch .vue'
)[
'default'
]
'Switch '
:
typeof
import
(
'./src/components/Form/Switch .vue'
)[
'default'
]
TableRightClickMenu
:
typeof
import
(
'./src/components/TableRightClickMenu.vue'
)[
'default'
]
TableView
:
typeof
import
(
'./src/components/TableView.vue'
)[
'default'
]
UploadExcel
:
typeof
import
(
'./src/components/UploadExcel.vue'
)[
'default'
]
...
...
src/components/CustomizeForm.tsx
View file @
84ed5778
...
...
@@ -2,12 +2,12 @@ import { defineComponent, PropType, ref, computed, h } from 'vue'
import
type
{
Component
}
from
'vue'
import
{
ElInput
,
ElForm
,
ElFormItem
}
from
'element-plus'
import
type
{
FormInstance
}
from
'element-plus'
import
AmountInput
from
'./Form
.vue
/AmountInput.vue'
// 金额输入框
import
DateRangePicker
from
'./Form
.vue
/DateRangePicker.vue'
// 时间范围选择器
import
DatePicker
from
'./Form
.vue
/DatePicker.vue'
// 单个日期选择器
import
Select
from
'./Form
.vue
/Select.vue'
// 普通下拉选择框
import
Switch
from
'./Form
.vue
/Switch .vue'
import
'./Form
.vue
/form.scss'
import
AmountInput
from
'./Form/AmountInput.vue'
// 金额输入框
import
DateRangePicker
from
'./Form/DateRangePicker.vue'
// 时间范围选择器
import
DatePicker
from
'./Form/DatePicker.vue'
// 单个日期选择器
import
Select
from
'./Form/Select.vue'
// 普通下拉选择框
import
Switch
from
'./Form/Switch .vue'
import
'./Form/form.scss'
import
type
{
FormItemRule
}
from
'element-plus'
...
...
src/components/Form
.vue
/AmountInput.vue
→
src/components/Form/AmountInput.vue
View file @
84ed5778
File moved
src/components/Form
.vue
/DatePicker.vue
→
src/components/Form/DatePicker.vue
View file @
84ed5778
File moved
src/components/Form
.vue
/DateRangePicker.vue
→
src/components/Form/DateRangePicker.vue
View file @
84ed5778
File moved
src/components/Form
.vue
/Select.vue
→
src/components/Form/Select.vue
View file @
84ed5778
File moved
src/components/Form
.vue
/Switch .vue
→
src/components/Form/Switch .vue
View file @
84ed5778
File moved
src/components/Form
.vue
/form.scss
→
src/components/Form/form.scss
View file @
84ed5778
File moved
src/components/SearchForm.tsx
View file @
84ed5778
import
{
defineComponent
,
PropType
,
ref
,
computed
,
watch
,
h
}
from
'vue'
import
type
{
Component
}
from
'vue'
import
AmountInput
from
'./Form
.vue
/AmountInput.vue'
// 金额输入框
import
DateRangePicker
from
'./Form
.vue
/DateRangePicker.vue'
// 时间范围选择器
import
DatePicker
from
'./Form
.vue
/DatePicker.vue'
// 单个日期选择器
import
Select
from
'./Form
.vue
/Select.vue'
// 普通下拉选择框
import
AmountInput
from
'./Form/AmountInput.vue'
// 金额输入框
import
DateRangePicker
from
'./Form/DateRangePicker.vue'
// 时间范围选择器
import
DatePicker
from
'./Form/DatePicker.vue'
// 单个日期选择器
import
Select
from
'./Form/Select.vue'
// 普通下拉选择框
import
{
ElInput
,
ElForm
,
ElFormItem
,
ElButton
}
from
'element-plus'
import
{
ISearchForm
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment