Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
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
周远喜
mes-ui
Commits
1bd03e6f
Commit
1bd03e6f
authored
Apr 10, 2020
by
康振飞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
width optimization
parent
504ff885
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
approval.vue
pages/crm/statistical/costomer/approval.vue
+1
-1
index.vue
pages/qc/dataTrace/index.vue
+5
-1
No files found.
pages/crm/statistical/costomer/approval.vue
View file @
1bd03e6f
...
...
@@ -31,7 +31,7 @@ export default {
{
key
:
'schemaName'
,
title
:
'类别'
,
align
:
'center'
},
{
key
:
'currentNodeName'
,
title
:
'环节'
,
align
:
'center'
},
{
key
:
'nextNodeName'
,
title
:
'下一环节'
,
align
:
'center'
},
{
key
:
'creationTime'
,
title
:
'创建时间'
,
align
:
'center'
},
{
key
:
'creationTime'
,
title
:
'创建时间'
,
align
:
'center'
,
width
:
'190'
},
{
key
:
'id'
,
title
:
'操作'
,
...
...
pages/qc/dataTrace/index.vue
View file @
1bd03e6f
...
...
@@ -17,7 +17,7 @@
<div
class=
"tableBox mb10"
:style=
"
{height:tbHeight}">
<div
class=
"table"
>
<div
v-if=
"listTask.length==0"
class=
"wu_data"
>
暂无数据
</div>
<Row
:gutter=
"16"
>
<Row
:gutter=
"16"
:style=
"
{width:rowWidth}"
>
<Col
span=
"6"
v-for=
"(item,index) in listTask"
:key=
"index"
>
<Card
class=
"card"
>
<h3
slot=
"title"
>
...
...
@@ -264,6 +264,7 @@ export default {
total
:
0
,
//总数
conditions
:
[]
},
rowWidth
:
''
,
showPagesize
:
[
20
,
50
,
100
],
showModel
:
false
,
list
:
[],
...
...
@@ -381,6 +382,9 @@ export default {
.
then
(
res
=>
{
this
.
listTask
=
res
.
result
.
items
;
this
.
search
.
total
=
res
.
result
.
totalCount
;
if
(
this
.
listTask
.
length
<
4
){
this
.
rowWidth
=
"100%"
}
});
},
searchModel
()
{
...
...
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