Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qa-platform-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
QA
qa-platform-ui
Commits
20dc9568
Commit
20dc9568
authored
Nov 09, 2021
by
晓彤
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新提测页面
parent
0ae15c2a
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
411 additions
and
1 deletion
+411
-1
TestDesciption.js
src/api/TestDesciption.js
+16
-0
index.js
src/router/index.js
+9
-1
menu.json
src/views/layout/leftAside/menu.json
+6
-0
Notify.vue
src/views/qa/Notify.vue
+0
-0
TestDescription.vue
src/views/qa/TestDescription.vue
+380
-0
No files found.
src/api/TestDesciption.js
0 → 100644
View file @
20dc9568
import
holmesRequest
from
'
@/utils/holmesRequest
'
export
function
getTestDescriptionList
(
queryInfo
)
{
return
holmesRequest
({
url
:
'
/quality/testInstruction/list
'
,
method
:
'
get
'
,
params
:
queryInfo
})
}
// 新增提测文档接口
export
function
addTestDescription
(
data
)
{
return
holmesRequest
({
url
:
'
/quality/testInstruction/save
'
,
method
:
'
post
'
,
data
})
}
src/router/index.js
View file @
20dc9568
...
@@ -19,7 +19,7 @@ import LoginWhiteList from '../views/yxm/LoginWhiteList'
...
@@ -19,7 +19,7 @@ import LoginWhiteList from '../views/yxm/LoginWhiteList'
import
ProjectList
from
'
../views/auto/ProjectList
'
import
ProjectList
from
'
../views/auto/ProjectList
'
import
ModelList
from
'
../views/auto/ModelList
'
import
ModelList
from
'
../views/auto/ModelList
'
import
InterfaceList
from
'
../views/auto/InterfaceList
'
import
InterfaceList
from
'
../views/auto/InterfaceList
'
import
JiraNotify
from
'
../views/
jir
a/Notify
'
import
JiraNotify
from
'
../views/
q
a/Notify
'
import
RiskControl
from
'
../views/vcc/RiskControl
'
import
RiskControl
from
'
../views/vcc/RiskControl
'
import
ClearCache
from
'
../views/yxm/ClearCache
'
import
ClearCache
from
'
../views/yxm/ClearCache
'
import
ClearData
from
'
../views/yxm/ClearData
'
import
ClearData
from
'
../views/yxm/ClearData
'
...
@@ -57,6 +57,8 @@ import DataIndex from '../views/confluence/DataIndex'
...
@@ -57,6 +57,8 @@ import DataIndex from '../views/confluence/DataIndex'
import
DataList
from
'
../views/confluence/DataList
'
import
DataList
from
'
../views/confluence/DataList
'
// 新添加绑定收货地址页面(2021-10-26)
// 新添加绑定收货地址页面(2021-10-26)
import
BindAddress
from
'
../views/yxm/BindAddress
'
import
BindAddress
from
'
../views/yxm/BindAddress
'
// 新添加提测说明功能页面(2021-10-29)
import
TestDescription
from
'
../views/qa/TestDescription
'
const
originalPush
=
Router
.
prototype
.
push
const
originalPush
=
Router
.
prototype
.
push
Router
.
prototype
.
push
=
function
push
(
location
)
{
Router
.
prototype
.
push
=
function
push
(
location
)
{
return
originalPush
.
call
(
this
,
location
).
catch
(
err
=>
err
)
return
originalPush
.
call
(
this
,
location
).
catch
(
err
=>
err
)
...
@@ -302,6 +304,12 @@ const router = new Router({
...
@@ -302,6 +304,12 @@ const router = new Router({
path
:
'
/yxm/bindAddress
'
,
path
:
'
/yxm/bindAddress
'
,
name
:
'
数据列表
'
,
name
:
'
数据列表
'
,
component
:
BindAddress
component
:
BindAddress
},
// 绑定收获地址表页(2021-10-26)
{
path
:
'
/qa/testDescription
'
,
name
:
'
提测说明
'
,
component
:
TestDescription
}
}
]
]
}
}
...
...
src/views/layout/leftAside/menu.json
View file @
20dc9568
...
@@ -257,6 +257,12 @@
...
@@ -257,6 +257,12 @@
"title"
:
"测试流程"
,
"title"
:
"测试流程"
,
"icon"
:
"iconfont icon-process"
,
"icon"
:
"iconfont icon-process"
,
"path"
:
"/qa/process"
"path"
:
"/qa/process"
},
{
"id"
:
2
,
"title"
:
"提测说明"
,
"icon"
:
"iconfont icon-process"
,
"path"
:
"/qa/testDescription"
}
}
]
]
},
},
...
...
src/views/
jir
a/Notify.vue
→
src/views/
q
a/Notify.vue
View file @
20dc9568
File moved
src/views/qa/TestDescription.vue
0 → 100644
View file @
20dc9568
This diff is collapsed.
Click to expand it.
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