Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
patzn-cloud-web-back-soil
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
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
wangweidong
patzn-cloud-web-back-soil
Commits
c071aeeb
Commit
c071aeeb
authored
Jan 08, 2021
by
lichengming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改了检测管理的数据录入
parent
d7ed14b7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
306 additions
and
2 deletions
+306
-2
soil-test.js
api/soil/soil-test.js
+8
-1
ViewGdsData.vue
pages/soil-test-manage/test-input/ViewGdsData.vue
+287
-0
ItemRightList.vue
...s/soil-test-manage/test-input/item-tabs/ItemRightList.vue
+11
-1
No files found.
api/soil/soil-test.js
View file @
c071aeeb
...
...
@@ -182,5 +182,12 @@ export default {
http
.
post
(
'soil/v1/exp_report/page'
,
data
).
then
(
res
=>
res
),
deleteReport
:
data
=>
http
.
delete
(
'soil/v1/exp_report/?ids='
+
data
).
then
(
res
=>
res
),
reportPage
:
data
=>
http
.
post
(
'soil/v1/report/page'
,
data
).
then
(
res
=>
res
)
reportPage
:
data
=>
http
.
post
(
'soil/v1/report/page'
,
data
).
then
(
res
=>
res
),
dataGds
:
data
=>
http
.
get
(
'soil/v1/data_gds/'
+
data
).
then
(
res
=>
res
),
gdsGetMainInfo
:
data
=>
http
.
post
(
'soil/v1/data_gds/get_main_info?sampleCode='
+
data
)
.
then
(
res
=>
res
),
dataGdsDetail
:
data
=>
http
.
post
(
'soil/v1/data_gds_detail/page'
,
data
).
then
(
res
=>
res
)
}
pages/soil-test-manage/test-input/ViewGdsData.vue
0 → 100644
View file @
c071aeeb
This diff is collapsed.
Click to expand it.
pages/soil-test-manage/test-input/item-tabs/ItemRightList.vue
View file @
c071aeeb
...
...
@@ -58,6 +58,7 @@
<CreateReport
ref=
"createModal"
@
on-result-change=
"_certificateSelectExcelBack"
></CreateReport>
<Reason
ref=
"reasonModal"
@
on-result-change=
"_reasonResult"
/>
<Operation
ref=
"Operation"
></Operation>
<ViewGdsData
ref=
"viewGds"
></ViewGdsData>
</div>
</template>
<
script
>
...
...
@@ -73,6 +74,7 @@ import CollectManage from '../CollectManage'
import
CollectFileManage
from
'../CollectFileManage'
import
Reason
from
'../../../../components/base/Reason'
import
Operation
from
'../../../../components/operation/ItemOperation'
import
ViewGdsData
from
'../ViewGdsData'
import
CreateReport
from
'./CreateReport'
export
default
{
components
:
{
...
...
@@ -86,7 +88,8 @@ export default {
CollectFileManage
,
Reason
,
CreateReport
,
Operation
Operation
,
ViewGdsData
},
data
()
{
return
{
...
...
@@ -141,6 +144,7 @@ export default {
],
iconMsg
:
[
{
type
:
'ios-book'
,
id
:
''
,
name
:
'查看原始记录'
},
{
type
:
'ios-list-box'
,
id
:
''
,
name
:
'查看GDS数据'
},
{
type
:
'md-apps'
,
id
:
''
,
name
:
'查看指标'
},
{
type
:
'ios-bookmarks'
,
id
:
''
,
name
:
'查看采集数据'
},
{
type
:
'ios-browsers'
,
id
:
''
,
name
:
'查看采集文件'
},
...
...
@@ -211,6 +215,9 @@ export default {
// this.$Message.warning('未填写原始记录')
// }
break
case
'查看GDS数据'
:
this
.
_viewGdsData
(
data
.
sampleCode
)
break
case
'查看指标'
:
this
.
_indexManage
(
data
)
break
...
...
@@ -232,6 +239,9 @@ export default {
}
})
},
_viewGdsData
(
id
)
{
this
.
$refs
.
viewGds
.
_openEdit
(
id
)
},
_operationRecord
(
id
)
{
this
.
$refs
.
Operation
.
_open
(
id
)
// 操作日志
...
...
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