调整配置、样式与背景图片
This commit is contained in:
parent
6915341dd8
commit
81ae64a415
Binary file not shown.
After Width: | Height: | Size: 915 KiB |
Binary file not shown.
Before Width: | Height: | Size: 915 KiB After Width: | Height: | Size: 1.0 MiB |
@ -7,6 +7,9 @@
|
||||
<title th:text="${systemTitle}"></title>
|
||||
<link rel="stylesheet" href="assets/custom/index/css/swiper.min.css?t=1">
|
||||
<link rel="stylesheet" href="assets/custom/index/css/style.css?t=1">
|
||||
<style>
|
||||
.swiper-slide a {position: unset;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
@ -21,14 +24,16 @@
|
||||
<div class="swiper-container">
|
||||
<div class="swiper-wrapper">
|
||||
<div class="swiper-slide" th:each="oAuth2Client: ${listOAuth2Client}">
|
||||
<a th:href="${oAuth2Client.webServerRedirectUri}" class="guide-box">
|
||||
<div class="guide-box">
|
||||
<div class="slide-box">
|
||||
<img th:if="${oAuth2Client.systemIcon ne ''}" th:src="'route/file/download/false/'+ ${oAuth2Client.systemIcon}" alt="">
|
||||
<img th:if="${oAuth2Client.systemIcon eq ''}" src="assets/custom/index/images/system.png"/>
|
||||
<div class="system-name" th:text="${oAuth2Client.clientName}"></div>
|
||||
<div class="system-name-small" th:text="${oAuth2Client.environment}"></div>
|
||||
<a th:href="${oAuth2Client.webServerRedirectUri}">
|
||||
<img th:if="${oAuth2Client.systemIcon ne ''}" th:src="'route/file/download/false/'+ ${oAuth2Client.systemIcon}" alt="">
|
||||
<img th:if="${oAuth2Client.systemIcon eq ''}" src="assets/custom/index/images/system.png"/>
|
||||
<div class="system-name" th:text="${oAuth2Client.clientName}"></div>
|
||||
<!--<div class="system-name-small" th:text="${oAuth2Client.environment}"></div>-->
|
||||
</a>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper-pagination"></div>
|
||||
@ -54,6 +59,7 @@
|
||||
delay: 3000,
|
||||
disableOnInteraction : false
|
||||
},
|
||||
slideToClickedSlide: true,
|
||||
pagination: {
|
||||
el: '.swiper-pagination',
|
||||
clickable: true,
|
||||
|
Loading…
Reference in New Issue
Block a user