index.vue 3.61 KB
Newer Older
1 2
<template>
  <div class="eContainer-home">
潘际乾 committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
    <c-row
      :gutter="10"
      v-for="cRow in cellRows"
      :key="cRow"
    >
      <c-col
        :span="24 / cellCols"
        v-for="cCol in cellCols"
        :key="cCol"
      >
        <component
          v-if="getComponentName([cRow - 1], [cCol - 1])"
          v-bind:is="getComponentName([cRow - 1], [cCol - 1])"
          :cellContentHeight="cellContentHeight"
        ></component>
      </c-col>
    </c-row>
20 21 22 23
  </div>
</template>

<script>
潘际乾 committed
24 25 26 27 28 29 30 31 32 33 34
import { createNamespacedHelpers } from "vuex";
const { mapState } = createNamespacedHelpers("UserContext");

import QuickVisit from "./cells/QuickVisit.vue";
import TaskStatistics from "./cells/TaskStatistics.vue";
import NoticeAnnouncement from "./cells/NoticeAnnouncement.vue";
import Hall from "./cells/Hall.vue";
import CustomerAnalyse from "./cells/CustomerAnalyse.vue";
import QuickSearch from "./cells/QuickSearch.vue";

import { cellDataDefinition } from "./config";
35 36 37 38

export default {
  name: "Home",
  components: {
潘际乾 committed
39 40 41 42 43 44
    QuickVisit,
    TaskStatistics,
    NoticeAnnouncement,
    Hall,
    CustomerAnalyse,
    QuickSearch,
潘际乾 committed
45
  },
46
  data() {
潘际乾 committed
47
    return {
潘际乾 committed
48
      cellContentHeight: 0,
潘际乾 committed
49
    };
50
  },
潘际乾 committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
  created() {
    this.loadCellData();
  },
  mounted() {
    this.calcCellContentHeight();
    this.calcCellContentHeightBind = this.calcCellContentHeight.bind(this);
    window.addEventListener("resize", this.calcCellContentHeightBind);
  },
  computed: {
    ...mapState({
      cellRows: (state) => state.homeCellsSetting.cellRows,
      cellCols: (state) => state.homeCellsSetting.cellCols,
      cellNames: (state) => state.homeCellsSetting.cellNames,
    }),
  },
  watch: {
    cellRows(newVal, oldVal) {
      this.calcCellContentHeight()
    },
  },
潘际乾 committed
71
  methods: {
潘际乾 committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
    loadCellData() {
      this.$store.commit(
        "UserContext/setHomeDefaultCells",
        cellDataDefinition
      );
      let cellsSettingDefault = localStorage.getItem("cells-setting-default");
      if (!cellsSettingDefault) {
        const rows = 2;
        const cols = 3;
        localStorage.setItem(
          "cells-setting-default",
          JSON.stringify({
            cellRows: rows,
            cellCols: cols,
            cellNames: this.generateRowColNames(
              rows,
              cols,
              cellDataDefinition.map((definition) => definition.name)
            ),
          })
        );
      }
      let userCellsSetting = localStorage.getItem(
        `cells-setting-${this.$store.state.UserContext.userId}`
      );
      if (!userCellsSetting) {
        userCellsSetting = localStorage.getItem("cells-setting-default");
      }
      this.$store.commit(
        "UserContext/setHomeCellsSetting",
        JSON.parse(userCellsSetting)
      );
    },
    generateRowColNames(rows, cols, cells) {
      const rArr = [];
      for (let i = 0; i < rows; i++) {
        const cArr = [];
        for (let j = 0; j < cols; j++) {
          cArr.push(cells[i * cols + j]);
        }
        rArr.push(cArr);
      }
      return rArr;
    },
    getComponentName(rowIdx, colIdx) {
      return this.cellNames[rowIdx] ? this.cellNames[rowIdx][colIdx] : null;
    },
    calcCellContentHeight() {
      this.cellContentHeight = this.$el.clientHeight * this.getRowHeightPercent() - 52 - 10
    },
    getRowHeightPercent() {
      // 每行预留 0.4% 的间距
      return 1 / this.cellRows - 0.004 * this.cellRows;
潘际乾 committed
125
    },
潘际乾 committed
126 127
  },
  destroyed() {
潘际乾 committed
128
    window.removeEventListener("resize", this.calcCellContentHeightBind);
潘际乾 committed
129
  },
130 131 132 133 134 135 136
};
</script>

<style scoped>
.eContainer-home {
  height: 100%;
  display: flex;
潘际乾 committed
137 138
  flex-direction: column;
  justify-content: space-around;
潘际乾 committed
139
}
140
</style>