/**
* @example thinkphp里模版文件js无法使用if condition的问题
* @example 参考地址:https://segmentfault.com/q/1010000008729571
* @example 主要代码:(item.is_show == 1?'<i>待报价</i>':'<abbr>已报价</abbr>')+
*/
$("#promotionresult").empty();
var html = "";
$.each(data.data, function(i, item) {
html+='<dl class="MyOrderM">'+
'<dd>'+
'<p>'+
'<span>'+'舒朋士-'+item.username+'</span>'+
'<em>'+ item.phone + '</em>'+
(item.is_show == 1?'<i>待报价</i>':'<abbr>已报价</abbr>')+
'</p>'+
'<p>' + item.discribe + '</p>'+
'</dd>'+
'<span>详情</span>'+
'</dl>';
}) $("#promotionresult").html(html);