|
@@ -240,18 +240,37 @@
|
|
|
::-webkit-scrollbar-corner {
|
|
|
background: #f6f6f6;
|
|
|
}
|
|
|
+
|
|
|
.ant-modal-body {
|
|
|
- height: 500px !important;
|
|
|
- overflow: scroll;
|
|
|
-}
|
|
|
+ margin-left: 5%;
|
|
|
+ max-height: calc(80vh - 70px);
|
|
|
+ overflow-y: auto;
|
|
|
+ &::-webkit-scrollbar {
|
|
|
+ width: 6px;
|
|
|
+ /*高宽分别对应横竖滚动条的尺寸*/
|
|
|
+ height: 1px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-scrollbar-thumb {
|
|
|
+ // -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
|
+ background: #e3e3e6;
|
|
|
+ border-radius: 6px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-scrollbar-track {
|
|
|
+ background: transparent;
|
|
|
+ // -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
|
+ border-radius: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
/* 滚动条优化 end */
|
|
|
</style>
|
|
|
|
|
|
<script>
|
|
|
window._CONFIG = {};
|
|
|
- //window._CONFIG['domianURL'] = 'http://127.0.0.1:8090/jeecg-boot'; // 本地测试
|
|
|
+ window._CONFIG['domianURL'] = 'http://127.0.0.1:8090/jeecg-boot'; // 本地测试
|
|
|
// window._CONFIG['domianURL'] = 'http://106.15.206.14:8087/jeecg-boot';// 测试服务器
|
|
|
- window._CONFIG['domianURL'] = 'http://220.191.168.86:18087/jeecg-boot';// 森语外网
|
|
|
+ // window._CONFIG['domianURL'] = 'http://220.191.168.86:18087/jeecg-boot';// 森语外网
|
|
|
window._CONFIG['casPrefixUrl'] = 'http://cas.example.org:8443/cas';
|
|
|
window._CONFIG['onlinePreviewDomainURL'] = 'http://fileview.jeecg.com/onlinePreview'
|
|
|
window._CONFIG['staticDomainURL'] = window._CONFIG['domianURL'] + '/sys/common/static';
|