123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>小程序管理</title>
- <link
- rel="stylesheet"
- type="text/css"
- href="https://cloud1-6gbxfp9x33ff3b7c-1306051304.tcloudbaseapp.com/cloudbase-cms/apps/assetManage/layui/css/layui.css"
- />
- <script src="https://cloud1-6gbxfp9x33ff3b7c-1306051304.tcloudbaseapp.com/cloudbase-cms/apps/assetManage/layui/layui.js"></script>
- <style>
- html,body{
- width: 100%;
- height: 100%;
- }
- body{
- padding: 1em;
- }
- .m {
- display: none;
- background-color: rgba(0, 0, 0, 0.5);
- position: absolute;
- width: 100%;
- height: 80vh;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- }
- .m .detail {
- position: absolute;
- transition: all 1s;
- width: 50%;
- height: 100%;
- right: 0;
- background-color: #fff;
- padding: 3em 1em 1em 1em;
- }
- .m .close {
- cursor: pointer;
- position: absolute;
- top: 1em;
- right: 1em;
- }
- .m .upImg {
- padding: 1em 0;
- }
- .m .upImg img {
- margin: 3px 0 0 3px;
- width: 80px;
- }
- .m .upImg video {
- margin: 3px 0 0 3px;
- width: 80px;
- }
- </style>
- </head>
- <body >
- <button type="button" class="layui-btn addE">新增</button>
- <table class="layui-table" id="Administration" lay-filter="Administration">
- <colgroup>
- <col width="80">
- <col>
- <col>
- </colgroup>
- <thead>
- <tr>
- <th>类型</th>
- <th>文件ID</th>
- <th>预览</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody class="tb"></tbody>
- </table>
- <div id="page"></div>
- <!-- 新闻内容编辑 -->
- <div class="m">
- <div class="detail">
- <i class="close layui-icon">ဆ</i>
- <div class="layui-btn-group">
- <button type="button" class="layui-btn">
- <label for="up">
- <i class="layui-icon"></i>选择音视频
- </label>
- </button>
- <button type="button" class="layui-btn upfile">上传</button>
- </div>
- <input id="up" multiple style="display: none" type="file" />
- <div class="upImg"></div>
- </div>
- </div>
- </body>
-
- <script src="./js/entry.js" entry></script>
- </html>
|