[TOC]
輸出暫無內容的html代碼
> 
*****
`$common.html_data_tishi({})`
| 參數 |描述 | 類型 |默認值 | 是否可選|
| --- | --- |--- | --- | --- |
| title | 提示標題 | 字符串 | | 可選 |
| img | 提示圖標 | 字符串 | | 可選 |
*****
### 示例:
`$common.html_data_tishi({'title':'暫無內容'}) `
### 封裝整張頁面加載中狀態
```
$("#interpolation").html(ea55_jjz_html());
```
*****
### 示例:(完整使用例子)
```
<div class="" id="ea55_data_box"></div>
<script id="interpolationtmpl" type="text/x-dot-template">
{{?it&&it[0]}}
{{~it :value:index }}
循環內容省略
{{~}}
{{??}}
{{=$common.html_data_tishi({'title':'暫無內容'}) }}
{{?}}
</script>
<script>
var interText = doT.template($("#interpolationtmpl").text());
$("#ea55_data_box").html(interText({}));
</script>
```