area|地區鉤子
標簽名稱:area
功能說明:顯示地區信息
適用范圍:全局
調用語法: 𒆙 <!--{area type='' name='' d♍epth='' child='' text='' parentid='' value=''}-->
基本參數:
參數名 | 數據類型 | 是否必須 | 描述 | 可選類型 |
---|---|---|---|---|
type | string | Yes | 類型 select/text | -- |
name | string | Yes | 名稱 | -- |
depth | int | Yes | 級別 | -- |
child | int | No | 是否加載子地區select選框 1-Y,0-N | select類型下獨有參數 |
text | string | No | option的文本提示 | select類型下獨有參數 |
parentid | int | No | 父級ID | -- |
value | string | No | 當前值 | -- |
搜索三聯動標簽實例:
所在地區:
<!--{area type='select' name='sarea' depth='1' child='1' text='=請選擇=' value=$sarea1}-->
<span id="json_sarea2">
<!--{if $sarea1 > 0}-->
<!--{area type='select' name='sarea' depth='2' child='1' text='=請選擇=' parentid=$sarea1 value=$sarea2}-->
<!--{else}-->
<select name="sarea2" id="sarea2"><option value="">=請選擇=</option></select>
<!--{/if}-->
</span>
<span id="json_sarea3">
<!--{if $sarea2 > 0}-->
<!--{area type='select' name='sarea' depth='3' child='1' text='=請選擇=' parentid=$sarea2 value=$sarea3}-->
<!--{else}-->
<select name="sarea3" id="sarea3"><option value="">=請選擇=</option></select>
<!--{/if}-->
</span>
<span id="json_sarea4">
<!--{if $sarea3 > 0}-->
<!--{area type='select' name='sarea' depth='4' text='=請選擇=' parentid=$sarea3 value=$sarea4}-->
<!--{/if}-->
</span>
溫馨提示:area里的參數排序位置不限;
地區文本顯示標簽實例:
顯示所在省,市,區,街道
<!--{area type='text' name='area' depth='1' child='1' value=$shopwith.area1}-->
<span id="json_area2">
<!--{area type='text' name='area' depth='2' child='1' parentid=$shopwith.area1 value=$shopwith.area2}-->
</span>
<span id="json_area3">
<!--{if $shopwith.area2 > 0}-->
<!--{area type='text' name='area' depth='3' child='1' parentid=$shopwith.area2 value=$shopwith.area3}-->
<!--{/if}-->
</span>
<span id="json_area4">
<!--{if $shopwith.area3 > 0}-->
<!--{area type='text' name='area' depth='4' parentid=$shopwith.area3 value=$shopwith.area4}-->
<!--{/if}-->
</span>
結果:廣東 廣州 天河區 興華街道
溫馨提示:area里的參數排序位置不限;地區修改:后臺管理->基礎模塊->地區管理->省/市/區/縣