From 0dae5b346bbaad739cd8b12d78c0cd56823615cd Mon Sep 17 00:00:00 2001 From: pan <380711010@qq.com> Date: Mon, 2 Sep 2024 13:34:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/tool.css | 61 ++++++++++++++++++++++- src/views/message/index.vue | 2 +- src/views/statistic/index.vue | 13 ++--- src/views/workflowList/workflowRouter.vue | 2 +- 4 files changed, 67 insertions(+), 11 deletions(-) diff --git a/public/css/tool.css b/public/css/tool.css index c9ce2d1..2dc6971 100644 --- a/public/css/tool.css +++ b/public/css/tool.css @@ -1067,6 +1067,59 @@ body .el-drawer .el-drawer__body{ margin: 0; padding-top: 0; } +body .el-drawer .el-drawer__body .drawer-head{ + display: flex; + padding: 10px 32px 10px 32px; + border-bottom: 1px solid rgba(0 0 0 / 5%); + margin: -16px -32px 0 -32px; + position: sticky; + top: -16px; + z-index: 2; + background: #fff; +} +body .el-drawer .el-drawer__body .drawer-head .cell-title{ + display: block; + flex: 1; + color: #141414; + font-size: 18px; + font-weight: 500; +} +body .el-drawer .el-drawer__body .drawer-head .cell-title .title{ + display: block; + color: #141414; + font-size: 18px; + font-weight: 500; + line-height: 34px; +} +body .el-drawer .el-drawer__body .drawer-head .cell-btn{ + display: block; +} +body .iframe-drawer{ + background: #fff; +} +body .iframe-drawer .drawer-head{ + display: flex; + padding: 0 0 10px 0; + border-bottom: 1px solid rgba(0 0 0 / 5%); + position: sticky; + top: 0; + z-index: 2; + background: #fff; +} +body .iframe-drawer .drawer-head .cell-title{ + display: block; + flex: 1; + color: #141414; + font-size: 18px; + font-weight: 500; +} +body .iframe-drawer .drawer-head .cell-title .title{ + display: block; + color: #141414; + font-size: 18px; + font-weight: 500; + line-height: 34px; +} /*pagination-container 分页*/ body .apparatus-card>.el-card__body .el-card.gray-card+.pagination-container{ @@ -1436,13 +1489,17 @@ body .el-radio-button__inner:hover { } /*el-upload 上传按钮组件*/ +body .el-upload+.el-button, +body .el-button+.el-upload{ + margin-left: 10px; +} body .el-upload, body .registerbox .avatar-uploader .el-upload{ background:#fff; border:1px solid #004098; color:#004098 !important; border-radius: 2px; - height: 36px; + height: 34px; } body .el-upload:hover, body .registerbox .avatar-uploader .el-upload:hover{ @@ -1463,6 +1520,8 @@ body .el-upload:hover .el-upload-dragger i{ } body .el-upload .el-button, body .el-upload .el-button:hover{ + height: 32px; + line-height: 30px; border: none !important; background: transparent !important; } diff --git a/src/views/message/index.vue b/src/views/message/index.vue index 5227e8b..ec5ac40 100644 --- a/src/views/message/index.vue +++ b/src/views/message/index.vue @@ -134,7 +134,7 @@ export default { }, getList() { this.loading = true - this.$set(this.queryParams,"createById", this.$store.getters.userId) + this.$set(this.queryParams,"receiverId", this.$store.getters.userId) listMessage(this.queryParams).then(response => { this.total = response?.total this.tableList = response?.rows || [] diff --git a/src/views/statistic/index.vue b/src/views/statistic/index.vue index dde0ced..2052d8a 100644 --- a/src/views/statistic/index.vue +++ b/src/views/statistic/index.vue @@ -1,7 +1,7 @@