1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <div class="layui-fluid">
- <div class="layui-row layui-col-space15">
- <div class="layui-col-md12">
- <div class="layui-card layui-tab layui-tab-brief" lay-filter="linktab">
- <ul class="layui-tab-title">
- <li class="layui-this">系统</li>
- <li>文章</li>
- </ul>
- <div class="layui-tab-content">
- <div class="layui-tab-item layui-show">
- <table class="layui-table">
- <colgroup>
- <col width="200">
- <col>
- <col width="200">
- <col>
- </colgroup>
- <thead>
- <tr>
- <th>名称</th>
- <th>链接(点击复制)</th>
- <th>名称</th>
- <th>链接(点击复制)</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>首页</td>
- <td onclick="JavaScript:copyMobileUrl('{:url("/")}');"> {:url("/")}</td>
- <td>个人中心</td>
- <td onclick="JavaScript:copyMobileUrl('{:url("/mobile/my/index")}');"> {:url("/mobile/my/index")}</td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="layui-tab-item">
- <table class="layui-table">
- <colgroup>
- <col width="200">
- <col>
- <col width="200">
- <col>
- </colgroup>
- <thead>
- <tr>
- <th>名称</th>
- <th>链接(点击复制)</th>
- <th>名称</th>
- <th>链接(点击复制)</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>文章列表</td>
- <td onclick="JavaScript:copyMobileUrl('{:url("/mobile/article/index")}?cate_id=');">{:url("/mobile/article/index")}?cate_id=[id]</td>
- <td>资讯分类</td>
- <td onclick="JavaScript:copyMobileUrl('{:url("/mobile/article/detail")}?id=');">{:url("/mobile/article/detail")}?id=[id]</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script src="__COMMON_JS__/copyUrl.js"></script>
- <script>
- function copyMobileUrl(url) {
- CopyToClipboard(url);
- }
- layui.use(['index'], function () {
- });
- </script>
|