<template>
|
<div class="charge-main" style="height:100%">
|
<div>
|
<el-row :gutter="13">
|
<el-col :span="4">
|
<charge-list></charge-list>
|
</el-col>
|
<el-col :span="20">
|
<charge-panel></charge-panel>
|
<order-panel></order-panel>
|
</el-col>
|
</el-row>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
import ChargeList from './charge-list'
|
import ChargePanel from './charge-panel'
|
import OrderPanel from './order-panel'
|
export default {
|
data () {
|
return {}
|
},
|
components: {
|
ChargeList,
|
ChargePanel,
|
OrderPanel
|
}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.charge-main {
|
background-image: url(~@/assets/img/camera/bg-content.png);
|
background-size: 100% 100%;
|
background-repeat: no-repeat;
|
}
|
</style>
|