Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
Y
yn-science-front
Project
Project
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
徐俊
yn-science-front
Commits
0b32561d
Commit
0b32561d
authored
5 months ago
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
22
parent
66881409
master
No related merge requests found
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
scoreEdit.vue
src/views/evaluation/components/scoreEdit.vue
+0
-0
Index.vue
src/views/query/project/Index.vue
+12
-2
No files found.
src/views/evaluation/components/scoreEdit.vue
0 → 100644
View file @
0b32561d
This diff is collapsed.
Click to expand it.
src/views/query/project/Index.vue
View file @
0b32561d
...
...
@@ -21,6 +21,7 @@
<a-divider
style=
"height: 1px; background-color: #e8e8e8;"
/>
<div
class=
"submit-btn"
>
<a-button
type=
"primary"
@
click=
"exportData"
icon=
"download"
>
Excel
</a-button>
<a-button
type=
"primary"
@
click=
"scoreClick"
icon=
"download"
>
评分
</a-button>
</div>
<a-table
:dataSource=
"tableData"
:columns=
"columns"
:scroll=
"
{ x: 'max-content' }" rowKey="id" :pagination="false" :loading="loading">
<template
slot=
"projName"
slot-scope=
"record"
>
...
...
@@ -39,6 +40,9 @@
<a-modal
v-model=
"visibleView"
v-if=
"visibleView"
title=
"项目详情"
width=
"94%"
:footer=
"null"
:dialog-style=
"{ top: '8%' }"
destroyOnClose
:maskClosable=
"false"
>
<project-view
v-model=
"id"
@
close=
"closeWindow"
></project-view>
</a-modal>
<a-modal
v-model=
"visibleScore"
v-if=
"visibleScore"
title=
"评分"
width=
"94%"
:footer=
"null"
:dialog-style=
"{ top: '8%' }"
destroyOnClose
:maskClosable=
"false"
>
<score-edit
/>
</a-modal>
</div>
</template>
...
...
@@ -47,13 +51,15 @@ import { getType } from '@/views/utils/auth'
import
moment
from
'moment'
import
{
isEmptyParams
,
filterExportExcelData
,
tableColumnsName
}
from
"@/views/utils/common"
;
import
projectView
from
'@/views/report/project/components/projectView'
import
scoreEdit
from
'@/views/evaluation/components/scoreEdit'
import
paraSelect
from
'@/views/components/common/paraSelect'
import
baseSelect
from
'@/views/components/common/baseSelect'
export
default
{
name
:
'queryProject'
,
components
:
{
projectView
,
projectEdit
,
paraSelect
,
baseSelect
projectView
,
scoreEdit
,
paraSelect
,
baseSelect
},
data
()
{
return
{
...
...
@@ -77,6 +83,7 @@ export default {
loading
:
false
,
// 弹窗标志
visibleView
:
false
,
visibleScore
:
false
,
id
:
null
,
loadState
:
false
}
...
...
@@ -84,6 +91,9 @@ export default {
created
()
{
},
methods
:
{
scoreClick
()
{
this
.
visibleScore
=
true
},
search
()
{
this
.
pagination
.
pageIndex
=
1
this
.
getListByPage
()
...
...
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