Signed-off-by: a123456 <1209165801@qq.com>

master
a123456 7 years ago
parent ab747ea3d2
commit 5ae06a867a
  1. 28
      src/main/webapp/WEB-INF/manager/.project
  2. 0
      src/main/webapp/WEB-INF/manager/mweixin/head.ftl
  3. 14
      src/main/webapp/WEB-INF/manager/mweixin/material-list.ftl
  4. 28
      src/main/webapp/static/mweixin/.project
  5. 101
      src/main/webapp/static/mweixin/css/material-list.css
  6. 5
      src/main/webapp/static/mweixin/less/material-list.less

@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>manager</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.aptana.ide.core.unifiedBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.aptana.projects.webnature</nature>
</natures>
<filteredResources>
<filter>
<id>1548465241018</id>
<name></name>
<type>26</type>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-false-false-node_modules</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>

@ -16,11 +16,17 @@
<!--#include virtual="../include/menu.ftl" -->
</el-aside>
<el-container>
<el-header>
<!--#include virtual="../include/head.ftl" -->
<el-header height="50px">
<el-row class="ms-fr">
<el-button type="success">保存</el-button>
<el-button>更新</el-button>
<el-button>返回</el-button>
</el-row>
</el-header>
<el-main>
<!--#include virtual="../include/head.ftl" -->
<el-main class="ms-admin-material-list">
<div class="ms-admin-material-item">
</div>
</el-main>
</el-container>
</el-container>

@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>mweixin</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.aptana.ide.core.unifiedBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.aptana.projects.webnature</nature>
</natures>
<filteredResources>
<filter>
<id>1548465267988</id>
<name></name>
<type>26</type>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-false-false-node_modules</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>

@ -0,0 +1,101 @@
/*
*这里的值严格按照UI设计图标注值来进行设置
*/
/*
*颜色
*/
/*
*页面的边距
*/
/*
*字体
*/
/*
*头像
*/
/*
* 按钮
*/
/*
*对常见的多行样式进行了方法封装方便调用加快开发效率
*/
html,
body {
min-height: 100vh;
background-color: #eee;
margin: 0;
font-weight: initial !important;
font-size: 14px !important;
color: #333 !important;
}
html *,
body * {
text-decoration: none !important;
font-family: Verdana, Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
.ms-ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: block;
}
.ms-align-center {
display: flex;
align-items: center;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
font-weight: initial;
font-size: 12px;
color: #999;
resize: none;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
/*定义滚动条轨道 内阴影+圆角*/
*::-webkit-scrollbar-track {
border-radius: 10px;
/*滚动条的背景区域的圆角*/
background-color: #eee;
/*滚动条的背景颜色*/
}
/*定义滑块 内阴影+圆角*/
*::-webkit-scrollbar-thumb {
border-radius: 10px;
/*滚动条的圆角*/
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-material-list {
margin: 15px;
padding: 10px;
}

@ -0,0 +1,5 @@
@import "../../ms-admin/4.7.0/less/app.less";
.ms-admin-material-list {
.ms-margin-padding(15px, 10px);
}
Loading…
Cancel
Save