|
@@ -466,6 +466,42 @@
|
|
|
</h3>
|
|
|
{{if response.success.raw || response.success.parameter.length > 0 || response.error.raw || response.error.parameter.length > 0}}
|
|
|
<div class="markdown-response">
|
|
|
+ {{if response.success.raw || response.success.parameter.length > 0}}
|
|
|
+ <h4 class="title"><a href="javascript:;" class="maodian"></a>字段描述1</h4>
|
|
|
+ <table>
|
|
|
+ <tr>
|
|
|
+ <th>参数名</th>
|
|
|
+ <th>示例值</th>
|
|
|
+ <th>参数类型</th>
|
|
|
+ <th>参数描述</th>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>11111</td>
|
|
|
+ <td>22222</td>
|
|
|
+ <td>33333</td>
|
|
|
+ <td>44444</td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ {{if response.success.parameter.length > 0}}
|
|
|
+ <h4><a href="javascript:;" class="maodian"></a> 字段描述</h4>
|
|
|
+ <table>
|
|
|
+ <tr>
|
|
|
+ <th>参数名</th>
|
|
|
+ <th>示例值</th>
|
|
|
+ <th>参数类型</th>
|
|
|
+ <th>参数描述</th>
|
|
|
+ </tr>
|
|
|
+ {{each response.success.parameter item}}
|
|
|
+ <tr>
|
|
|
+ <td>{{item.key}}</td>
|
|
|
+ <td>{{item.value}}</td>
|
|
|
+ <td>{{item.field_type}}</td>
|
|
|
+ <td>{{item.description == '' ? '暂无描述' : item.description }}</td>
|
|
|
+ </tr>
|
|
|
+ {{/each}}
|
|
|
+ </table>
|
|
|
+ {{/if}}
|
|
|
+ {{/if}}
|
|
|
</div>
|
|
|
{{/if}}
|
|
|
{{else if target_type == 'folder'}}
|