dashboardD-index.vue 537 Bytes
Newer Older
wuhao's avatar
wuhao committed
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
<script setup>
import layout from "./layout.vue"
const { proxy } = getCtx();
const store=useStore()

const state=reactive({
  APConfig:{
    height:930,
    backgroundFillAll:true,
    backgroundName:"A2",
    chartCount:5,
    backgroundConfig:{
      vectorBGA:$c.wh,
      vectorBGB:$c.wh,
      vectorBGC:$c.wh,
      vectorBGX:$c.bk.replace("#","%23"),
      vectorBGXOpa:0.03,
    }
  }
})



</script>
<template>
  <adaptivePanel :config="state.APConfig"><layout></layout></adaptivePanel>
</template>
<style lang="less">

</style>