Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
rbc-demo
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
王衍超
rbc-demo
Commits
72a6ad19
Commit
72a6ad19
authored
Feb 21, 2022
by
乔延琦
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop-zhouyi' into 'develop'
Develop zhouyi See merge request GFP/RBC/rbc-frontend!56
parents
9b256d63
9466a075
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
10 deletions
+23
-10
index.vue
develop/@rbc/rbc-login/src/views/login/index.vue
+8
-8
senior-query-mixins.js
...mponents/custom-query/senior-query/senior-query-mixins.js
+11
-1
table-view.vue
...iew/src/components/custom-query/table-view/table-view.vue
+4
-1
No files found.
develop/@rbc/rbc-login/src/views/login/index.vue
View file @
72a6ad19
<
template
>
<div
class=
"login-wrapper"
>
<div
v-if=
"imgLoading"
class=
"white-loading"
></div>
<img
v-if=
"loginImageBg"
:src=
"loginImageBg"
class=
"login-img-bg"
/>
<div
class=
"bg-color-class"
/>
...
...
@@ -154,14 +155,6 @@ export default {
},
},
watch
:
{
imgLoading
(
val
)
{
if
(
val
)
{
this
.
$Spin
.
show
()
}
else
{
this
.
$Spin
.
hide
()
}
}
},
methods
:
{
getImgUrl
(
imgCode
)
{
...
...
@@ -301,6 +294,13 @@ export default {
background-size
:
cover
;
overflow
:
hidden
;
position
:
absolute
;
.white-loading
{
position
:
absolute
;
width
:
100%
;
height
:
100%
;
background-color
:
white
;
z-index
:
2000
;
}
.login-img-bg
{
width
:
100%
;
...
...
develop/@rbc/workflow-job-view/src/components/custom-query/senior-query/senior-query-mixins.js
View file @
72a6ad19
...
...
@@ -103,7 +103,17 @@ let seniorQueryMixins = {
},
computed
:
{
flatSeniorQueryData
()
{
return
this
.
copySeniorQueryData
.
flat
()
const
flatten
=
(
array
)
=>
{
var
flattend
=
[];
(
function
flat
(
array
)
{
array
.
forEach
(
function
(
el
)
{
if
(
Array
.
isArray
(
el
))
flat
(
el
);
else
flattend
.
push
(
el
);
});
})(
array
);
return
flattend
;
}
return
flatten
(
this
.
copySeniorQueryData
)
}
},
methods
:
{
...
...
develop/@rbc/workflow-job-view/src/components/custom-query/table-view/table-view.vue
View file @
72a6ad19
<
template
>
<div
class=
"tableContentBody"
>
<div
class=
"tableContentBody
workflow-job-view-table
"
>
<custom-table-view
v-if=
"showTableView"
ref=
'table'
...
...
@@ -1731,6 +1731,9 @@ export default {
}
}
.workflow-job-view-table
{
border
:
1px
#e8e8e8
solid
!important
;
}
/*
样式展示为三种:
...
...
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