|
@@ -286,8 +286,8 @@
|
|
|
<label>新分配机构:</label>
|
|
|
<form:select path="newDeal" class="input-medium">
|
|
|
<form:option value="" label="请选择"/>
|
|
|
- <form:option value="0">否</form:option>
|
|
|
<form:option value="1">是</form:option>
|
|
|
+ <form:option value="2">否</form:option>
|
|
|
</form:select>
|
|
|
</div>
|
|
|
<div class="item">
|
|
@@ -357,21 +357,21 @@
|
|
|
</td>
|
|
|
<td>
|
|
|
<c:if test="${empty list.auditText}">
|
|
|
- <c:if test="${list.status eq 1}"><span style="color: #00aa00">已审核 </span></c:if>
|
|
|
- <c:if test="${list.status eq 2}"><span style="color: red">待审核</span></c:if>
|
|
|
+ <c:if test="${list.status eq 1}"><span style="color: red">待审核</span></c:if>
|
|
|
+ <c:if test="${list.status eq 2}"><span style="color: #00aa00">已审核 </span></c:if>
|
|
|
<c:if test="${list.status eq 3}">审核未通过</c:if>
|
|
|
</c:if>
|
|
|
<c:if test="${not empty list.auditText}">
|
|
|
- <c:if test="${list.status eq 1}"><a href="javascript:void(0)" onclick="audit('${list.auditText}')" style="color: #00aa00">已审核</a></c:if>
|
|
|
- <c:if test="${list.status eq 2}"><a href="javascript:void(0)" onclick="audit(${list.auditText})" style="color: red">待审核</a></c:if>
|
|
|
- <c:if test="${list.status eq 3}"><a href="javascript:void(0)" onclick="audit(${list.auditText})">审核未通过</a></c:if>
|
|
|
+ <c:if test="${list.status eq 1}"><a href="javascript:void(0)" onclick="audit('${list.auditText}')" style="color: red;text-decoration: underline;">待审核</a></c:if>
|
|
|
+ <c:if test="${list.status eq 2}"><a href="javascript:void(0)" onclick="audit('${list.auditText}')" style="color: #00aa00;text-decoration: underline;">已审核</a></c:if>
|
|
|
+ <c:if test="${list.status eq 3}"><a href="javascript:void(0)" onclick="audit('${list.auditText}')" style="text-decoration: underline;">审核未通过</a></c:if>
|
|
|
</c:if>
|
|
|
|
|
|
</td>
|
|
|
<td>${list.auditName} </td>
|
|
|
<td>${list.auditTime}</td>
|
|
|
<td>
|
|
|
- <a href="javascript:void(0)" onclick="auditShop(${list.reportId})">审核</a>
|
|
|
+ <c:if test="${list.status eq 1}"> <a href="javascript:void(0)" onclick="auditShop(${list.reportId})">审核</a></c:if>
|
|
|
<a href="${ctx}/new/user/agency/cmRegistReportList?reportID=${list.reportId}">查看</a>
|
|
|
<a href="javascript:void(0)" onclick="deleteReport(${list.reportId})">删除</a>
|
|
|
</td>
|
|
@@ -394,7 +394,7 @@
|
|
|
+ " <div class='bd-row'>"
|
|
|
+ " <span><font color='red'>*</font>审核:</span>"
|
|
|
+ " <select name='auditStatus' id='auditStatus'>"
|
|
|
- + " <option value='1'>审核通过</option>"
|
|
|
+ + " <option value='2'>审核通过</option>"
|
|
|
+ " <option value='3'>审核未通过</option>"
|
|
|
+ " <select/>"
|
|
|
+ " </div>"
|
|
@@ -402,7 +402,7 @@
|
|
|
+ " <div class='bd-row'>"
|
|
|
+ " <span></span>"
|
|
|
+ " <div class='auditNote'>"
|
|
|
- + " <textarea name='auditNote' placeholder='不超过200个字'></textarea>"
|
|
|
+ + " <textarea name='auditNote' maxlength='200' placeholder='不超过200个字'></textarea>"
|
|
|
+ " </div>"
|
|
|
+ " </div>"
|
|
|
+ " </div>"
|
|
@@ -422,7 +422,7 @@
|
|
|
console.log(data.success)
|
|
|
console.log(true == data.success)
|
|
|
if (true == data.success) {
|
|
|
- $.jBox.confirm(htmls, "提示") ;
|
|
|
+ $.jBox.confirm("该报备未关联任何咨询记录,无需审核。", "提示") ;
|
|
|
|
|
|
}else {
|
|
|
location.reload()
|