备案logo以及备案首页开发

This commit is contained in:
clunt 2022-04-20 17:33:56 +08:00
parent 4cb7e800ec
commit fd140c6b3b
9 changed files with 63 additions and 24 deletions

View File

@ -16,7 +16,9 @@ body.signin {
}
.signinpanel .logopanel {
float:none;
width:auto;
/*width:auto;*/
width: 121px;
height: 75px;
padding:0;
background:0 0
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -3,8 +3,8 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>登录工圈子系统</title>
<meta name="description" content="工圈子后台管理框架">
<title>登录叮咚工链系统</title>
<meta name="description" content="叮咚工链后台管理框架">
<link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
<link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>
<link href="../static/css/style.min.css" th:href="@{/css/style.min.css}" rel="stylesheet"/>
@ -26,16 +26,16 @@
<div class="col-sm-7">
<div class="signin-info">
<div class="logopanel m-b">
<h1><img alt="[ 工圈子 ]" src="../static/ruoyi.png" th:src="@{/ruoyi.png}"></h1>
<h1>[ 叮咚工链 ]</h1>
</div>
<div class="m-b"></div>
<h4>欢迎使用 <strong>工圈子 后台管理系统</strong></h4>
<h4>欢迎使用 <strong>叮咚工链 后台管理系统</strong></h4>
<ul class="m-b">
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> SpringBoot</li>
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Mybatis</li>
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Shiro</li>
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Thymeleaf</li>
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Bootstrap</li>
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 再多平方米</li>
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 不如我懂你</li>
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 叮咚工链</li>
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 在你需要的时候</li>
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 总在您身边</li>
</ul>
<strong th:if="${isAllowRegister}">还没有账号? <a th:href="@{/register}">立即注册&raquo;</a></strong>
</div>
@ -65,7 +65,7 @@
</div>
<div class="signup-footer">
<div class="pull-left">
Copyright © 2018-2021 ruoyi.vip All Rights Reserved. <br>
Copyright © 2018-2021 opsoul.com All Rights Reserved. <br>
</div>
</div>
</div>

View File

@ -0,0 +1,11 @@
package com.ghy.order.domain;
/**
* @author clunt
* 细单表(转派后产生的订单)
*/
public class OrderDetail {
}

View File

@ -0,0 +1,15 @@
package com.ghy.order.domain;
import com.ghy.common.core.domain.BaseEntity;
import lombok.Data;
/**
* @author clunt
* 主单表(对应付款订单)
*/
@Data
public class OrderMaster extends BaseEntity {
private static final long serialVersionUID = 1L;
}

View File

@ -1,13 +0,0 @@
package com.ghy.payment;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class PaymentApplication {
public static void main(String[] args) {
SpringApplication.run(PaymentApplication.class, args);
}
}

View File

@ -0,0 +1,10 @@
package com.ghy.payment.domain;
import com.ghy.common.core.domain.BaseEntity;
/**
* @author clunt
* 财务细单(分佣)
*/
public class FinancialDetail extends BaseEntity {
}

View File

@ -0,0 +1,13 @@
package com.ghy.payment.domain;
import com.ghy.common.core.domain.BaseEntity;
/**
* @author clunt
* 财务单主单(对应付款)
*/
public class FinancialMaster extends BaseEntity {
}

View File

@ -0,0 +1 @@
package com.ghy.payment;