YM
2024-05-20 6269e2718144c9ff760a00385d3552cebdd0ffe3
src/pages/inherit/index.vue
@@ -66,15 +66,12 @@
        </div>
      </div>
      <div style="padding-left: 0.5rem; margin-top: 20px">
        共 {{ this.nodeData.length }}个世医
        共 {{ totalCount }}个世医
      </div>
    </div>
    <div class="contentBox">
      <!-- echarts图 -->
      <div v-if="nodeData.length > 0" class="barChart" ref="barChart"></div>
      <div v-else>
        <el-empty description="暂无数据"></el-empty>
      </div>
      <div class="barChart" ref="barChart"></div>
      <div
        class="toolBox"
        v-if="showTool"
@@ -90,8 +87,9 @@
<script>
import * as echarts from "echarts";
import {
  getNodeCount,
  inheritMedicalSataStatistics,
  inheritMedicalList,
  inheritMedicalList
} from "@/api/index.js";
export default {
  data() {
@@ -101,60 +99,61 @@
      idIndex: 0,
      activeId: 28,
      conditionId: "",
      searchType: "KEYWORD",
      searchType: "DYNASTY",
      dynasty: [],
      nodeData: [],
      showTool: false,
      toolTop: 0,
      toolLeft: 0,
      toolInfo: {},
      totalCount: 0,
    };
  },
  onLoad(options) {
    this.idIndex = options.id;
    console.log("optionsoptionsoptions", options.id);
    // getDynasty();
  },
  mounted() {
    this.getStatistics();
    // this.getDynasty();
  },
  methods: {
    getStatistics() {
      inheritMedicalSataStatistics().then((res) => {
        this.dynasty = res.object;
        const defaultDynasty = this.dynasty.find((f) => f.dynasty == "宋");
        this.activeId = defaultDynasty.dynastyId;
        this.searchType = "DYNASTY";
        this.activeId = this.dynasty[0].dynastyId
        this.getData();
      });
    },
    getData() {
      this.nodeData = [];
      // const defaultDynasty = this.dynasty.find(f.dynasty == "宋");
      inheritMedicalList({
        keywords: this.keyword,
        dynastyId: this.activeId,
        searchType: this.searchType,
        path: this.conditionId,
        path: this.conditionId
      }).then((res) => {
        console.log(res);
        for (let i = 0; i < res.object.nodeList.length; i++) {
          const node = res.object.nodeList[i];
          if (
            this.nodeData.findIndex((citem) => citem.name == node.name) == -1
          ) {
            this.nodeData.push({
              ...node,
              itemStyle: {
                color: "#F8E2D7",
                borderColor: "#F3AA78",
                borderWidth: "3",
              },
            });
          }
          this.nodeData.push({
            ...node,
            id: node.identifier,
            itemStyle: {
              color: "#F8E2D7",
              borderColor: "#F3AA78",
              borderWidth: "3"
            }
          });
        }
        console.log(this.nodeData, "nodeData");
        getNodeCount({
          keywords: this.keyword,
          dynastyId: this.activeId,
          searchType: this.searchType,
          path: this.conditionId
        }).then((res) => {
          this.totalCount = res.object.totalCount
        });
        // 初始化 echarts
        this.initBarChart();
      });
@@ -164,18 +163,18 @@
      //通过 $ref 进行挂载
      let myChart = echarts.init(this.$refs.barChart);
      let FontSize = 12; // 字体大小
      let FontSize = 18; // 字体大小
      let BorderWidth = 2; // 边框大小
      let SymbolSize = 80; // 尺寸距离
      let Distance = 10;
      // 不同尺寸下修改echarts的字体
      if (window.innerWidth > 2560 && window.innerWidth <= 3840) {
        FontSize = 28;
        FontSize = 20;
        BorderWidth = 5;
        SymbolSize = 100;
        Distance = 33;
      } else if (window.innerWidth > 1920 && window.innerWidth <= 2560) {
        FontSize = 28;
        FontSize = 20;
        BorderWidth = 4;
        SymbolSize = 90;
        Distance = 22;
@@ -188,14 +187,14 @@
      let option = {
        title: {
          text: [""],
          text: [""]
        },
        backgroundColor: {
          type: "image",
          image: "/static/image/WMBg.png",
          repeat: "repeat-x", // 是否平铺,可以是 'repeat-x', 'repeat-y', 'no-repeat'
          size: "100% 100%", // 背景图片的尺寸,可以是百分比或者像素
          position: "center center", // 背景图片的位置,可以是 top, bottom, middle 或者百分比
          position: "center center" // 背景图片的位置,可以是 top, bottom, middle 或者百分比
        },
        tooltip: {},
        animationDurationUpdate: 1500,
@@ -204,13 +203,13 @@
          {
            type: "graph",
            layout: "force",
            symbolSize: 120,
            symbolSize: 100,
            //是否允许用户拖动图片
            roam: true,
            label: {
              show: true,
              color: "black", // 设置节点文字颜色为黑色
              fontSize: FontSize, // 设置文字大小
              fontSize: FontSize // 设置文字大小
            },
            edgeSymbol: ["circle", "arrow"],
            edgeSymbolSize: [4, 10],
@@ -225,7 +224,7 @@
                // params.data 是边的数据对象,你可以在这里定义关系名
                // 例如,你可以根据 source 和 target 的名称来定义关系名
                return params.data.relationName; // 如果定义了 relationName 则显示它,否则显示“父子”
              },
              }
            },
            //各个节点
            data: this.nodeData,
@@ -233,20 +232,25 @@
              color: "#000000",
              opacity: 0.9,
              width: 2,
              curveness: 0,
              curveness: 0
            },
            force: {
              // initLayout: 'circular',
              // gravity: 0
              friction: 0.1,
              repulsion: 500,
              edgeLength: 6,
            },
          },
        ],
              edgeLength: 6
            }
          }
        ]
      };
      //进行渲染
      myChart.setOption(option);
      myChart.getZr().on("click", (params) => {
        if (!params.target) {
          this.showTool = false;
        }
      });
      myChart.on("click", (params) => {
        console.log(params.event.offsetX, params.event.offsetY);
        if (params.componentType === "series") {
@@ -255,8 +259,10 @@
          this.toolLeft = params.event.offsetX + "px";
          this.toolInfo = {
            id: params.data.identifier,
            name: encodeURIComponent(params.data.name),
            name: encodeURIComponent(params.data.name)
          };
        } else {
          this.showTool = false;
        }
      });
    },
@@ -264,7 +270,7 @@
      switch (type) {
        case 1:
          uni.navigateTo({
            url: "/pages/character/detail?id=" + this.toolInfo.id,
            url: "/pages/character/detail?id=" + this.toolInfo.id
          });
          break;
        case 2:
@@ -275,7 +281,7 @@
              "&id=" +
              this.toolInfo.id +
              "&name=" +
              this.toolInfo.name,
              this.toolInfo.name
          });
          break;
        case 3:
@@ -286,7 +292,7 @@
              "&id=" +
              this.toolInfo.id +
              "&name=" +
              this.toolInfo.name,
              this.toolInfo.name
          });
          break;
      }
@@ -326,8 +332,8 @@
        this.keyword = "";
      }
      this.getData();
    },
  },
    }
  }
};
</script>
<style scoped>
@@ -428,8 +434,8 @@
  box-shadow: 1px 1px 5px #888888;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 0.25rem;
  width: 1.4rem;
  height: 0.3rem;
  margin-left: 0.2rem;
  border-radius: 0.13rem;
  float: left;
@@ -442,8 +448,8 @@
  box-shadow: 1px 1px 5px #888888;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 0.25rem;
  width: 1.6rem;
  height: 0.3rem;
  float: left;
  margin-left: 0.2rem;
  border-radius: 0.13rem;
@@ -463,7 +469,7 @@
}
.filterText {
  margin-left: 10px;
  font-size: 16px;
  font-size: 0.16rem;
}
.fontColor {
  color: #827e44 !important;