Commit dcd06401 authored by 康振飞's avatar 康振飞

ProcessCase card css

parent f9ed7a6b
...@@ -20,12 +20,17 @@ ...@@ -20,12 +20,17 @@
<template slot="card" slot-scope="{row}"> <template slot="card" slot-scope="{row}">
<div class="card_box"> <div class="card_box">
<Row :gutter="16"> <Row :gutter="16">
<Col span="6">123</Col> <Col span="6">
<Col span="18"> <div class="file">
<p>{{l("title")}}{{row.title}}</p> <Icon type="ios-paper" v-if="row.id%2==0"/>
<p>{{l("creationTime")}}{{row.creationTime}}</p> <Icon type="md-film" v-else/>
<p>{{l("creator")}}{{row.creator}}</p> </div>
</Col> </Col>
<Col span="18">
<p><b>{{row.title}}</b></p>
<p>{{row.creationTime}}</p>
<p>{{row.id}}{{row.creator}}</p>
</Col>
</Row> </Row>
</div> </div>
......
...@@ -101,6 +101,19 @@ ...@@ -101,6 +101,19 @@
padding: 5px 50px 0; padding: 5px 50px 0;
.table_box{ .table_box{
height: calc(100vh - 105px); height: calc(100vh - 105px);
.card_box {
background: #F5F6FA;
border: 1px solid #dedede7d;
padding: 10px;
border-radius: 6px;
cursor: pointer;
i{
font-size: 62px;
}
}
.card_box:hover {
box-shadow: 4px 5px 7px #d2d2d2bd;
}
} }
} }
} }
......
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