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
8e9e4105
Commit
8e9e4105
authored
Nov 28, 2022
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修改页面
parent
481f7b9b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
53 additions
and
11 deletions
+53
-11
sample-form-client-ui/admin/src/components/MateralsList.vue
sample-form-client-ui/admin/src/components/MateralsList.vue
+22
-9
sample-form-client-ui/admin/src/pages/searchpage/SearchPage.vue
...-form-client-ui/admin/src/pages/searchpage/SearchPage.vue
+4
-1
sample-form-client-ui/admin/src/pages/showpage/ShowMaterials.vue
...form-client-ui/admin/src/pages/showpage/ShowMaterials.vue
+14
-1
sample-form-client-ui/admin/src/pages/showpage/components/LeftMenus.vue
...ient-ui/admin/src/pages/showpage/components/LeftMenus.vue
+13
-0
No files found.
sample-form-client-ui/admin/src/components/MateralsList.vue
View file @
8e9e4105
<
template
>
<div>
<el-drawer
size=
"70%"
:visible.sync=
"drawer"
direction=
"rtl"
>
<div
slot=
"title"
class=
"title flex
aic
"
>
<div
slot=
"title"
class=
"title flex"
>
<span
>
材料列表(共
{{
matterInfo
.
matterDatumList
?
matterInfo
.
matterDatumList
.
length
:
0
}}
个)
</span
>
<span
class=
"matter-name"
>
事项名称:
<span
v-html=
"matterInfo.matterName"
></span
>
</span>
<span
class=
"matter-name
flex1 flexwrap
"
>
事项名称:
<span
v-html=
"matterInfo.matterName"
></span
>
</span>
</div>
<!-- 列表 -->
<div
...
...
@@ -110,14 +110,14 @@ export default {
color: #333333;
.matter-name {
display: inline-block;
width: 1000px;
//
width: 1000px;
font-size: 20px;
font-family: Source Han Sans CN;
font-weight: 400
;
line-height: 34px
;
color: #777777;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
//
overflow: hidden;
//
text-overflow: ellipsis;
//
white-space: nowrap;
}
}
.matterDatumList-list {
...
...
@@ -125,6 +125,19 @@ export default {
height: 100%;
align-content: flex-start;
overflow-y: auto;
&::-webkit-scrollbar {
width: 12px;
overflow-y: auto;
}
&::-webkit-scrollbar-thumb {
border-radius: 6px;
background-color: rgba(144, 147, 153, 0.5);
}
&::-webkit-scrollbar-track {
border-radius: 6px;
background: #fff;
}
.list {
content: "";
width: 19%;
...
...
sample-form-client-ui/admin/src/pages/searchpage/SearchPage.vue
View file @
8e9e4105
...
...
@@ -39,7 +39,9 @@
<i
class=
"iconfont icon-dot"
></i>
<span
class=
"material-name"
:class=
"
{ isMore: index === 2
&&
v.matterDatumList.length > 3 }"
:class=
"
{
isMore: index === 2
&&
matter.matterDatumList.length > 3,
}"
>
{{
item
.
materiaFullName
}}
</span>
...
...
@@ -140,6 +142,7 @@ export default {
this
.
matterList
=
data
;
this
.
matterTotal
=
total
;
this
.
matterDatumTotal
=
matterDatumTotal
;
console
.
log
(
data
);
}
,
// 搜索
handleSearch
()
{
...
...
sample-form-client-ui/admin/src/pages/showpage/ShowMaterials.vue
View file @
8e9e4105
...
...
@@ -117,7 +117,7 @@ export default {
active
:
0
,
scale
:
100
,
showSidebar
:
false
,
// 切换侧边弹窗显示
width
:
6
00
,
width
:
8
00
,
};
},
created
()
{
...
...
@@ -185,6 +185,19 @@ export default {
width: 100%;
position: relative;
overflow: auto;
&::-webkit-scrollbar {
width: 12px;
overflow-y: auto;
}
&::-webkit-scrollbar-thumb {
border-radius: 6px;
background-color: rgba(144, 147, 153, 0.5);
}
&::-webkit-scrollbar-track {
border-radius: 6px;
background: #fff;
}
.sidebar-box {
width: 360px;
min-height: 340px;
...
...
sample-form-client-ui/admin/src/pages/showpage/components/LeftMenus.vue
View file @
8e9e4105
...
...
@@ -57,6 +57,19 @@ export default {
height: calc(100vh - 110px);
padding: 15px 0px;
overflow-y: auto;
&::-webkit-scrollbar {
width: 6px;
overflow-y: auto;
}
&::-webkit-scrollbar-thumb {
border-radius: 6px;
background-color: rgba(144, 147, 153, 0.5);
}
&::-webkit-scrollbar-track {
border-radius: 6px;
background: #fff;
}
}
.dept-item {
text-align: center;
...
...
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