Commit 3501ef79 by mayunfei

株洲工作桌面跳转连接修改

parent 0fcada5a
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html xmlns:th="http://www.thymeleaf.org">
<%@ page language="java" import="java.util.*,com.founder.model.*" pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%
User user = new User();
user = (User)session.getAttribute("user");
......@@ -187,8 +188,18 @@
<td class="ar">签收状态:</td>
<td colspan="5" class="radil_td">
<input type="radio" name="zlsfqs" checked="checked" value="" class="radio_inp">全部
<input type="radio" name="zlsfqs" value="0" class="radio_inp">未签收
<input type="radio" name="zlsfqs" value="1" class="radio_inp">已签收
<c:if test="${param.zlsfqs == '0'}">
<input type="radio" name="zlsfqs" value="0" checked="checked" class="radio_inp">未签收
<input type="radio" name="zlsfqs" value="1" class="radio_inp">已签收
</c:if>
<c:if test="${param.zlsfqs == '1'}">
<input type="radio" name="zlsfqs" value="0" class="radio_inp">未签收
<input type="radio" name="zlsfqs" value="1" checked="checked" class="radio_inp">已签收
</c:if>
<c:if test="${param.zlsfqs != '1' && param.zlsfqs != '0'}">
<input type="radio" name="zlsfqs" value="0" class="radio_inp">未签收
<input type="radio" name="zlsfqs" value="1" class="radio_inp">已签收
</c:if>
</td>
</tr>
<tr>
......@@ -203,8 +214,18 @@
<td class="ar">回报状态:</td>
<td colspan="5" class="radil_td">
<input type="radio" name="zlsfhb" checked="checked" value="99" class="radio_inp">全部
<input type="radio" name="zlsfhb" value="0" class="radio_inp">未回报
<input type="radio" name="zlsfhb" value="1" class="radio_inp">已回报
<c:if test="${param.zlsfhb == '0'}">
<input type="radio" name="zlsfhb" value="0" checked="checked" class="radio_inp">未回报
<input type="radio" name="zlsfhb" value="1" class="radio_inp">已回报
</c:if>
<c:if test="${param.zlsfhb == '1'}">
<input type="radio" name="zlsfhb" value="0" class="radio_inp">未回报
<input type="radio" name="zlsfhb" value="1" checked="checked" class="radio_inp">已回报
</c:if>
<c:if test="${param.zlsfhb != '1' && param.zlsfhb != '0'}">
<input type="radio" name="zlsfhb" value="0" class="radio_inp">未回报
<input type="radio" name="zlsfhb" value="1" class="radio_inp">已回报
</c:if>
</td>
</tr>
<tr>
......
......@@ -238,7 +238,7 @@
<tr>
<td class="ar">审批状态:</td>
<td colspan="5" class="radil_td">
<input type="radio" name="spsftg" checked="checked" value="${param.spsftg}" class="radio_inp">全部
<input type="radio" name="spsftg" checked="checked" value="" class="radio_inp">全部
<input type="radio" name="spsftg" value="0" class="radio_inp">审批未通过
<input type="radio" name="spsftg" value="1" class="radio_inp">审批通过
<c:if test="${param.spsftg == '2'}">
......
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