Parcourir la source

Signed-off-by: yinxr <2273460044@qq.com>

yinxr il y a 6 ans
Parent
commit
d56a40dabe

+ 15 - 0
src/main/webapp/WEB-INF/manager/mweixin/article/index.ftl

@@ -0,0 +1,15 @@
+<!-- 新建图文 -->
+<script src="https://unpkg.com/vue-slicksort@latest/dist/vue-slicksort.min.js"></script>
+<div id='article'>
+    <el-container>
+        <el-aside width="280px">
+
+        </el-aside>
+        <el-main>Main</el-main>
+    </el-container>
+</div>
+<script>
+    var articleVue = new Vue({
+        el: '#article'
+    })
+</script>

+ 31 - 0
src/main/webapp/static/ms-admin/4.7.0/css/index.css

@@ -69,6 +69,32 @@ textarea::-webkit-input-placeholder {
   background-color: #ddd;
   /*滚动条的背景颜色*/
 }
+.ms-container {
+  margin: 12px;
+  height: 100%;
+  padding: 14px 14px 0 14px;
+  background: #fff;
+}
+.ms-header {
+  padding: 10px;
+  margin: 0;
+  border-bottom: 1px solid #ddd;
+  background: #fff;
+  height: 50px;
+}
+.ms-pagination {
+  padding: 20px 0;
+  text-align: right;
+}
+.ms-fr {
+  float: right;
+}
+.ms-tr {
+  text-align: right;
+}
+.el-button + .el-button {
+  margin-left: 0;
+}
 .ms-admin-header {
   display: flex;
   padding: 0;
@@ -298,3 +324,8 @@ textarea::-webkit-input-placeholder {
   border-left: none;
   border-radius: 0;
 }
+.ms-admin-container > .ms-admin-main iframe {
+  width: 100%;
+  height: 100%;
+  border: none !important;
+}

+ 5 - 0
src/main/webapp/static/ms-admin/4.7.0/less/index.less

@@ -229,5 +229,10 @@
                 }
             }
         }
+        // 嵌套iframe
+        iframe{
+            .ms-width-height(100%);
+            border: none !important;
+        }
     }
 }