allplayer.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334
  1. <div class="page-container p10">
  2. <blockquote class="layui-elem-quote"><p>程序顶部导航栏的 “视频”->“播放器” 里面也可管理</p><p style="color:red">这里修改的播放器,只适用于网页端调用,如果你程序接入了APP或者小程序,此处的修改将无效<br>如果你程序是二次开发过的,请勿使用此功能,避免造成未知的冲突</p><p>先勾选,然后选择批量操作的内容,即可批量修改多个播放器的调用内容</p></blockquote>
  3. <div class="my-toolbar-box">
  4. <div class="layui-btn-group">
  5. <button class="layui-btn" id="allplayerBtn">批量操作<i class="layui-icon layui-icon-down layui-font-12"></i></button>
  6. <a class="layui-btn layui-btn-danger layuiBtn" data-type="delplayer"><i class="layui-icon">&#xe620;</i>初始化播放器</a>
  7. </div>
  8. </div>
  9. <form class="layui-form " method="post" id="pageListForm">
  10. <table class="layui-table" lay-size="sm">
  11. <thead>
  12. <tr>
  13. <th width="25"><input type="checkbox" lay-skin="primary" lay-filter="allChoose"></th>
  14. <th width="40">播放器排序</th>
  15. <th width="40">播放器编码</th>
  16. <th width="130">播放器名称</th>
  17. <th width="130">操作</th>
  18. </tr>
  19. </thead>
  20. {volist name="list" id="vo"}
  21. <tr>
  22. <td><input type="checkbox" name="ids[]" value="{$vo.from}" class="layui-checkbox checkbox-ids" lay-skin="primary"></td>
  23. <td>{$vo.sort}</td>
  24. <td>{$vo.from}</td>
  25. <td>{$vo.show}</td>
  26. <td>
  27. <a class="layui-badge-rim j-iframe" data-href="{:url('vodplayer/info?id='.$vo['from'])}" href="javascript:;" title="编辑">编辑</a>
  28. </td>
  29. </tr>
  30. {/volist}
  31. </tbody>
  32. </table>
  33. </form>
  34. </div>