1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| <script type="text/html" template lay-done="layui.data.done(d);">
| <table class="layui-table layui-form" lay-filter="LAY-app-StudioManagement-getPushUrl" id="LAY-app-StudioManagement-getPushUrl">
| <colgroup>
| <col width="90">
| <col>
| </colgroup>
| <tbody>
| <tr>
| <td>
| <label for="id">推流地址</label>
| </td>
| <td>
| {{ d.params.data || '' }}
| </td>
| </tr>
|
| </tbody>
| </table>
| </script>
|
| <script>
| var debug = layui.setter.debug;
| layui.data.done = function (d) {
| //开启调试情况下获取接口赋值数据
| if (debug) { console.log(d.params.data); }
|
| layui.use(['admin', 'form', 'coreHelper'], function () {
| var $ = layui.$
| , setter = layui.setter
| , admin = layui.admin
| , coreHelper = layui.coreHelper
| , form = layui.form;
| form.render(null, 'LAY-app-StudioManagement-getPushUrl');
| });
| };
| </script>
|
|