Commit 85d6464a by wufan

Merge branch 'refactor/wufan/20210514/UI-refactor' into 'master'

feat:处理登录页样式

See merge request !28
parents 4071b9b2 92230572
...@@ -9,34 +9,38 @@ ...@@ -9,34 +9,38 @@
color: #999999; color: #999999;
line-height: 20px; line-height: 20px;
} }
.rwm { .rwm{
position: relative; position: relative;
width: 160px; width: 210px;
height: 160px; height: 210px;
text-align: center; text-align: center;
display: inline-block; display: inline-block;
margin-top: 24px; margin-top: 24px;
.error { border: 1px solid #e8e8e8;
border-radius: 2px;
padding:15px;
.error{
position: absolute; position: absolute;
width: 100%; width: 200px;
height: 100%; height: 200px;
background: rgba(255, 255, 255, 0.95); background: rgba(255, 255, 255, 0.95);
display: flex; display: flex;
align-items: center; align-items:center;
justify-content: center; justify-content:center;
left: 0px; left:5px;
top: 0px; top:5px;
div { div{
margin: 0 10px; margin: 0 10px;
font-size: 14px; font-size: 14px;
font-family: PingFangSC-Regular, PingFang SC; font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400; font-weight: 400;
color: #333333; color: #333333;
line-height: 20px; line-height: 20px;
} }
.ope { .ope{
cursor: pointer; cursor: pointer;
color: rgba(82, 137, 250, 1); color:rgba(82, 137, 250, 1);
} }
} }
} }
......
...@@ -129,6 +129,7 @@ function ExaminationManager(props: any) { ...@@ -129,6 +129,7 @@ function ExaminationManager(props: any) {
{ {
title: "创建时间", title: "创建时间",
dataIndex: "examCreateTime", dataIndex: "examCreateTime",
align:fixStr.right,
sorter: true, sorter: true,
sortOrder: field === "examCreateTime" ? order : sortStatus.type, sortOrder: field === "examCreateTime" ? order : sortStatus.type,
render: (text: any, record: any) => <span>{moment(text).format("YYYY-MM-DD HH:mm")}</span>, render: (text: any, record: any) => <span>{moment(text).format("YYYY-MM-DD HH:mm")}</span>,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment