|
|
@@ -21,6 +21,14 @@
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
</select>
|
|
|
</li>
|
|
|
+ <li>
|
|
|
+ <p>审核状态:</p>
|
|
|
+ <select name="status">
|
|
|
+ <option value="">所有</option>
|
|
|
+ <option value="1">已通过</option>
|
|
|
+ <option value="2">已驳回</option>
|
|
|
+ </select>
|
|
|
+ </li>
|
|
|
<li>
|
|
|
<p>企业法人:</p>
|
|
|
<input type="text" name="legalPerson"/>
|
|
|
@@ -63,13 +71,12 @@
|
|
|
</div>
|
|
|
<th:block th:include="include :: footer" />
|
|
|
<script th:inline="javascript">
|
|
|
- var editFlag = [[${@permission.hasPermi('system:examine:edit')}]];
|
|
|
- var removeFlag = [[${@permission.hasPermi('system:examine:remove')}]];
|
|
|
+ var companyTypes = [[${@dict.getType('company_type')}]];
|
|
|
+ var examineStatus = [[${@dict.getType('examine_status')}]];
|
|
|
var prefix = ctx + "companyext/examine";
|
|
|
-
|
|
|
$(function() {
|
|
|
var options = {
|
|
|
- url: prefix + "/list?status=1",
|
|
|
+ url: prefix + "/list",
|
|
|
createUrl: prefix + "/add",
|
|
|
updateUrl: prefix + "/edit/{id}",
|
|
|
removeUrl: prefix + "/remove",
|
|
|
@@ -94,7 +101,11 @@
|
|
|
},
|
|
|
{
|
|
|
field : 'companyType',
|
|
|
- title : '企业类型'
|
|
|
+ title : '企业类型',
|
|
|
+ align: 'center',
|
|
|
+ formatter: function(value, row, index) {
|
|
|
+ return $.table.selectDictLabel(companyTypes, value);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
field : 'legalPerson',
|
|
|
@@ -106,7 +117,11 @@
|
|
|
},
|
|
|
{
|
|
|
field : 'status',
|
|
|
- title : '审核状态'
|
|
|
+ title : '审核状态',
|
|
|
+ align: 'center',
|
|
|
+ formatter: function(value, row, index) {
|
|
|
+ return $.table.selectDictLabel(examineStatus, value);
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
field : 'applyDate',
|