Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
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
fukai
vue-gjjs
Commits
ca569afd
Commit
ca569afd
authored
Oct 15, 2022
by
jianglong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整部分样式
parent
97feadfb
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
207 additions
and
48 deletions
+207
-48
common.css
src/assets/css/common.css
+48
-2
c-page.vue
src/components/c-page.vue
+76
-30
Canp.vue
src/views/Business/Litcan/Canp.vue
+41
-14
index.vue
src/views/Business/index.vue
+2
-0
index.vue
src/views/Layout/index.vue
+40
-2
No files found.
src/assets/css/common.css
View file @
ca569afd
...
@@ -479,4 +479,51 @@
...
@@ -479,4 +479,51 @@
/* 去除表格左右滑动默认圆角 */
/* 去除表格左右滑动默认圆角 */
.el-pagination.is-background
.btn-next
,
.el-pagination.is-background
.btn-prev
,
.el-pagination.is-background
.el-pager
li
{
.el-pagination.is-background
.btn-next
,
.el-pagination.is-background
.btn-prev
,
.el-pagination.is-background
.el-pager
li
{
border-radius
:
0px
;
border-radius
:
0px
;
}
}
\ No newline at end of file
@media
screen
and
(
min-width
:
2561px
)
{
#business_container
.eibs-tab
{
padding
:
25px
20px
;
}
}
@media
screen
and
(
min-width
:
1921px
)
and
(
max-width
:
2560
)
{
#business_container
.eibs-tab
{
padding
:
20px
15px
;
}
}
@media
screen
and
(
min-width
:
1441px
)
and
(
max-width
:
1920px
)
{
#business_container
.eibs-tab
{
padding
:
20px
10px
;
}
}
@media
screen
and
(
min-width
:
1200px
)
and
(
max-width
:
1440px
)
{
#business_container
.eibs-tab
{
padding
:
20px
5px
;
}
}
@media
screen
and
(
max-width
:
1199px
)
{
#business_container
.eibs-tab
{
padding
:
20px
5px
;
}
}
.el-checkbox
{
float
:
right
;
text-align
:
center
;
}
.checkbox-left
{
float
:
left
;
margin-left
:
120px
;
}
src/components/c-page.vue
View file @
ca569afd
<
template
>
<
template
>
<div
class=
"c-page-container"
>
<div
class=
"c-page-container"
>
<!--
<div
class=
"title"
v-if=
"showTitle"
>
<!--
<div
class=
"title"
v-if=
"showTitle"
>
<i
class=
"el-icon-location"
style=
"color: #409eff;"
></i>
<i
class=
"el-icon-location"
style=
"color: #409eff;"
></i>
<span>
{{
title
}}
</span>
<span>
{{
title
}}
</span>
</div>
-->
</div>
-->
<div
style=
"flex: 1; padding: 0px 15px 5px; position: relative
"
>
<div
class=
"c-page-container-div
"
>
<slot></slot>
<slot></slot>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
export
default
{
export
default
{
props
:
[
"title"
],
props
:
[
"title"
],
computed
:
{
computed
:
{
// showTitle() {
// showTitle() {
// return this.$route.path.startsWith('/review');
// return this.$route.path.startsWith('/review');
// }
// }
}
}
};
};
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
.title
{
.title
{
margin
:
0
;
margin
:
0
;
padding
:
8px
;
padding
:
8px
;
padding-left
:
20px
;
padding-left
:
20px
;
font-size
:
14px
;
font-size
:
14px
;
border-bottom
:
1px
solid
var
(
--darkbgcolor
);
border-bottom
:
1px
solid
var
(
--darkbgcolor
);
background-color
:
var
(
--darkbgcolor
);
background-color
:
var
(
--darkbgcolor
);
}
}
.c-page-container
{
.c-page-container
{
height
:
100%
;
height
:
100%
;
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
/* overflow-x: hidden; */
/* overflow-x: hidden; */
overflow
:
inherit
;
overflow
:
inherit
;
}
}
.fast-button
{
.fast-button
{
display
:
flex
;
display
:
flex
;
flex-direction
:
row
;
flex-direction
:
row
;
...
@@ -51,20 +52,66 @@ export default {
...
@@ -51,20 +52,66 @@ export default {
right
:
0px
;
right
:
0px
;
}
}
.fast-button
.el-button
{
.fast-button
.el-button
{
border
:
none
;
border
:
none
;
border-radius
:
0px
;
border-radius
:
0px
;
margin-left
:
0px
!important
;
margin-left
:
0px
!important
;
background-color
:
#1561e0
;
background-color
:
#1561e0
;
color
:
white
;
color
:
white
;
border-right
:
solid
1px
;
border-right
:
solid
1px
;
position
:
relative
;
position
:
relative
;
height
:
25px
;
height
:
25px
;
}
}
.fast-button
.el-button
:focus
,
.fast-button
.el-button
:hover
{
.fast-button
.el-button
:focus
,
.fast-button
.el-button
:hover
{
background
:
white
;
background
:
white
;
border-color
:
white
;
border-color
:
white
;
color
:
#1561e0
;
color
:
#1561e0
;
}
}
</
style
>
\ No newline at end of file
.c-page-container-div
{
flex
:
1
;
padding
:
0px
15px
5px
;
position
:
relative
}
@media
screen
and
(
min-width
:
2561px
)
{
.c-page-container-div
{
padding
:
0px
20px
5px
;
}
}
@media
screen
and
(
min-width
:
1921px
)
and
(
max-width
:
2560
)
{
.c-page-container-div
{
padding
:
0px
15px
5px
;
}
}
@media
screen
and
(
min-width
:
1441px
)
and
(
max-width
:
1920px
)
{
.c-page-container-div
{
padding
:
0px
10px
5px
;
}
}
@media
screen
and
(
min-width
:
1200px
)
and
(
max-width
:
1440px
)
{
.c-page-container-div
{
padding
:
0px
5px
5px
;
}
}
@media
screen
and
(
max-width
:
1199px
)
{
.c-page-container-div
{
padding
:
0px
5px
5px
;
}
}
</
style
>
src/views/Business/Litcan/Canp.vue
View file @
ca569afd
...
@@ -14,13 +14,13 @@
...
@@ -14,13 +14,13 @@
</el-form-item>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"
10
"
>
<c-col
:span=
"
9
"
>
<el-form-item
label=
""
label-width=
"10px"
prop=
"lidgrp.cbs.nom1.amt"
>
<el-form-item
label=
""
label-width=
"10px"
prop=
"lidgrp.cbs.nom1.amt"
>
<c-input
disabled
v-model=
"model.lidgrp.cbs.nom1.amt"
placeholder=
"请输入开证金额"
></c-input>
<c-input
disabled
v-model=
"model.lidgrp.cbs.nom1.amt"
placeholder=
"请输入开证金额"
></c-input>
</el-form-item>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"
4
"
>
<c-col
:span=
"
5
"
>
<c-checkbox
disabled
v-model=
"model.litp0.aammod.addamtflg"
>
附加金额
</c-checkbox>
<c-checkbox
disabled
v-model=
"model.litp0.aammod.addamtflg"
>
附加金额
</c-checkbox>
</c-col>
</c-col>
<c-col
:span=
"10"
>
<c-col
:span=
"10"
>
...
@@ -29,13 +29,13 @@
...
@@ -29,13 +29,13 @@
</el-form-item>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"
10
"
>
<c-col
:span=
"
9
"
>
<el-form-item
label=
""
label-width=
"10px"
prop=
"lidgrp.cbs.opn1.amt"
>
<el-form-item
label=
""
label-width=
"10px"
prop=
"lidgrp.cbs.opn1.amt"
>
<c-input
disabled
v-model=
"model.lidgrp.cbs.opn1.amt"
placeholder=
"请输入金额"
></c-input>
<c-input
disabled
v-model=
"model.lidgrp.cbs.opn1.amt"
placeholder=
"请输入金额"
></c-input>
</el-form-item>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"
4
"
>
<c-col
:span=
"
5
"
>
<c-checkbox
disabled
v-model=
"model.lidgrp.rec.revflg"
>
循环信用证
</c-checkbox>
<c-checkbox
disabled
v-model=
"model.lidgrp.rec.revflg"
>
循环信用证
</c-checkbox>
...
@@ -129,18 +129,45 @@
...
@@ -129,18 +129,45 @@
</el-form-item>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"16"
>
<c-col
:span=
"24"
>
<el-form-item
label=
"叙述内容"
prop=
"litcanf.strinf"
>
<el-form-item
label=
"叙述内容"
prop=
"litcanf.strinf"
>
<c-input
type=
"textarea"
<c-fullbox>
:rows=
"3"
<c-input
v-model=
"model.litcanf.strinf"
maxlength=
"50"
show-word-limit
placeholder=
"请输入Narrative"
></c-input>
type=
"textarea"
</el-form-item>
v-model=
"model.litcanf.strinf"
</c-col>
row=
"3"
maxlength=
"50"
show-word-limit
placeholder=
"请输入叙述内容"
></c-input>
<template
slot=
"footer"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-search"
@
click=
"onIlccanletButtxmsel"
></c-button>
</
template
>
</c-fullbox>
</el-form-item>
</c-col>
<c-col
:span=
"8"
>
<c-col
:span=
"24"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-search"
@
click=
"onIlccanletButtxmsel"
>
<c-checkbox
class=
"checkbox-left"
v-model=
"model.byinst"
>
关于申请人的指示
</c-checkbox>
</c-button>
<c-checkbox
v-model=
"model.byinst"
>
关于申请人的指示
</c-checkbox>
</c-col>
</c-col>
</el-col>
</el-col>
...
...
src/views/Business/index.vue
View file @
ca569afd
...
@@ -59,9 +59,11 @@ export default {
...
@@ -59,9 +59,11 @@ export default {
background-color
:
unset
;
background-color
:
unset
;
box-shadow
:
unset
;
box-shadow
:
unset
;
}
}
/*
#business_container .eibs-tab {
#business_container .eibs-tab {
padding: 40px;
padding: 40px;
}
}
*/
#business_container
.eibs
::after
,
#business_container
.eibs-tab
::after
{
#business_container
.eibs
::after
,
#business_container
.eibs-tab
::after
{
content
:
""
;
content
:
""
;
display
:
block
;
display
:
block
;
...
...
src/views/Layout/index.vue
View file @
ca569afd
...
@@ -250,6 +250,44 @@ export default {
...
@@ -250,6 +250,44 @@ export default {
box-sizing
:
border-box
;
box-sizing
:
border-box
;
}
}
@media
screen
and
(
min-width
:
2561px
)
{
.el-aside
{
width
:
240px
!important
;
}
}
@media
screen
and
(
min-width
:
1921px
)
and
(
max-width
:
2560
)
{
.el-aside
{
width
:
200px
!important
;
}
}
@media
screen
and
(
min-width
:
1441px
)
and
(
max-width
:
1920px
)
{
.el-aside
{
width
:
190px
!important
;
}
}
@media
screen
and
(
min-width
:
1200px
)
and
(
max-width
:
1440px
)
{
.el-aside
{
width
:
170px
!important
;
}
}
@media
screen
and
(
max-width
:
1199px
)
{
.el-aside
{
width
:
150px
!important
;
}
}
.m-draggable
{
.m-draggable
{
border-radius
:
2px
;
border-radius
:
2px
;
border
:
1px
solid
#ccc
;
border
:
1px
solid
#ccc
;
...
@@ -274,9 +312,9 @@ export default {
...
@@ -274,9 +312,9 @@ export default {
width
:
1000
;
width
:
1000
;
padding
:
10px
20px
10px
20px
;
padding
:
10px
20px
10px
20px
;
z-index
:
10000
!important
;
z-index
:
10000
!important
;
background-color
:
#
409eff
;
background-color
:
#
1561e0
;
/* border:0px; */
/* border:0px; */
border
:
1px
solid
#
409eff
;
border
:
1px
solid
#
1561e0
;
}
}
.m-draggable-content
{
.m-draggable-content
{
height
:
420px
;
height
:
420px
;
...
...
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