Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
Vue-WebDriver
Project
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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
高源
Vue-WebDriver
Commits
913e0cbf
Commit
913e0cbf
authored
Nov 28, 2023
by
郁子恒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完成采集表单功能
parent
6e3f566b
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
App.vue
src/App.vue
+8
-2
collectionForm.vue
src/components/collectionForm.vue
+0
-0
index.js
src/components/index.js
+3
-2
No files found.
src/App.vue
View file @
913e0cbf
...
@@ -96,10 +96,10 @@
...
@@ -96,10 +96,10 @@
import
ResizeObserver
from
'resize-observer-polyfill'
;
import
ResizeObserver
from
'resize-observer-polyfill'
;
import
{
saveAs
}
from
'file-saver'
;
import
{
saveAs
}
from
'file-saver'
;
import
draggable
from
'vuedraggable'
import
draggable
from
'vuedraggable'
import
{
pageNavigate
,
elClick
,
sysSleep
,
onInput
,
elOutput
,
pageJavascript
,
collectionTable
,
actions
}
from
'./components/index.js'
import
{
pageNavigate
,
elClick
,
sysSleep
,
onInput
,
elOutput
,
pageJavascript
,
collectionTable
,
collectionForm
,
actions
}
from
'./components/index.js'
export
default
{
export
default
{
name
:
'App'
,
name
:
'App'
,
components
:
{
pageNavigate
,
elClick
,
sysSleep
,
onInput
,
elOutput
,
pageJavascript
,
collectionTable
,
actions
,
draggable
},
components
:
{
pageNavigate
,
elClick
,
sysSleep
,
onInput
,
elOutput
,
pageJavascript
,
collectionTable
,
collectionForm
,
actions
,
draggable
},
props
:
{},
props
:
{},
data
()
{
data
()
{
return
{
return
{
...
@@ -141,6 +141,9 @@ export default {
...
@@ -141,6 +141,9 @@ export default {
value
:
'collectionTable'
,
value
:
'collectionTable'
,
label
:
'采集表'
label
:
'采集表'
},
{
},
{
value
:
'collectionForm'
,
label
:
'采集表单'
},
{
value
:
'actions'
,
value
:
'actions'
,
label
:
'容器'
label
:
'容器'
}],
}],
...
@@ -219,6 +222,9 @@ export default {
...
@@ -219,6 +222,9 @@ export default {
case
'collectionTable'
:
case
'collectionTable'
:
this
.
dynamicComponent
=
collectionTable
this
.
dynamicComponent
=
collectionTable
break
;
break
;
case
'collectionForm'
:
this
.
dynamicComponent
=
collectionForm
break
;
case
'actions'
:
case
'actions'
:
this
.
dynamicComponent
=
actions
this
.
dynamicComponent
=
actions
break
;
break
;
...
...
src/components/collectionForm.vue
0 → 100644
View file @
913e0cbf
This diff is collapsed.
Click to expand it.
src/components/index.js
View file @
913e0cbf
...
@@ -5,5 +5,6 @@ import onInput from './onInput.vue';
...
@@ -5,5 +5,6 @@ import onInput from './onInput.vue';
import
elOutput
from
'./elOutput.vue'
;
import
elOutput
from
'./elOutput.vue'
;
import
pageJavascript
from
'./pageJavascript.vue'
;
import
pageJavascript
from
'./pageJavascript.vue'
;
import
collectionTable
from
'./collectionTable.vue'
;
import
collectionTable
from
'./collectionTable.vue'
;
import
collectionForm
from
'./collectionForm.vue'
;
import
actions
from
'./actions.vue'
;
import
actions
from
'./actions.vue'
;
export
{
pageNavigate
,
elClick
,
sysSleep
,
onInput
,
elOutput
,
pageJavascript
,
collectionTable
,
actions
};
export
{
pageNavigate
,
elClick
,
sysSleep
,
onInput
,
elOutput
,
pageJavascript
,
collectionTable
,
collectionForm
,
actions
};
\ No newline at end of file
\ No newline at end of file
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