123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <div id="centerRight2">
- <div class="bg-color-black">
- <div class="d-flex pt-2 pl-2">
- <span>
- <icon name="align-left" class="text-icon"></icon>
- </span>
- <span class="fs-xl text mx-2">待处理</span>
- </div>
- <div class="d-flex jc-center body-box">
- <dv-scroll-board class="dv-scr-board" :config="config" />
- </div>
- </div>
- </div>
- </template>
- <script>
- // import centerRight2Chart1 from '@/components/echart/centerRight/centerRightChart'
- export default {
- data() {
- return {
- config: {
- header: ['待处理', '单数', '金额'],
- data: [
- ['待开票', '123124', "150000000"],
- ['待回款', '123124-2', "100"],
- ['待回票', 'dev-123124', "100"],
- ['待付款', 'dev-123124', "100"]
- ],
- // rowNum: 5, //表格行数
- headerHeight: 35,
- headerBGC: '#0f1325', //表头
- oddRowBGC: '#0f1325', //奇数行
- evenRowBGC: '#171c33', //偶数行
- index: true,
- columnWidth: [50],
- align: ['center']
- }
- }
- },
- // components: { centerRight2Chart1 }
- }
- </script>
- <style lang="scss" scoped>
- #centerRight2 {
- $box-height: 401px;
- $box-width: 380px;
- padding: 5px;
- height: $box-height;
- width: $box-width;
- border-radius: 5px;
- display: flex;
- // padding-top: 10px;
- .bg-color-black {
- padding: 5px;
- height: $box-height;
- width: $box-width;
- border-radius: 10px;
- }
- .text {
- color: #c3cbde;
- }
- .body-box {
- border-radius: 10px;
- overflow: hidden;
- .dv-scr-board {
- width: 360px;
- height: 340px;
- }
- }
- }
- </style>
|