This commit is contained in:
zhutianqi
2021-10-09 15:03:45 +08:00
parent b8c62e58d0
commit 8bc327553c
15 changed files with 45 additions and 18 deletions
-1
View File
@@ -793,7 +793,6 @@ tr.el-table__row{
} }
.iconfont { .iconfont {
font-size: 12px; font-size: 12px;
margin-right: 5px;
} }
.dept-popover { .dept-popover {
padding: 0; padding: 0;
-1
View File
@@ -129,7 +129,6 @@
align-items: center; align-items: center;
.iconfont { .iconfont {
font-size: 22px; font-size: 22px;
margin-right: 5px;
} }
& > img{ & > img{
width: 25px; width: 25px;
+6
View File
@@ -489,6 +489,9 @@
box-sizing: border-box; box-sizing: border-box;
background: rgb(255, 255, 255); background: rgb(255, 255, 255);
background-size: 100% 100%; background-size: 100% 100%;
/deep/.el-tooltip {
padding: 0px 16px !important;
}
.left-tree { .left-tree {
height: calc(~'100% - 95px'); height: calc(~'100% - 95px');
overflow-y: auto; overflow-y: auto;
@@ -537,6 +540,7 @@
display: none; /* Chrome Safari */ display: none; /* Chrome Safari */
} }
.el-menu-item { .el-menu-item {
padding: 0 16px !important;
span { span {
font-weight: normal; font-weight: normal;
margin-left: 5px; margin-left: 5px;
@@ -570,6 +574,7 @@
} }
.el-submenu { .el-submenu {
/deep/.el-submenu__title { /deep/.el-submenu__title {
padding: 0 16px !important;
span { span {
font-weight: normal; font-weight: normal;
margin-left: 5px; margin-left: 5px;
@@ -612,6 +617,7 @@
} }
} }
.el-menu--collapse{ .el-menu--collapse{
width: 100%;
.shangqi-icon{ .shangqi-icon{
width: 24px; width: 24px;
height: 24px; height: 24px;
+24 -10
View File
@@ -1,32 +1,37 @@
<template> <template>
<div class="wx-card" @click="toPage"> <div class="wx-card" @click="toPage">
<div style=""> <div>
<div> <div>
<i class="icon" :class="icon" /> <i class="icon" :class="icon" />
</div> </div>
<div style="margin-top: 10px;"> <div v-if="label">
<span class="card-font">{{ label }}</span> <span class="card-font">{{ label }}</span>
</div> </div>
<div v-else>
<div class="labelNull">
<i class="el-icon-circle-plus-outline"></i>
</div>
</div>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: 'EnterCard', name: 'EnterCard',
props: ['icon', 'label', 'path'], props: ['icon', 'label', 'path'],
methods: { methods: {
toPage() { toPage() {
this.$router.push(this.path) this.$router.push(this.path)
}
} }
} }
}
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.wx-card { .wx-card {
width: 214px; width: 214px;
line-height: 88px; line-height: 70px;
text-align: center; text-align: center;
background: rgba(182, 213, 255, 0.22); background: rgba(182, 213, 255, 0.22);
margin-left: 10px; margin-left: 10px;
@@ -36,4 +41,13 @@ export default {
align-items: center; align-items: center;
cursor: pointer; cursor: pointer;
} }
.labelNull {
height: 100%;
display: flex;
align-items: center;
.el-icon-circle-plus-outline {
font-size: 50px;
color: #F4F4F4;
}
}
</style> </style>
@@ -4,7 +4,7 @@
<div class="title">友情链接</div> <div class="title">友情链接</div>
<ul> <ul>
<li v-for="(link, index) in linkList" v-if="index<5" :key="index" @click="openLinkUrl(link.url)"> <li v-for="(link, index) in linkList" v-if="index<5" :key="index" @click="openLinkUrl(link.url)">
<a v-if="link.name.length>13" v-html="link.name.substring(0,13)+'...'" :title="link.name"></a> <a v-if="link.name.length>10" v-html="link.name.substring(0,10)+'...'" :title="link.name"></a>
<a v-else v-html="link.name" :title="link.name"></a> <a v-else v-html="link.name" :title="link.name"></a>
</li> </li>
<li> <li>
+2 -1
View File
@@ -13,7 +13,7 @@
ref="selection" ref="selection"
:data="standardReleaseList" :data="standardReleaseList"
tooltip-effect="dark" tooltip-effect="dark"
style="width: 100%;padding:0 0 20px 0;" style="padding:0 0 20px 0;"
border border
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
style="width: 100%"> style="width: 100%">
@@ -96,6 +96,7 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.release { .release {
width: 100%;
.time-title { .time-title {
margin: 15px; margin: 15px;
.time { .time {
@@ -13,7 +13,7 @@
ref="selection" ref="selection"
:data="domesticDynamics" :data="domesticDynamics"
tooltip-effect="dark" tooltip-effect="dark"
style="width: 100%;padding:0 0 20px 0;" style="padding:0 0 20px 0;"
border border
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
style="width: 100%"> style="width: 100%">
@@ -90,7 +90,7 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.solicitopinions { .solicitopinions {
height: 100%; height: 100%;
width: 100%;
.time-title { .time-title {
margin: 15px; margin: 15px;
color: #333333; color: #333333;
@@ -37,7 +37,7 @@ export default {
queryProcess () { // 查询待办流程 queryProcess () { // 查询待办流程
this.$http.postData('lawss/activiti/todoTaskList', { this.$http.postData('lawss/activiti/todoTaskList', {
current: this.pageNo, current: this.pageNo,
size: parseInt(this.$store.getters.userInfo.configContent), size: 10,
userId: this.$store.getters.userInfo.usid || this.$store.getters.userInfo.userId, userId: this.$store.getters.userInfo.usid || this.$store.getters.userInfo.userId,
}, },
{ {
+3 -1
View File
@@ -117,7 +117,7 @@ export default {
display: flex; display: flex;
flex: 1; flex: 1;
flex-direction: column; flex-direction: column;
width: 53.5vw; width: 48vw;
height: calc(~'100% - 10px'); height: calc(~'100% - 10px');
margin-right: 10px; margin-right: 10px;
.more { .more {
@@ -157,8 +157,10 @@ export default {
background:#FFFFFF; background:#FFFFFF;
.main-left-wrap { .main-left-wrap {
height: 100%; height: 100%;
width: 100%;
.home-tabs { .home-tabs {
height: 100%; height: 100%;
width: 100%;
} }
} }
} }
@@ -66,6 +66,7 @@
border border
style="width: 100%; flex: auto;" style="width: 100%; flex: auto;"
class="drag-table" class="drag-table"
:default-sort = "{prop: 'chapterNumber', order: 'ascending'}"
:header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}"> fontWeight: 'bold', height: '48px'}">
<el-table-column <el-table-column
@@ -66,6 +66,7 @@
border border
style="width: 100%; flex: auto;" style="width: 100%; flex: auto;"
class="drag-table" class="drag-table"
:default-sort = "{prop: 'chapterNumber', order: 'ascending'}"
:header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}"> fontWeight: 'bold', height: '48px'}">
<el-table-column <el-table-column
@@ -78,6 +78,7 @@
border border
style="width: 100%; flex: auto;" style="width: 100%; flex: auto;"
class="drag-table" class="drag-table"
:default-sort = "{prop: 'chapterNumber', order: 'ascending'}"
:header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}"> fontWeight: 'bold', height: '48px'}">
<el-table-column <el-table-column
@@ -78,6 +78,7 @@
border border
style="width: 100%; flex: auto;" style="width: 100%; flex: auto;"
class="drag-table" class="drag-table"
:default-sort = "{prop: 'chapterNumber', order: 'ascending'}"
:header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}"> fontWeight: 'bold', height: '48px'}">
<el-table-column <el-table-column
@@ -78,6 +78,7 @@
border border
style="width: 100%; flex: auto;" style="width: 100%; flex: auto;"
class="drag-table" class="drag-table"
:default-sort = "{prop: 'chapterNumber', order: 'ascending'}"
:header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}"> fontWeight: 'bold', height: '48px'}">
<el-table-column <el-table-column
@@ -78,6 +78,7 @@
border border
style="width: 100%; flex: auto;" style="width: 100%; flex: auto;"
class="drag-table" class="drag-table"
:default-sort = "{prop: 'chapterNumber', order: 'ascending'}"
:header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#E8E8E8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}"> fontWeight: 'bold', height: '48px'}">
<el-table-column <el-table-column