Xxxu
2020-07-03 1ac6ef52a03f25f9def9f6a2594d2a8196aa77f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<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>