Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sample-form-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
sample-form-platform
Commits
5e7e0f04
Commit
5e7e0f04
authored
Dec 07, 2022
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修改页面布局
parent
4eef1e24
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
19 deletions
+28
-19
sample-form-client-ui/admin/src/assets/css/common.css
sample-form-client-ui/admin/src/assets/css/common.css
+11
-0
sample-form-client-ui/admin/src/components/MateralsList.vue
sample-form-client-ui/admin/src/components/MateralsList.vue
+1
-1
sample-form-client-ui/admin/src/components/SearchBox.vue
sample-form-client-ui/admin/src/components/SearchBox.vue
+1
-0
sample-form-client-ui/admin/src/pages/searchpage/SearchPage.vue
...-form-client-ui/admin/src/pages/searchpage/SearchPage.vue
+15
-7
sample-form-client-ui/admin/src/pages/showpage/MatterList.vue
...le-form-client-ui/admin/src/pages/showpage/MatterList.vue
+0
-11
No files found.
sample-form-client-ui/admin/src/assets/css/common.css
View file @
5e7e0f04
...
...
@@ -358,4 +358,15 @@
.el-table__body-wrapper
::-webkit-scrollbar-track
{
border-radius
:
6px
;
background
:
#fff
;
}
.matter-fullName
{
display
:
inline-block
;
width
:
86px
;
height
:
30px
;
text-align
:
center
;
line-height
:
30px
;
margin-right
:
6px
;
background
:
#dfe9fb
;
border-radius
:
4px
;
color
:
var
(
--main-theme-color1
);
}
\ No newline at end of file
sample-form-client-ui/admin/src/components/MateralsList.vue
View file @
5e7e0f04
...
...
@@ -8,7 +8,7 @@
}}
个)
</span
>
<span
class=
"matter-name flex1 flexwrap"
>
事项
名称:
<span
v-html=
"matterInfo.matter
Name"
></span>
>
事项
全称:
<span
v-html=
"matterInfo.matterFull
Name"
></span>
</span>
</div>
<!-- 列表 -->
...
...
sample-form-client-ui/admin/src/components/SearchBox.vue
View file @
5e7e0f04
...
...
@@ -53,6 +53,7 @@ export default {
<
style
lang=
"less"
scoped
>
.search-box {
box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.1);
border-radius: 8px;
position: relative;
}
.search-btn {
...
...
sample-form-client-ui/admin/src/pages/searchpage/SearchPage.vue
View file @
5e7e0f04
...
...
@@ -38,11 +38,12 @@
v-html="matter.matterName"
>
</div>
<div
class=
"name"
>
{{
matter
.
matterFullName
}}
<span
class=
"matter-fullName"
>
事项全称
</span
>
{{
matter
.
matterFullName
}}
</div>
<div
class=
"materials flex aic"
v-for=
"(item, index) in matter.matterDatumList"
v-for=
"(item, index) in matter.matterDatumList
.slice(0, 3)
"
:key=
"item.id"
>
<i
class=
"iconfont icon-dot"
></i>
...
...
@@ -59,7 +60,7 @@
<span
class=
"count"
>
{{
`${
v
.matterDatumList && matter.matterDatumList.length
matter
.matterDatumList && matter.matterDatumList.length
}
份材料`
}}
<
/span
>
...
...
@@ -183,7 +184,7 @@ export default {
}
.
main
{
padding
:
0
px
40
px
;
padding
-
bottom
:
4
0
px
;
padding
-
bottom
:
3
0
px
;
.
data
-
count
{
color
:
#
ff0000
;
}
...
...
@@ -191,6 +192,7 @@ export default {
.
matter
-
box
{
width
:
100
%
;
padding
:
30
px
;
padding
-
bottom
:
10
px
;
background
:
#
ffffff
;
border
-
radius
:
16
px
;
.
matter
-
list
{
...
...
@@ -207,9 +209,9 @@ export default {
}
.
matter
-
item
{
width
:
426
px
;
height
:
2
0
0
px
;
height
:
2
1
0
px
;
padding
:
10
px
20
px
;
margin
-
bottom
:
3
4
px
;
margin
-
bottom
:
3
0
px
;
background
:
#
edf6fe
;
border
-
radius
:
16
px
;
position
:
relative
;
...
...
@@ -254,13 +256,19 @@ export default {
-
webkit
-
line
-
clamp
:
2
;
overflow
:
hidden
;
}
.
material
-
name
{
display
:
inline
-
block
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
.
materials
{
font
-
size
:
18
px
;
font
-
family
:
Source
Han
Sans
CN
;
color
:
#
333333
;
line
-
height
:
28
px
;
.
isMore
{
max
-
width
:
2
9
0
px
;
max
-
width
:
2
7
0
px
;
}
.
count
{
color
:
#
2878
ff
;
...
...
sample-form-client-ui/admin/src/pages/showpage/MatterList.vue
View file @
5e7e0f04
...
...
@@ -247,17 +247,6 @@ export default {
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
.matter-fullName {
display: inline-block;
width: 86px;
height: 30px;
text-align: center;
line-height: 30px;
margin-right: 6px;
background: #dfe9fb;
border-radius: 4px;
color: var(--main-theme-color1);
}
}
.materials {
...
...
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