Browse Source

项目发布人

liliang4869 7 years ago
parent
commit
545982307f

+ 0 - 1
src/main/java/com/goafanti/business/controller/UserJtBusinessController.java

@@ -142,7 +142,6 @@ public class UserJtBusinessController extends CertifyApiController{
 	@RequestMapping(value="/category/list",method=RequestMethod.GET)
 	private Result getCategoryList(JtBusinessCategory jtBusinessCategory,Integer pageNo,Integer pageSize) {
 		Result result=new Result();
-	
 		 result.setData(JtBusinessServiceWithCategoryMapper.getCategoryListByCondition(jtBusinessCategory,pageNo,pageSize));
 		 return result;
 	}

+ 250 - 246
src/main/java/com/goafanti/business/service/impl/JtBusinessServiceImpl.java

@@ -1,246 +1,250 @@
-package com.goafanti.business.service.impl;
-
-import java.util.Date;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.UUID;
-
-import org.apache.poi.poifs.property.Child;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Service;
-
-import com.goafanti.business.bo.JtBusinessCategoryBo;
-import com.goafanti.business.bo.JtBusinessCategoryTree;
-import com.goafanti.business.service.JtBusinessService;
-import com.goafanti.common.dao.JtBusinessCategoryMapper;
-import com.goafanti.common.dao.JtBusinessProjectMapper;
-import com.goafanti.common.model.JtBusinessCategory;
-import com.goafanti.common.model.JtBusinessProject;
-import com.goafanti.common.utils.StringUtils;
-import com.goafanti.core.mybatis.BaseMybatisDao;
-import com.goafanti.core.mybatis.page.Pagination;
-
-@Service
-public class JtBusinessServiceImpl  extends BaseMybatisDao<JtBusinessProjectMapper> implements JtBusinessService{
-	@Autowired
-	JtBusinessCategoryMapper jtBusinessCategoryMapper;
-	@Autowired
-	JtBusinessProjectMapper jtBusinessProjectMapper;
-	@Override
-	public JtBusinessCategory getBusinessCategoryByLayerAndName(Integer layer, String name) {
-		// TODO Auto-generated method stub
-		return jtBusinessCategoryMapper.getBusinessCategoryByLayerAndName(layer, name);
-	}
-
-	@Override
-	public List<JtBusinessCategory> getBusinessCategoryBySuperId(String id,Integer size) {
-		// TODO Auto-generated method stub
-		return jtBusinessCategoryMapper.getBusinessCategoryBySuperId(id,size);
-	}
-
-	@Override
-	public List<JtBusinessProject> getBusinessProjectByCategoryId(String id,Integer size) {
-		// TODO Auto-generated method stub
-		return jtBusinessProjectMapper.getBusinessProjectByCategoryId(id,size);
-	}
-
-	@Override
-	public JtBusinessProject getBusinessProjectDetail(String id) {
-		// TODO Auto-generated method stub
-		return jtBusinessProjectMapper.selectByPrimaryKey(id);
-	}
-
-	@Override
-	public JtBusinessCategoryTree getCategoryTree(String id) {
-		// TODO Auto-generated method stub
-		return jtBusinessCategoryMapper.getCategoryTree(id);
-	}
-	
-	public List<JtBusinessCategoryBo>getCategoryBoList(){
-		return jtBusinessCategoryMapper.getCategoryBoList();
-	}
-
-	@SuppressWarnings("unchecked")
-	@Override
-	public Pagination<JtBusinessProject> getProjects(String topId, String secondId, String name, Integer pageSize,
-			Integer pageNo) {
-		// TODO Auto-generated method stub
-		if (pageNo == null || pageNo < 0) {
-			pageNo = 1;
-		}
-
-		if (pageSize == null || pageSize < 0 ) {
-			pageSize = 10;
-		} 
-		
-		return (Pagination<JtBusinessProject>)findPage("findJtBusinessProjectByPage","findJtBusinessCountByPage",disposeParams(topId, secondId, name),pageNo,pageSize);
-	}
-	private Map<String, Object> disposeParams(String topId, String secondId,  String name) {
-		Map<String, Object> params = new HashMap<>();
-
-		if (StringUtils.isNotBlank(topId)) {
-			params.put("topId", topId);
-		}
-
-		if (StringUtils.isNotBlank(secondId)) {
-			params.put("secondId", secondId);
-		}
-
-	
-		if (StringUtils.isNotBlank(name)) {
-			params.put("name", name);
-		}
-
-		
-		return params;
-	}
-
-	@Override
-	public int insertCategory(JtBusinessCategory jtBusinessCategory) {
-		// TODO Auto-generated method stub
-//		jtBusinessCategoryMapper.autoIncreaseSort(jtBusinessCategory.getLayer(),jtBusinessCategory.getSort()); 
-		if(jtBusinessCategory.getSuperId()!=null && jtBusinessCategory.getLayer().intValue()==1 && jtBusinessCategory.getSuperId().length()>0)return -2;
-		String number="BC";
-		if(jtBusinessCategory.getLayer().intValue()==2) {
-			//2层,先加第一层
-			//找到当前品类父级品类
-			JtBusinessCategory sp=jtBusinessCategoryMapper.selectByPrimaryKey(jtBusinessCategory.getSuperId());
-			if(sp==null || sp.getLayer()!=1) {
-				//找到的父级品类层数不是1 或者未找到
-				return -2;
-			}
-			//加前层
-			//父级品类层数为1的情况下 第一层编号为父级sort序号
-			int size1=sp.getSort();
-			if(size1>99)return -1;
-			if(size1<10)number+="0";
-			number+=size1;
-		}
-		
-		
-		//加层
-		int size2;
-		//通过父级id获取当前层列表
-		List<JtBusinessCategory>businessCategories =jtBusinessCategoryMapper.getBusinessCategoryBySuperId(jtBusinessCategory.getSuperId(), null);
-		//列表为0,当前层编号size2设置为1,大于0 设置为当前最大sort+1
-		if(businessCategories.size()>0)
-		 size2=businessCategories.get(businessCategories.size()-1).getSort()+1;
-		else size2=1;
-		//每层最多99个
-		if(size2>99)return -1;
-		//增加0
-		if(size2<10)number+="0";
-		//完成编号
-		number+=size2;
-		jtBusinessCategory.setNumber(number);
-		//设置sort序号
-		jtBusinessCategory.setSort(size2);
-		jtBusinessCategory.setCreateTime(new Date());
-		jtBusinessCategory.setId(UUID.randomUUID().toString());
-		return jtBusinessCategoryMapper.insertSelective(jtBusinessCategory);
-	}
-
-	@Override
-	public int deleteCategoryById(String id) {
-		// TODO Auto-generated method stub
-		//查找品类
-		JtBusinessCategory sp=jtBusinessCategoryMapper.selectByPrimaryKey(id);
-		//查找子品类 存在子品类不允许删除
-		List<JtBusinessCategory> chidren=jtBusinessCategoryMapper.getBusinessCategoryBySuperId(sp.getId(), null);
-		if(chidren.size()>0) {
-			return -1;
-		}
-		List<JtBusinessProject> childrenProject=jtBusinessProjectMapper.getBusinessProjectByCategoryId(id, 100);
-		if(childrenProject!= null && childrenProject.size()>0) {
-			return -1;
-		}
-		return jtBusinessCategoryMapper.deleteByPrimaryKey(id);
-	}
-
-	@Override
-	public JtBusinessCategory getCategoryById(String id) {
-		// TODO Auto-generated method stub
-		return jtBusinessCategoryMapper.selectByPrimaryKey(id);
-	}
-
-	@Override
-	public int updateCategory(JtBusinessCategory jtBusinessCategory) {
-		// TODO Auto-generated method stub
-		return jtBusinessCategoryMapper.updateByPrimaryKeySelective(jtBusinessCategory);
-	}
-
-	
-	
-	private Map<String, Object> disposeCategoryParams(String name,Integer layer ) {
-		Map<String, Object> params = new HashMap<>();
-
-		if (layer!=null) {
-			params.put("layer", layer);
-		}
-
-	
-
-	
-		if (StringUtils.isNotBlank(name)) {
-			params.put("name", name);
-		}
-
-		
-		return params;
-	}
-
-	@Override
-	public int insertProject(JtBusinessProject jtBusinessProject) {
-		// TODO Auto-generated method stub
-		jtBusinessProject.setCreateTime(new Date());
-		jtBusinessProject.setId(UUID.randomUUID().toString());
-		List<JtBusinessProject>projects=jtBusinessProjectMapper.findProjectOrderByNumber();
-		int cSize = 1;
-		if(projects!=null && projects.size()>0)
-		{
-			String number=projects.get(projects.size()-1).getNumber();
-			if(number!=null && number.length()==6)
-			{
-				String nbString=number.substring(2);
-				try {
-				cSize=Integer.parseInt(nbString)+1;}catch (Exception e) {
-					// TODO: handle exception
-					return -1;
-				}
-			}
-			else cSize=1;
-		}
-		else cSize=1;
-	
-		String nbString="BP";
-		String sizeString="000"+cSize;
-		sizeString=sizeString.substring(sizeString.length()-4);
-		nbString+=sizeString;
-		jtBusinessProject.setNumber(nbString);
-		jtBusinessProjectMapper.insertSelective(jtBusinessProject);
-		return 1;
-	}
-
-	@Override
-	public int deleteProjectById(String id) {
-		// TODO Auto-generated method stub
-		return jtBusinessProjectMapper.deleteByPrimaryKey(id);
-	}
-
-	@Override
-	public int updateProject(JtBusinessProject jtBusinessProject) {
-		// TODO Auto-generated method stub
-		return jtBusinessProjectMapper.updateByPrimaryKeySelective(jtBusinessProject);
-	}
-
-	@Override
-	public List<JtBusinessProject> getProjectsLimit(Integer size) {
-		// TODO Auto-generated method stub
-		return jtBusinessProjectMapper.findProjectOrderByNumber();
-	}
-
-
-
-	
-}
+package com.goafanti.business.service.impl;
+
+import java.util.Date;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.UUID;
+
+import org.apache.poi.poifs.property.Child;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.goafanti.business.bo.JtBusinessCategoryBo;
+import com.goafanti.business.bo.JtBusinessCategoryTree;
+import com.goafanti.business.service.JtBusinessService;
+import com.goafanti.common.dao.JtBusinessCategoryMapper;
+import com.goafanti.common.dao.JtBusinessProjectMapper;
+import com.goafanti.common.model.JtBusinessCategory;
+import com.goafanti.common.model.JtBusinessProject;
+import com.goafanti.common.utils.StringUtils;
+import com.goafanti.core.mybatis.BaseMybatisDao;
+import com.goafanti.core.mybatis.page.Pagination;
+import com.goafanti.core.shiro.token.TokenManager;
+
+@Service
+public class JtBusinessServiceImpl  extends BaseMybatisDao<JtBusinessProjectMapper> implements JtBusinessService{
+	@Autowired
+	JtBusinessCategoryMapper jtBusinessCategoryMapper;
+	@Autowired
+	JtBusinessProjectMapper jtBusinessProjectMapper;
+	@Override
+	public JtBusinessCategory getBusinessCategoryByLayerAndName(Integer layer, String name) {
+		// TODO Auto-generated method stub
+		return jtBusinessCategoryMapper.getBusinessCategoryByLayerAndName(layer, name);
+	}
+
+	@Override
+	public List<JtBusinessCategory> getBusinessCategoryBySuperId(String id,Integer size) {
+		// TODO Auto-generated method stub
+		return jtBusinessCategoryMapper.getBusinessCategoryBySuperId(id,size);
+	}
+
+	@Override
+	public List<JtBusinessProject> getBusinessProjectByCategoryId(String id,Integer size) {
+		// TODO Auto-generated method stub
+		return jtBusinessProjectMapper.getBusinessProjectByCategoryId(id,size);
+	}
+
+	@Override
+	public JtBusinessProject getBusinessProjectDetail(String id) {
+		// TODO Auto-generated method stub
+		return jtBusinessProjectMapper.selectByPrimaryKey(id);
+	}
+
+	@Override
+	public JtBusinessCategoryTree getCategoryTree(String id) {
+		// TODO Auto-generated method stub
+		return jtBusinessCategoryMapper.getCategoryTree(id);
+	}
+	
+	public List<JtBusinessCategoryBo>getCategoryBoList(){
+		return jtBusinessCategoryMapper.getCategoryBoList();
+	}
+
+	@SuppressWarnings("unchecked")
+	@Override
+	public Pagination<JtBusinessProject> getProjects(String topId, String secondId, String name, Integer pageSize,
+			Integer pageNo) {
+		// TODO Auto-generated method stub
+		if (pageNo == null || pageNo < 0) {
+			pageNo = 1;
+		}
+
+		if (pageSize == null || pageSize < 0 ) {
+			pageSize = 10;
+		} 
+		Map<String, Object> params=disposeParams(topId, secondId, name);
+		params.put("ownerId", TokenManager.getUserId());
+		
+		return (Pagination<JtBusinessProject>)findPage("findJtBusinessProjectByPage","findJtBusinessCountByPage",params,pageNo,pageSize);
+	}
+	private Map<String, Object> disposeParams(String topId, String secondId,  String name) {
+		Map<String, Object> params = new HashMap<>();
+
+		if (StringUtils.isNotBlank(topId)) {
+			params.put("topId", topId);
+		}
+
+		if (StringUtils.isNotBlank(secondId)) {
+			params.put("secondId", secondId);
+		}
+
+	
+		if (StringUtils.isNotBlank(name)) {
+			params.put("name", name);
+		}
+
+		
+		return params;
+	}
+
+	@Override
+	public int insertCategory(JtBusinessCategory jtBusinessCategory) {
+		// TODO Auto-generated method stub
+//		jtBusinessCategoryMapper.autoIncreaseSort(jtBusinessCategory.getLayer(),jtBusinessCategory.getSort()); 
+		if(jtBusinessCategory.getSuperId()!=null && jtBusinessCategory.getLayer().intValue()==1 && jtBusinessCategory.getSuperId().length()>0)return -2;
+		String number="BC";
+		if(jtBusinessCategory.getLayer().intValue()==2) {
+			//2层,先加第一层
+			//找到当前品类父级品类
+			JtBusinessCategory sp=jtBusinessCategoryMapper.selectByPrimaryKey(jtBusinessCategory.getSuperId());
+			if(sp==null || sp.getLayer()!=1) {
+				//找到的父级品类层数不是1 或者未找到
+				return -2;
+			}
+			//加前层
+			//父级品类层数为1的情况下 第一层编号为父级sort序号
+			int size1=sp.getSort();
+			if(size1>99)return -1;
+			if(size1<10)number+="0";
+			number+=size1;
+		}
+		
+		
+		//加层
+		int size2;
+		//通过父级id获取当前层列表
+		List<JtBusinessCategory>businessCategories =jtBusinessCategoryMapper.getBusinessCategoryBySuperId(jtBusinessCategory.getSuperId(), null);
+		//列表为0,当前层编号size2设置为1,大于0 设置为当前最大sort+1
+		if(businessCategories.size()>0)
+		 size2=businessCategories.get(businessCategories.size()-1).getSort()+1;
+		else size2=1;
+		//每层最多99个
+		if(size2>99)return -1;
+		//增加0
+		if(size2<10)number+="0";
+		//完成编号
+		number+=size2;
+		jtBusinessCategory.setNumber(number);
+		//设置sort序号
+		jtBusinessCategory.setSort(size2);
+		jtBusinessCategory.setCreateTime(new Date());
+		jtBusinessCategory.setId(UUID.randomUUID().toString());
+		return jtBusinessCategoryMapper.insertSelective(jtBusinessCategory);
+	}
+
+	@Override
+	public int deleteCategoryById(String id) {
+		// TODO Auto-generated method stub
+		//查找品类
+		JtBusinessCategory sp=jtBusinessCategoryMapper.selectByPrimaryKey(id);
+		//查找子品类 存在子品类不允许删除
+		List<JtBusinessCategory> chidren=jtBusinessCategoryMapper.getBusinessCategoryBySuperId(sp.getId(), null);
+		if(chidren.size()>0) {
+			return -1;
+		}
+		List<JtBusinessProject> childrenProject=jtBusinessProjectMapper.getBusinessProjectByCategoryId(id, 100);
+		if(childrenProject!= null && childrenProject.size()>0) {
+			return -1;
+		}
+		return jtBusinessCategoryMapper.deleteByPrimaryKey(id);
+	}
+
+	@Override
+	public JtBusinessCategory getCategoryById(String id) {
+		// TODO Auto-generated method stub
+		return jtBusinessCategoryMapper.selectByPrimaryKey(id);
+	}
+
+	@Override
+	public int updateCategory(JtBusinessCategory jtBusinessCategory) {
+		// TODO Auto-generated method stub
+		return jtBusinessCategoryMapper.updateByPrimaryKeySelective(jtBusinessCategory);
+	}
+
+	
+	
+	private Map<String, Object> disposeCategoryParams(String name,Integer layer ) {
+		Map<String, Object> params = new HashMap<>();
+
+		if (layer!=null) {
+			params.put("layer", layer);
+		}
+
+	
+
+	
+		if (StringUtils.isNotBlank(name)) {
+			params.put("name", name);
+		}
+
+		
+		return params;
+	}
+
+	@Override
+	public int insertProject(JtBusinessProject jtBusinessProject) {
+		// TODO Auto-generated method stub
+		jtBusinessProject.setCreateTime(new Date());
+		jtBusinessProject.setId(UUID.randomUUID().toString());
+		jtBusinessProject.setOwnerId(TokenManager.getUserId());
+		List<JtBusinessProject>projects=jtBusinessProjectMapper.findProjectOrderByNumber();
+		int cSize = 1;
+		if(projects!=null && projects.size()>0)
+		{
+			String number=projects.get(projects.size()-1).getNumber();
+			if(number!=null && number.length()==6)
+			{
+				String nbString=number.substring(2);
+				try {
+				cSize=Integer.parseInt(nbString)+1;}catch (Exception e) {
+					// TODO: handle exception
+					return -1;
+				}
+			}
+			else cSize=1;
+		}
+		else cSize=1;
+	
+		String nbString="BP";
+		String sizeString="000"+cSize;
+		sizeString=sizeString.substring(sizeString.length()-4);
+		nbString+=sizeString;
+		jtBusinessProject.setNumber(nbString);
+		jtBusinessProjectMapper.insertSelective(jtBusinessProject);
+		return 1;
+	}
+
+	@Override
+	public int deleteProjectById(String id) {
+		// TODO Auto-generated method stub
+		return jtBusinessProjectMapper.deleteByPrimaryKey(id);
+	}
+
+	@Override
+	public int updateProject(JtBusinessProject jtBusinessProject) {
+		// TODO Auto-generated method stub
+		return jtBusinessProjectMapper.updateByPrimaryKeySelective(jtBusinessProject);
+	}
+
+	@Override
+	public List<JtBusinessProject> getProjectsLimit(Integer size) {
+		// TODO Auto-generated method stub
+		return jtBusinessProjectMapper.findProjectOrderByNumber();
+	}
+
+
+
+	
+}

+ 2 - 1
src/main/java/com/goafanti/common/mapper/DemandMapper.xml

@@ -1091,7 +1091,7 @@ left join demand_publish dp on dp.demand_id=d.id and dp.publish_platform=branchI
  from demand d
  left join branch_information branchInfo on INSTR(#{1},branchInfo.domain_name)>0
 left join demand_publish dp on dp.demand_id=d.id and dp.publish_platform=branchInfo.id 
-where d.boutique=1 and  dp.demand_id=d.id and dp.publish_platform=branchInfo.id and instr(dp.publish_page,#{2})>0
+where info_sources=1 and d.boutique=1 and  dp.demand_id=d.id and dp.publish_platform=branchInfo.id and instr(dp.publish_page,#{2})>0
 order by release_date desc limit #{0}
   </select> 
   
@@ -1106,6 +1106,7 @@ order by release_date desc limit #{0}
 	from
 		demand
 	where
+		info_sources=1 and
 		employer_id = #{uid,jdbcType=VARCHAR}
 	<if test="status != null">
 		and status = #{status,jdbcType=INTEGER}

+ 12 - 1
src/main/java/com/goafanti/common/mapper/JtBusinessProjectMapper.xml

@@ -246,6 +246,9 @@
       <if test="applyConditions != null">
         apply_conditions,
       </if>
+      <if test="ownerId!=null">
+      owner_id,
+      </if>
     </trim>
     <trim prefix="values (" suffix=")" suffixOverrides=",">
       <if test="id != null">
@@ -299,6 +302,9 @@
       <if test="applyConditions != null">
         #{applyConditions,jdbcType=VARCHAR},
       </if>
+      <if test="ownerId!=null">
+      #{ownerId,jdbcType=VARCHAR}
+      </if>
     </trim>
   </insert>
   <select id="countByExample" parameterType="com.goafanti.common.model.JtBusinessProjectExample" resultType="java.lang.Long">
@@ -519,7 +525,9 @@
   <if test="topId!=null">
  and jtbc.id=jtbp.category_id
   </if>
-  
+  <if test="ownerId!=null">
+  jdbp.owner_id=#{ownerId,jdbcType=VARCHAR}
+  </if>
   	<if test="page_sql!=null">
 		${page_sql}
 	</if>
@@ -541,6 +549,9 @@
   <if test="topId!=null">
  and jtbc.id=jtbp.category_id
   </if>
+    <if test="ownerId!=null">
+  jdbp.owner_id=#{ownerId,jdbcType=VARCHAR}
+  </if>
   </select>
   
   <select id="findProjectOrderByNumber" resultType="com.goafanti.common.model.JtBusinessProject">

File diff suppressed because it is too large
+ 578 - 566
src/main/java/com/goafanti/common/model/JtBusinessProject.java


+ 6 - 1
src/main/webapp/WEB-INF/views/common.html

@@ -242,7 +242,7 @@
 							<input type="password" name="pass" id="Lo_pass" placeholder="请输入密码" />
 						</div>
 						<div class="login_check">
-<!-- 						<a href="#">忘记密码?</a> -->
+						<a href="#">忘记密码?</a>
 						</div>
 						<input type="submit" value="登 陆" class="login_submit"/>
 					</form>
@@ -259,6 +259,11 @@
 						<a href="">忘记密码?</a>
 					</div>
 					<div class="forget_center">
+					<div class="user">
+						<label for="forget_user">
+							用户名:<input type="text" name="type" id="forget_user" placeholder="请输入您的用户名"/>
+						</label>
+					</div>
 						<div class="phone">
 							<label for="forget_phone">
 								手机号码:<input type="text" name="type" id="forget_phone" placeholder="请输入您的手机号码..."/>

File diff suppressed because it is too large
+ 1 - 1
src/main/webapp/WEB-INF/views/portal/service/serviceIndex.html


+ 1 - 1
src/main/webapp/WEB-INF/views/portal/technologyTrading/demand.html

@@ -157,7 +157,7 @@
 								 <span class="colorTime" th:if="${u2.validityPeriod}==null" th:text="无期限"></span>
 								 <span class="colorTime" th:if="${u2.validityPeriod}!=null" th:text="${#dates.format(u2.validityPeriod,'yyyy-MM-dd')+'到期'}"></span>
 								 <span class="colorOrange" th:if="${u2.demandType}==5" th:text="${u2.fundForPersonnel}==null?'人才:¥0元/月':${'人才:¥'+u2.fundForPersonnel+'元/月'}"></span>
-								 <span class="colorOrange" th:if="${u2.demandType}==3" th:text="${'期望资金:¥'+u2.fundForCrowd}+'万'"></span>
+								 <span class="colorOrange" th:if="${u2.demandType}==3" th:text="${u2.fundForCrow}==null?'面议':${'期望资金:¥'+u2.fundForCrowd}+'万'"></span>
 							</p>
 						</div>
 						</a>

+ 19 - 19
src/main/webapp/WEB-INF/views/portal/thinkTank/index.html

@@ -60,7 +60,7 @@
 					</select>
 				</div>
 				<form action="" method="post" id="search_on">
-					<input type="search" placeholder="医药生物" />
+					<input type="search" placeholder="请输入专家名称" />
 				</form>
 				<button form="search_on"></button>
 			</div>
@@ -78,24 +78,24 @@
 								<ul id="industryList" class="clearfix"></ul>
 							</div>
 							
-						<div class="search-title col-md-1">
-							<span>是否国际</span>
-						</div>
-						<div class="search-select col-md-11">
-							<ul id="selectInt">
-								<li class="active"><span>不限</span>
-								<li>
-									<label for="isInt" class="demand">
-										是<input type="checkbox" name="Int" id="isInt" value="1" />
-									</label>
-								</li>
-								<li>
-									<label for="noInt" class="demand">
-										否<input type="checkbox" name="Int" id="noInt" value="0" />
-									</label>
-								</li>
-							</ul>
-						</div>
+<!-- 						<div class="search-title col-md-1"> -->
+<!-- 							<span>是否国际</span> -->
+<!-- 						</div> -->
+<!-- 						<div class="search-select col-md-11"> -->
+<!-- 							<ul id="selectInt"> -->
+<!-- 								<li class="active"><span>不限</span> -->
+<!-- 								<li> -->
+<!-- 									<label for="isInt" class="demand"> -->
+<!-- 										是<input type="checkbox" name="Int" id="isInt" value="1" /> -->
+<!-- 									</label> -->
+<!-- 								</li> -->
+<!-- 								<li> -->
+<!-- 									<label for="noInt" class="demand"> -->
+<!-- 										否<input type="checkbox" name="Int" id="noInt" value="0" /> -->
+<!-- 									</label> -->
+<!-- 								</li> -->
+<!-- 							</ul> -->
+<!-- 						</div> -->
 					
 							
 						</div>