Commit 466e5548 authored by agping's avatar agping

修改

parent fca493f9
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
margin-left: 10px; margin-left: 10px;
} }
.btn4{ .btn4{
width:15%!important; width:18%!important;
float: left; float: left;
margin-left: 10px; margin-left: 10px;
} }
......
...@@ -214,7 +214,11 @@ function hideTel(str){ ...@@ -214,7 +214,11 @@ function hideTel(str){
return str; return str;
} }
} }
//
function hideStr(str){
if (str.length > 4) { str = str.substring(0,4)+"***"};
return str;
}
//处理url信息,改为当前域名的协议 //处理url信息,改为当前域名的协议
function urlDeal(urlStr, httpStr) { function urlDeal(urlStr, httpStr) {
//处理 //处理
......
...@@ -10,7 +10,13 @@ ...@@ -10,7 +10,13 @@
街铺 街铺
[% } %] [% } %]
</td> </td>
<td>[%= it[item]['internal_title'] %]</td> <!--<td>[%= hideStr(it[item]['internal_title']) %]</td>-->
<td>[% if (it[item]['shop_type'] == 0) { %]
[%= it[item]["internal_title"] %]
[% } else if (it[item]['shop_type'] == 1) { %]
[%= hideStr(it[item]['internal_title']) %]
[% } %]</td>
<td> <td>
[% if (it[item]['rent_type'] == 1) { %] [% if (it[item]['rent_type'] == 1) { %]
[%= it[item]["rent_price"] / 100 %] [%= it[item]["rent_price"] / 100 %]
......
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 to comment