From 394e04ba31f0822255862033b8dffef17530495c Mon Sep 17 00:00:00 2001
From: zhangyongtian <1181606322@qq.com>
Date: Fri, 13 Sep 2024 22:49:01 +0800
Subject: [PATCH] fix: 受理跳转办理页面为空白的bug
---
gz-customerSystem/src/styles/public.less | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 107 insertions(+), 4 deletions(-)
diff --git a/gz-customerSystem/src/styles/public.less b/gz-customerSystem/src/styles/public.less
index 9eb7bac..d54605e 100644
--- a/gz-customerSystem/src/styles/public.less
+++ b/gz-customerSystem/src/styles/public.less
@@ -1,8 +1,10 @@
@import './theme.less';
+
@font-face {
font-family: siYuanHeiTi;
src: url('../assets/font/SourceHanSansCN-Regular-2.otf');
}
+
@font-face {
font-family: AlibabaPuHuiTi;
src: url('../assets/font/Alibaba_PuHuiTi_2.0_55_Regular_85_Bold.ttf');
@@ -10,6 +12,11 @@
@font-face {
font-family: DingTalk;
+ src: url('../assets/font/DingTalk_JinBuTi_Regular.ttf');
+}
+
+@font-face {
+ font-family: DouYu;
src: url('../assets/font/DingTalk_JinBuTi_Regular.ttf');
}
@@ -94,9 +101,11 @@
height: 8px;
background-color: #dfdfdf;
}
+
::-webkit-scrollbar-track {
background-color: @bg-color;
}
+
::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: #dfdfdf;
@@ -124,7 +133,7 @@
}
// table 标题不缩略
-.ant-table-thead > tr > th {
+.ant-table-thead>tr>th {
white-space: inherit;
}
@@ -250,11 +259,12 @@
.public-a-no {
cursor: no-drop;
- color: #d9d9d9;
+ color: #d9d9d9;
}
.public-span {
position: relative;
+
&::before {
content: '';
position: absolute;
@@ -648,8 +658,9 @@
line-height: 20px;
border-radius: 2px;
padding: 0 4px;
- display: flex;
- align-items: center;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
&-blue {
background: #e6f7ff;
@@ -741,3 +752,95 @@
color: #ffcf5c;
font-size: 22px;
}
+
+//字节弹窗
+.arco-modal {
+ border-radius: 0;
+ width: 900px;
+
+ .arco-modal-header {
+ padding: 0 16px;
+
+ .arco-modal-title {
+ text-align: left;
+ font-size: 16px;
+ font-family: PingFang SC, PingFang SC-400;
+ font-weight: 400;
+ color: #1d2129;
+ }
+ }
+
+ .arco-modal-content {
+ padding: 16px;
+ max-height: 700px;
+ }
+
+ .arco-modal-close-icon {
+ width: 20px;
+ height: 20px;
+ background: #86909C;
+ border-radius: 50%;
+ top: 14px;
+ right: 16px;
+
+ .arco-icon {
+ color: #fff;
+ width: 16px;
+ height: 16px;
+ left: 2px;
+ top: 2px;
+ }
+
+ &:hover {
+ .arco-icon {
+ color: #86909C;
+ }
+ }
+ }
+}
+
+//字节对话框
+.arco-modal-simple {
+ width: 400px;
+
+ .arco-modal-header {
+ padding: 0;
+ margin-bottom: 0;
+ }
+
+ .arco-modal-footer {
+ text-align: right;
+ margin-top: 0;
+ }
+}
+
+//弹窗底部按钮
+.dialogFooter {
+ width: 100%;
+ margin-top: 16px;
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+
+ .dialogPrimary {
+ margin-right: 16px;
+ }
+
+ .dialogBack {}
+}
+
+// .arco-btn-primary:not(.arco-btn-disabled) {
+// background-color: @main-color;
+
+// &:hover {
+// background-color: @main-color;
+// }
+// }
+
+.arco-btn-primary:not(.arco-btn-disabled) {
+ background-color: @main-color;
+}
+
+.arco-btn-primary:not(.arco-btn-disabled):not(.arco-btn-loading):hover {
+ background-color: @main-color;
+}
\ No newline at end of file
--
Gitblit v1.8.0