|
@@ -13,8 +13,8 @@ $(function(){
|
|
|
//数据处理
|
|
|
var theKeyword,pageSize,Province;
|
|
|
var thePageNo = 1,
|
|
|
- thePageLength = 1,
|
|
|
- pageSize = 6;
|
|
|
+ thePageLength = 1,
|
|
|
+ pageSize = 6;
|
|
|
function loadDate(pageNo) {
|
|
|
$.ajax({
|
|
|
method: "get",
|
|
@@ -41,15 +41,15 @@ $(function(){
|
|
|
let thisdata = data.data.list[i];
|
|
|
theArr.push([
|
|
|
'<li value="'+thisdata+'">',
|
|
|
- '<img src="' + globalConfig.avatarHost + '/upload' + thisdata.publicityPictureUrl + '" alt="行业" />',
|
|
|
+ '<img src="' + globalConfig.avatarHost + '/upload' + thisdata.publicityPictureUrl+'"/>',
|
|
|
'<p>' + thisdata.companyName + '</p>',
|
|
|
'<a href="">MORE+</a>',
|
|
|
'</li>',
|
|
|
].join(''));
|
|
|
};
|
|
|
};
|
|
|
- $('.invest_right ul').empty();
|
|
|
- $('.invest_right ul').append(theArr.join(''));
|
|
|
+ $('.invest_imglist ul').empty();
|
|
|
+ $('.invest_imglist ul').append(theArr.join(''));
|
|
|
$('.totalCount').html("共 "+ page +" 页 " + data.data.totalCount + " 条数据");
|
|
|
thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
|
|
|
var pageArr = [],
|
|
@@ -74,7 +74,7 @@ $(function(){
|
|
|
};
|
|
|
$('.pageNumber').remove();
|
|
|
$('.pagePre').after(pageArr.join(''));
|
|
|
- },
|
|
|
+ },
|
|
|
});
|
|
|
}
|
|
|
if (window.location.search) {
|
|
@@ -87,13 +87,11 @@ $(function(){
|
|
|
};
|
|
|
loadDate();
|
|
|
//点击分页
|
|
|
- $('.pagination').on('click', 'li', function (e) {
|
|
|
- $(this).addClass('active').siblings().removeClass('active')
|
|
|
+ $('.pagination').on('click', 'li', function (e) {
|
|
|
e.preventDefault();
|
|
|
- thePageNo=$(this).val();
|
|
|
if (this.className === 'pagePre') {
|
|
|
if (thePageNo > 1) {
|
|
|
- thePageNo = 1;
|
|
|
+ thePageNo = 1;
|
|
|
loadDate(thePageNo);
|
|
|
}
|
|
|
} else if (this.className === 'pageNext') {
|
|
@@ -110,7 +108,7 @@ $(function(){
|
|
|
loadDate(thePageNo);
|
|
|
};
|
|
|
};
|
|
|
-
|
|
|
+ $(this).addClass('active').siblings().removeClass('active')
|
|
|
});
|
|
|
//链接详情
|
|
|
$('.invest_imglist ul').on('click', 'li', function () {
|