|
@@ -87,19 +87,43 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+<%-- <div class="layui-col-xs6 layui-col-sm6 layui-col-md3">--%>
|
|
|
+<%-- <div class="layui-form-item" style="height:28px;">--%>
|
|
|
+<%-- <label class="layui-form-label">建设性质</label>--%>
|
|
|
+<%-- <div class="layui-input-block">--%>
|
|
|
+<%-- <div id="propKind" name="propKind"></div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
<div class="layui-col-xs6 layui-col-sm6 layui-col-md3">
|
|
|
<div class="layui-form-item" style="height:28px;">
|
|
|
- <label class="layui-form-label">建设性质</label>
|
|
|
+ <label class="layui-form-label">项目属地</label>
|
|
|
<div class="layui-input-block">
|
|
|
- <div id="propKind" name="propKind"></div>
|
|
|
+<%-- <div id="propKind" name="propKind"></div>--%>
|
|
|
+ <select name="subjectId">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <c:forEach items="${JSDD }" var="hy">
|
|
|
+ <option value="${hy.code }">${hy.title }</option>
|
|
|
+ </c:forEach>
|
|
|
+ </select>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="layui-col-xs6 layui-col-sm6 layui-col-md3">
|
|
|
<div class="layui-form-item" style="height:28px;">
|
|
|
- <label class="layui-form-label">所属行业</label>
|
|
|
+ <label class="layui-form-label">行业类别</label>
|
|
|
<div class="layui-input-block">
|
|
|
- <div id="indusKind" name="indusKind"></div>
|
|
|
+<%-- <div id="indusKind" name="indusKind"></div>--%>
|
|
|
+ <select name="indusKind" v-model="indusKind" id="indusKind">
|
|
|
+ <option value="">请选择</option>
|
|
|
+ <c:forEach items="${HYFL }" var="hy">
|
|
|
+ <option value="${hy.code }">${hy.title}
|
|
|
+ <c:forEach items="${hy.children }" var="hy2">
|
|
|
+ <option value="${hy2.code }">  ${hy2.title}
|
|
|
+ </c:forEach>
|
|
|
+ </option>
|
|
|
+ </c:forEach>
|
|
|
+ </select>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -338,23 +362,34 @@
|
|
|
value: formatwdate
|
|
|
});
|
|
|
|
|
|
- var seleDatas = [], jsxz = [], xmlx = [];
|
|
|
- <c:forEach items="${HYFL }" var="hy">
|
|
|
- seleDatas.push({value:'${hy.id}',name:'${hy.title}'});
|
|
|
- </c:forEach>
|
|
|
- this.indusKind = layui.xmSelect.render({
|
|
|
- el:'#indusKind',
|
|
|
- language:'zn',
|
|
|
- data: seleDatas
|
|
|
- });
|
|
|
- <c:forEach items="${JSXZ}" var="js">
|
|
|
- jsxz.push({value: '${js.code}', name:'${js.title}'});
|
|
|
- </c:forEach>
|
|
|
- this.propKind = layui.xmSelect.render({
|
|
|
- el:'#propKind',
|
|
|
- language:'zn',
|
|
|
- data: jsxz
|
|
|
- });
|
|
|
+ var seleDatas = [], jsxz = [], xmlx = [], jsdd = [];
|
|
|
+<%-- <c:forEach items="${HYFL }" var="hy">--%>
|
|
|
+<%-- seleDatas.push({value:'${hy.id}',name:'${hy.title}'});--%>
|
|
|
+<%-- </c:forEach>--%>
|
|
|
+<%-- this.indusKind = layui.xmSelect.render({--%>
|
|
|
+<%-- el:'#indusKind',--%>
|
|
|
+<%-- language:'zn',--%>
|
|
|
+<%-- data: seleDatas--%>
|
|
|
+<%-- });--%>
|
|
|
+
|
|
|
+<%-- <c:forEach items="${JSXZ}" var="js">--%>
|
|
|
+<%-- jsxz.push({value: '${js.code}', name:'${js.title}'});--%>
|
|
|
+<%-- </c:forEach>--%>
|
|
|
+<%-- this.propKind = layui.xmSelect.render({--%>
|
|
|
+<%-- el:'#propKind',--%>
|
|
|
+<%-- language:'zn',--%>
|
|
|
+<%-- data: jsxz--%>
|
|
|
+<%-- });--%>
|
|
|
+
|
|
|
+<%-- <c:forEach items="${JSDD}" var="js">--%>
|
|
|
+<%-- jsdd.push({value: '${js.code}', name:'${js.title}'});--%>
|
|
|
+<%-- </c:forEach>--%>
|
|
|
+<%-- this.propKind = layui.xmSelect.render({--%>
|
|
|
+<%-- el:'#propKind',--%>
|
|
|
+<%-- language:'zn',--%>
|
|
|
+<%-- data: jsdd--%>
|
|
|
+<%-- });--%>
|
|
|
+
|
|
|
<c:forEach items="${XMLX}" var="xm">
|
|
|
xmlx.push({value: '${xm.code}', name: '${xm.title}'});
|
|
|
</c:forEach>
|
|
@@ -699,8 +734,8 @@
|
|
|
},
|
|
|
search : function(){
|
|
|
var param = layui.form.getValue("searchForm");
|
|
|
- param.indusKind = this.indusKind.getValue("valueStr");
|
|
|
- param.propKind = this.propKind.getValue("valueStr");
|
|
|
+ // param.indusKind = this.indusKind.getValue("valueStr");
|
|
|
+ // param.propKind = this.propKind.getValue("valueStr");
|
|
|
param.kind = this.kind.getValue("valueStr");
|
|
|
param.status =$("input[name='status']:checked").val();
|
|
|
this.pageNo = 1;
|