记得上下班打卡 | git大法好,push需谨慎

Commit 03321f8b authored by liuran's avatar liuran

修改会员基础信息

parent b5e85a19
......@@ -24,7 +24,8 @@ public class ClientAdminApplication implements CommandLineRunner {
private Environment environment;
public static void main(String[] args) {
// System.setProperty("spring.devtools.restart.enabled", "false");
// System.setProperty("spring.devtoolq.restart.enabled", "false");
// System.setProperty("spring.devtoolq.restart.enabled", "false");
SpringApplication.run(ClientAdminApplication.class, args);
}
......
......@@ -4,7 +4,14 @@
<th:block th:include="include :: header('会员设置')" />
<style type="text/css">.user-info-head{position:relative;display:inline-block;}.user-info-head:hover:after{content:'\f030';position:absolute;left:0;right:0;top:0;bottom:0;color:#eee;background:rgba(0,0,0,0.5);font-family:FontAwesome;font-size:24px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;cursor:pointer;line-height:110px;border-radius:50%;}</style>
</head>
<style>
.avatar_img {
float: left;
}
.text_menber {
height: 100px !important;
}
</style>
<body class="gray-bg" style="font: 14px Helvetica Neue, Helvetica, PingFang SC, 微软雅黑, Tahoma, Arial, sans-serif !important;">
<!--<input id="userId" name="userId" type="hidden" th:value="${user.userId}" />-->
<section class="section-content">
......@@ -33,13 +40,14 @@
<div class="form-group">
<label class="col-sm-2 control-label">会员说明:</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="subTitle" th:field="*{subTitle}" placeholder="简略描述会员功能">
<textarea class="form-control" name="subTitle" th:field="*{subTitle}" placeholder="简略描述会员功能"/>
<!-- <input type="text" class="form-control" name="subTitle" th:field="*{subTitle}" placeholder="简略描述会员功能">-->
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">会员banner:</label>
<div class="text-center">
<p class="user-info-head" onclick="avatar()">
<p class="user-info-head avatar_img" onclick="avatar()">
<img class="img-circle img-lg" th:src="(${#strings.isEmpty(member.avatar)}) ? @{/img/profile.jpg} : @{${member.avatar}}" th:onerror="'this.src=\'' + @{'/img/profile.jpg'} + '\''">
</p>
</div>
......@@ -47,7 +55,7 @@
<div class="form-group">
<label class="col-sm-2 control-label">会员小尾巴:</label>
<div class="text-center">
<p class="user-info-head" onclick="avatar()">
<p class="user-info-head avatar_img" onclick="avatar()">
<img class="img-circle img-lg" th:src="(${#strings.isEmpty(member.icon)}) ? @{/img/log.png} : @{${member.icon}}" th:onerror="'this.src=\'' + @{'/img/log.png'} + '\''">
</p>
</div>
......@@ -68,13 +76,13 @@
<div class="form-group">
<label class="col-sm-2 control-label">会员弹窗文案:</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="interestsDetail" size="10" th:field="*{interestsDetail}">
<textarea class="form-control text_menber" name="interestsDetail" size="10" th:field="*{interestsDetail}"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">注意事项:</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="notes" th:field="*{notes}">
<textarea class="form-control text_menber" name="notes" th:field="*{notes}"/>
</div>
</div>
<div class="form-group">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment