| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title>活动反馈</title>
- <style>
- .line {
- display: block;
- text-align: left;
- background-color: #fff;
- color: #333;
- border-bottom: 1px solid #0a6999;
- border-color: #fff;
- border-bottom: 1px solid #0a6999;
- margin-top: 10px;
- vertical-align: middle;
- padding: 4px 12px;
- height: 31px;
- line-height: 31px;
- font-size: 14px;
- font-weight: bold;
- }
- .star-bar-show.size-M{width:120px;height:24px}
- .star-bar-show.size-M,.star-bar-show.size-M .star{background-size:24px}
- .star-bar-show.size-M .star{ height:24px}
- .star-bar-show.size-S .star{ height:16px}
- </style>
- </head>
- <body layout:fragment="content">
- <article class="page-container">
- <div class="line">企业基本情况</div>
- <div class="row cl">
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2" style="text-align: right"> 活动名称:</label>
- <div class="formControls col-xs-8 col-sm-4">
- <span>[[${detail.activity_title}]]</span>
- </div>
- <label class="form-label col-xs-4 col-sm-2" style="text-align: right"> 活动状态:</label>
- <div class="formControls col-xs-8 col-sm-4">
- <span>[[${detail.activity_status_str}]]</span>
- </div>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2" style="text-align: right"> 活动时间:</label>
- <div class="formControls col-xs-8 col-sm-4">
- <span>[[${detail.activity_starttime}]]</span>
- </div>
- <label class="form-label col-xs-4 col-sm-2" style="text-align: right"> 活动地点:</label>
- <div class="formControls col-xs-8 col-sm-4">
- <span>[[${detail.activity_location}]]</span>
- </div>
- </div>
- </div>
- <div class="line">报名信息</div>
- <table class="table table-border table-bordered table-bg table-hover" style="table-layout: fixed;width:100%;">
- <thead>
- <tr class="text-c">
- <!--<th width="25"><input type="checkbox"></th>-->
- <th>姓名</th>
- <th>手机</th>
- <th>邮箱</th>
- <th>职位</th>
- <th width="160">报名时间</th>
- <th>状态</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="m,iterStat:${registration.list}">
- <!--<td><input type="checkbox"></td>-->
- <td class="title" th:text="${m.name}" th:title="${m.name}"></td>
- <td th:text="${m.phone}"></td>
- <td th:text="${m.mail}"></td>
- <td th:text="${m.position}"></td>
- <td th:text="${#dates.format(m.registration_time,'yyyy-MM-dd HH:mm:ss')}"></td>
- <td th:text="${m.review_state}"></td>
- </tr>
- </tbody>
- </table>
- <div th:replace="admin/common/page :: page"></div>
- <div class="line" th:if="${feedback.feedback_type != null}">反馈信息</div>
- <div class="row cl" th:if="${feedback.feedback_type != null}">
- <div class="row cl">
- <div class="clearfix">
- <label class="form-label col-xs-4 col-sm-2" style="text-align: right">活动评分:</label>
- <div class="star-bar star-bar-show size-M f-l va-m mr-10">
- <span class="star" id="star"></span>
- </div>
- <strong class="f-l f-14 va-m">您的评分是[[${feedback.feedback_type}]] 分</strong>
- </div>
- </div>
- <div class="row cl" style="padding: 20px 0;">
- <label class="form-label col-xs-4 col-sm-2" style="text-align: right">反馈内容:</label>
- <div class="formControls col-xs-8 col-sm-9">
- <textarea style="width: 100%; height: 200px; padding: 10px;"
- name="content" id="content" th:utext="${feedback.content}"></textarea>
- </div>
- </div>
- </div>
- <div class="row cl" style="text-align: center">
- <a onclick="removeIframe();" class="btn btn-default radius">返回</a>
- </div>
- </article>
- <script th:inline="javascript">
- /**
- * 取消
- */
- function removeIframe() {
- var index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);
- }
- var feedback_type = [[${feedback.feedback_type}]];
- if (feedback_type != null){
- $("#star").attr("style","width:"+20*feedback_type+"%");
- }
- </script>
- </body>
- </html>
|