|
@@ -158,7 +158,7 @@
|
|
|
</div></a>
|
|
|
{{end}}
|
|
|
</div>
|
|
|
- <div class="col-sm-4 col-xs-8">
|
|
|
+ <div class="col-sm-5 col-xs-8" style="padding-right:30px;">
|
|
|
<div class="title" style="height:40px;" >
|
|
|
{{if eq "demand" $.T.querymap.c_searchtype}}
|
|
|
<a target="_blank" style="float: left;max-width: 230px;display: inline-block;word-break: break-all;" href="/market/demandview/{{$v._id}}.html">{{$v.s_name}}</a>
|
|
@@ -219,9 +219,9 @@
|
|
|
{{end}}
|
|
|
{{end}}
|
|
|
</div>
|
|
|
- <div style="padding-top:10px;padding-bottom:10px;">
|
|
|
+ <div style="padding:10px 30px 10px 0">
|
|
|
<span class="d_service_span text-muted">{{if $v.s_enterprisename}}<a style="color:#aea79f;" href="/enterprise/{{$v.s_enterpriseid}}.html" target="_blank">{{$v.s_enterprisename}}</a>{{else}}{{$v.s_nickname}}{{end}}</span>
|
|
|
- <span class="d_service_span text-muted f-code">{{$v.i_area}}</span>
|
|
|
+ <span class="d_service_span text-muted f-code" style="float:right;">{{$v.i_area}}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
{{if eq "demand" $.T.querymap.c_searchtype}}
|
|
@@ -243,10 +243,11 @@
|
|
|
<div class="col-sm-2 col-xs-4" style="margin-top: 5px;">
|
|
|
价格:{{if eq $v.f_price 0.0}}<span class="text-primary text-bold">面议</span>{{else}}<span class="text-primary text-bold">{{$v.f_price}}</span>元{{end}}
|
|
|
</div>
|
|
|
- <div class="col-sm-4 col-xs-4 text-center hidden-xs" style="margin-top:5px;padding-right:0px;margin-left:30px;">
|
|
|
- <div class="col-sm-8 " style="float:right;text-align:right;">
|
|
|
- <div style="float:right;"><span class="d_col_span" style="font-size:14px;">成交量:<span style="color:#FF5A5F;font-weight:600;">{{if $v.i_sales}}{{$v.i_sales}}{{else}}0{{end}}</span></span></div>
|
|
|
- <div style="float:right;" ><span class="d_col_span" style="font-size:14px;">评价数:<span style="color:#FF5A5F;font-weight:600;">{{if $v.i_comments}}{{$v.i_comments}}{{else}}0{{end}}</span></span> | </div>
|
|
|
+ <div class="hidden-xs" style="float:right ;margin-top:5px;padding-right:0px;margin-left:30px;">
|
|
|
+ <div style="float:right;text-align:right;">
|
|
|
+ <div style="float:left;"><span class="d_col_span" style="font-size:14px;">成交量:<span style="color:#FF5A5F;font-weight:600;">{{if $v.i_sales}}{{$v.i_sales}}{{else}}0{{end}}</span></span></div>
|
|
|
+ <div style="float:left"> | </div>
|
|
|
+ <div style="float:left;" ><span class="d_col_span" style="font-size:14px;">评价数:<span style="color:#FF5A5F;font-weight:600;">{{if $v.i_comments}}{{$v.i_comments}}{{else}}0{{end}}</span></span></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
{{else}}
|
|
@@ -349,7 +350,11 @@
|
|
|
});
|
|
|
$(".f-code").each(function(i,n){
|
|
|
var $n=$(n);
|
|
|
- $n.text(getChineseLoc($n.text()));
|
|
|
+ var code=$n.text();
|
|
|
+ if(code.length>2){
|
|
|
+ code=code.substr(0,2);
|
|
|
+ }
|
|
|
+ $n.text(getChineseLoc(code));
|
|
|
});
|
|
|
});
|
|
|
|