Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
web
Project
Project
Details
Activity
Releases
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
中汽测评-信息安全测评系统
web
Commits
8aa30361
Commit
8aa30361
authored
Feb 28, 2024
by
mzx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
审查内容库管理重复提交问题修复
parent
f26f51b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
2 deletions
+30
-2
standardOption.vue
src/components/Page/standardOption.vue
+2
-2
index.vue
src/views/setting/standardTerms/index.vue
+28
-0
No files found.
src/components/Page/standardOption.vue
View file @
8aa30361
...
...
@@ -117,13 +117,13 @@ export default {
list-style-type
:
none
;
margin-top
:
5px
;
padding
:
0
;
width
:
100%
;
li
{
margin
:
10px
0
;
cursor
:
pointer
;
font-size
:
14px
;
color
:
rgb
(
102
,
102
,
102
);
width
:
9
0%
;
width
:
10
0%
;
.standard-item
{
width
:
100%
;
overflow
:
hidden
;
//超出的文本隐藏
...
...
src/views/setting/standardTerms/index.vue
View file @
8aa30361
...
...
@@ -131,6 +131,7 @@ import page from '@/mixins/page'
import
{
mapGetters
}
from
'vuex'
import
vehicleModelDialog
from
'./components/vehicleModelDialog'
import
documentReviewDialog
from
'./components/documentReviewDialog'
import
request
from
'../../../utils/request'
export
default
{
components
:
{
'vehiclemodel-dialog'
:
vehicleModelDialog
,
...
...
@@ -200,6 +201,33 @@ export default {
}
},
methods
:
{
loadData
()
{
if
(
this
.
queryParams
.
standardId
!==
''
)
{
this
.
loading
=
true
request
({
url
:
this
.
listUrl
,
method
:
'post'
,
data
:
this
.
queryParams
})
.
then
(
res
=>
{
if
(
res
.
code
===
200
)
{
console
.
log
(
res
.
rows
)
// res.rows[0].carReviewStatus = 'FINISH'
res
.
rows
[
0
].
reviewStatus
=
'SIGNED'
// res.rows[0].carReviewStatus = 'FINISH'
this
.
tableData
=
res
.
rows
this
.
total
=
res
.
total
}
this
.
loading
=
false
})
.
catch
(
error
=>
{
if
(
error
.
msg
)
{
this
.
$message
.
error
(
error
.
msg
)
}
this
.
loading
=
false
})
}
},
reset
()
{
this
.
queryParams
.
chapter
=
''
this
.
queryParams
.
text
=
''
...
...
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