Commit 9920d8c0 by 施宇

1111

parent 33f370e3
......@@ -141,8 +141,27 @@
{{# } }}
{{item.price}}
</div>
<div class="company fl ellipsis boxsiz"><span class="mark">贸易商</span><span
class="name">{{item.company_name||'--'}}</span></div>
<div class="company fl ellipsis boxsiz"><span class="mark">
{{# if(item.company_type!==""){ }}
{{# if(item.company_type==1){ }}
贸易商
{{# } }}
{{# if(item.company_type==2){ }}
代理商
{{# } }}
{{# if(item.company_type==3){ }}
原厂
{{# } }}
{{# if(item.company_type==4){ }}
制造商
{{# } }}
{{# if(item.company_type==5){ }}
个人用户
{{# } }}
{{# } else { }}
--
{{# } }}
</span><span class="name">{{item.company_name||'--'}}</span></div>
<div class="fr wx">
<span class="icon iconfont iconjuxing7"></span>
</div>
......
......@@ -266,20 +266,20 @@
margin-top: 15px;
}
.chat_content .content .content_div .notice_right .notice_list .notice_item .notice_content .template .template_right .template_right_bottom .desc1 div {
width: 60%;
width: 55%;
}
.chat_content .content .content_div .notice_right .notice_list .notice_item .notice_content .template .template_right .template_right_bottom .desc1 div.hq {
width: 40%;
width: 45%;
}
.chat_content .content .content_div .notice_right .notice_list .notice_item .notice_content .template .template_right .template_right_bottom .desc2 {
padding: 0;
margin-top: 15px;
}
.chat_content .content .content_div .notice_right .notice_list .notice_item .notice_content .template .template_right .template_right_bottom .desc2 div {
width: 60%;
width: 55%;
}
.chat_content .content .content_div .notice_right .notice_list .notice_item .notice_content .template .template_right .template_right_bottom .desc2 div.time {
width: 40%;
width: 45%;
}
.chat_content .content .content_div .notice_right .notice_list .notice_item .notice_content .template .template_right .template_right_bottom div {
color: #ADB6BF;
......
......@@ -327,10 +327,10 @@
margin-top: 15px;
div {
width: 60%;
width: 55%;
&.hq {
width: 40%;
width: 45%;
}
}
}
......@@ -340,10 +340,10 @@
margin-top: 15px;
div {
width: 60%;
width: 55%;
&.time {
width: 40%;
width: 45%;
}
}
}
......
......@@ -229,8 +229,8 @@ $(function () {
'<div class="hq fl">货期:<i>' + html.hq + '</i></div>' +
'</div>' +
'<div class="desc2 clr">' +
'<div class="num fl">数量:<i class="bold">' + html.num + 'PCS</i></div>' +
'<div class="time fl">时间:<i>2019-05-23 15:57 </i></div>' +
'<div class="num fl">数量:<i class="bold">' + html.num + '</i></div>' +
'<div class="time fl">时间:<i>'+html.time+'</i></div>' +
'</div>' +
'</div>' +
'</div>' +
......
......@@ -46,7 +46,7 @@ $(function () {
count: res.total,
limit: 7,
curr: page,
layout:['prev', 'page', 'next','refresh'],
layout: ['prev', 'page', 'next', 'refresh'],
jump: function (obj, first) {
if (!first) {
//分页回调调用
......@@ -167,7 +167,7 @@ $(function () {
if ($(this).hasClass('disabled')) {
return
} else {
self.sxj(userId,1)
self.sxj(userId, 1)
}
});
......@@ -178,10 +178,14 @@ $(function () {
if ($(this).hasClass('disabled')) {
return
} else {
self.sxj(userId,2)
self.sxj(userId, 2)
}
});
$('.inquiry_data').on('click', '.more_btn', function () {
var userid = $(this).parents('.data_item').attr('userid');
window.location.href = "/inquirydetail?id=" + userid
})
}
};
inquiry.init()
......
......@@ -84,6 +84,7 @@ $(function () {
fz = parent.find('.fz').find('span').text(),
num = parent.find('.num').find('span').text(),
hq = parent.find('.hq').find('span').text(),
time = parent.find('.time').find('span').text(),
obj = {
userId: userId,
type: type,
......@@ -92,6 +93,7 @@ $(function () {
fz: fz,
num: num,
hq: hq,
time:time
};
Util.setCookie('template', JSON.stringify(obj), 1, cookieHostname)
window.location.href = '/chat'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment