You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
785 B
38 lines
785 B
<template>
|
|
<el-card class="box-card" shadow="hover">
|
|
<div slot="header">
|
|
<span style="border-left: 3px solid #338DE3FF;padding-left: 6px;">卡片名称</span>
|
|
<i class="el-icon-more" style="float: right;font-size: 20px;"></i>
|
|
</div>
|
|
<div>
|
|
<el-progress :percentage="50"></el-progress>
|
|
<el-progress :percentage="100" status="success"></el-progress>
|
|
<el-progress :percentage="100" status="warning"></el-progress>
|
|
<el-progress :percentage="50" status="exception"></el-progress>
|
|
</div>
|
|
</el-card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:'card2',
|
|
layout:{
|
|
x:4,
|
|
y:0,
|
|
w:6,
|
|
h:4,
|
|
i:"card2"
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {},
|
|
computed: {},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
</style>
|