Commit fd0991df authored by xiexingan's avatar xiexingan

tj

parent 43e58e66
<template lang='pug'> <template lang='pug'>
.card-warp .card-warp
.card-header( .card-header(
:style="{ height, 'line-height': height, background: bgcolor }" :style="{ height, 'line-height': height, background: bgcolor ,'border-bottom':borderBottom ? '1px solid #ececec' :''}"
) )
div.card-title(:style="{'font-size':size+'px','font-weight':weight}") div.card-title(:style="{'font-size':size+'px','font-weight':weight}")
div {{ title }} div {{ title }}
...@@ -35,6 +35,10 @@ export default { ...@@ -35,6 +35,10 @@ export default {
weight: { weight: {
type: String, type: String,
default: '800' default: '800'
},
borderBottom: {
type: Boolean,
default: true
} }
} }
} }
...@@ -49,7 +53,6 @@ export default { ...@@ -49,7 +53,6 @@ export default {
display: flex; display: flex;
// justify-content: space-between; // justify-content: space-between;
padding: 0 5px; padding: 0 5px;
border-bottom: 1px solid #ececec;
.card-title { .card-title {
display: flex; display: flex;
width: 100%; width: 100%;
......
This diff is collapsed.
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