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
6b5ec9d2
Commit
6b5ec9d2
authored
Nov 19, 2023
by
高源
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
采集表动作界面优化
parent
2e4c4efe
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
collectionTable.vue
src/components/collectionTable.vue
+0
-0
sdk-table.js
src/sdk-table.js
+3
-3
No files found.
src/components/collectionTable.vue
View file @
6b5ec9d2
This diff is collapsed.
Click to expand it.
src/sdk-table.js
View file @
6b5ec9d2
...
...
@@ -14,9 +14,9 @@ function table () {
* 新生成一个单元格
* @param {any} xpath
*/
this
.
newCell
=
function
(
xpath
)
{
this
.
newCell
=
function
(
xpath
,
name
)
{
_isVerified
=
false
;
//加入了
let
newCell
=
new
cell
(
xpath
);
let
newCell
=
new
cell
(
xpath
,
name
);
this
.
cells
.
push
(
newCell
);
}
/**
...
...
@@ -101,7 +101,7 @@ function table () {
* @param {string} type 元素取值类型,文本,链接,元素路径(点击动作用)
* @param {string} title 标题信息
*/
function
cell
(
xpath
,
name
=
""
,
type
=
""
,
title
=
""
)
{
function
cell
(
xpath
,
name
,
type
=
""
,
title
=
""
)
{
/**当前单元格的绝对路径,存入Action时有用 */
this
.
xpath
=
xpath
;
/**当前单元格存储数据时的属性名 */
...
...
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