1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <%var cssPar = {%>
- <link href="${contextPath}/WebPages_170421/css/personal/list.css" rel="stylesheet" type="text/css">
- <%};%>
- <%var jsPar = {%>
- <script type="text/javascript" src="${contextPath}/WebPages_170421/js/personal/list.js"></script>
- <%};%>
- <%layout("/WebPages_170421/personalPages/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
- <div class="container">
- <div class="conent">
- <span class="nin">您当前的位置:</span>
- <a href="/" class="yiji">首页</a>
- <span class="nin"> > </span>
- <a href="/toindex" class="yiji">个人中心</a>
- <span class="nin"> > </span>
- <a href="${contextPath}/onlineSurvey/getThemeList?pageNumber=1" class="yiji">网上调查管理</a>
- </div>
- </div>
- <div class="container" >
- <% include("/WebPages_170421/personalPages/commonPage/_navigation.html"){} %>
- <div class="Dlrt">
- <a href="${contextPath}/onlineSurvey/toeditOptions?themeId=${themeId}&pageNumber=${pageNumber!1}">
- <input type="button" class="p4" value="添加主题选项">
- </a>
- <div class="table-fa">
- <table border="1" style="border-bottom:1px solid #cccccc; border-left:1px solid #f6f7f8; border-top:1px solid #f6f7f8; border-right:1px solid #cccccc;" width="915px" >
- <thead>
- <tr style="width: 910px; height: 40px; text-align: center; background: #e5f1f9">
- <th>序号</th>
- <th>选项说明</th>
- <th>目前状态</th>
- <th>状态操作</th>
- <th> 操 作 </th>
- </tr>
- </thead>
- <tbody id="t1">
- <%for(tempDate in dateList!){%>
- <tr style=" height: 40px;">
- <td>${tempDateLP.index}</td>
- <td>${tempDate.explains!''}</td>
- <td>
- <%if(tempDate.state == 0){%>
- <font color="blue">开启</font>
- <%}else if(tempDate.state == 1){%>
- <font color="green">未开启</font>
- <%}else if(tempDate.state == 2){%>
- <font color="red">结束</font>
- <%}%>
- </td>
- <td>
- <a href = ${contextPath}/onlineSurvey/editThemeOptionsState?id=${tempDate.id}&themeId=${themeId}&state=${state!0}&pageNumber=${pageNumber!1}&urlParas=${urlParas!''}>开启</a>
- <a href = ${contextPath}/onlineSurvey/editThemeOptionsState?id=${tempDate.id}&themeId=${themeId}&state=${state!1}&pageNumber=${pageNumber!1}&urlParas=${urlParas!''}>关闭</a>
- <a href = ${contextPath}/onlineSurvey/editThemeOptionsState?id=${tempDate.id}&themeId=${themeId}&state=${state!2}&pageNumber=${pageNumber!1}&urlParas=${urlParas!''}>结束</a>
-
- </td>
- <td style="width:110px;">
- <a href="${contextPath}/onlineSurvey/viewThemeOptions?id=${tempDate.id}">
- <div class="btn1" style="margin-left:12px;" title="详情">
- <i class="icon-folder-open-alt"></i>
- </div>
- </a>
- <a href="${contextPath}/onlineSurvey/toeditOptions?id=${tempDate.id}&themeId=${themeId}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
- <div class="btn1" title="编辑">
- <i class="icon-edit"></i>
- </div>
- </a>
- <a href="javascript:" onclick="del()">
- <div class="btn1 bgli" title="删除">
- <i class="icon-trash" ></i>
- </div>
- </a>
- </td>
- </tr>
- <div id="box">
- <p style="width: 200px; height:80px; line-height:80px; text-align: center;">确认删除吗?</p>
- <a href="${contextPath}/onlineSurvey/delOptions?id=${tempDate.id}&themeId=${themeId}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
- <input type="button" onclick="yes()" value="确定" class="delBtn">
- </a>
- <input type="button" onclick="no()" value="取消" class="delBtn m0" >
- </div>
- <%}elsefor{%>
- <tr>
- <td colspan="12">没有记录!</td>
- </tr>
- <%}%>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <%}%>
|