Compare commits
	
		
			2 Commits
		
	
	
		
			752df8417d
			...
			drone
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| af4b947c22 | |||
| 8012bbec9f | 
@@ -1,3 +1,3 @@
 | 
			
		||||
.dockerignore
 | 
			
		||||
dist
 | 
			
		||||
#dist
 | 
			
		||||
node_modules
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										58
									
								
								.drone.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										58
									
								
								.drone.yml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,58 @@
 | 
			
		||||
---
 | 
			
		||||
kind: pipeline
 | 
			
		||||
type: docker
 | 
			
		||||
name: default
 | 
			
		||||
 | 
			
		||||
steps:
 | 
			
		||||
- name: build
 | 
			
		||||
  image: node:16-alpine
 | 
			
		||||
  pull: if_not_exists
 | 
			
		||||
  environment:
 | 
			
		||||
    NODE_ENV: ""
 | 
			
		||||
  commands:
 | 
			
		||||
  - yarn install --frozen-lockfile
 | 
			
		||||
  - env ${NODE_ENV} yarn build:prod 
 | 
			
		||||
 | 
			
		||||
- name: publish
 | 
			
		||||
  image: docker:dind
 | 
			
		||||
  pull: if_not_exists
 | 
			
		||||
  volumes:
 | 
			
		||||
  - name: dockersock
 | 
			
		||||
    path: /var/run/docker.sock
 | 
			
		||||
  - name: dockerconfig
 | 
			
		||||
    path: /root/.docker
 | 
			
		||||
  commands:
 | 
			
		||||
  - docker build -t hub.kszny.picaiba.com/kszny/glass-ui ./
 | 
			
		||||
  - docker push hub.kszny.picaiba.com/kszny/glass-ui
 | 
			
		||||
  depends_on:
 | 
			
		||||
  - build
 | 
			
		||||
 | 
			
		||||
- name: deploy
 | 
			
		||||
  image: appleboy/drone-ssh
 | 
			
		||||
  pull: if-not-exists
 | 
			
		||||
  settings:
 | 
			
		||||
    host:
 | 
			
		||||
      - 172.24.145.74
 | 
			
		||||
    username: root
 | 
			
		||||
    password: Root@123
 | 
			
		||||
    port: 22
 | 
			
		||||
    command_timeout: 2m
 | 
			
		||||
    script:
 | 
			
		||||
    - docker pull hub.kszny.picaiba.com/kszny/glass-ui
 | 
			
		||||
    - docker run --rm -v /data/www/ksznpt:/tmp hub.kszny.picaiba.com/kszny/glass-ui sh -c "rm -rf /tmp/* && mv -f /html /tmp"
 | 
			
		||||
  depends_on:
 | 
			
		||||
  - publish
 | 
			
		||||
 | 
			
		||||
volumes:
 | 
			
		||||
- name: dockersock
 | 
			
		||||
  host:
 | 
			
		||||
    path: /var/run/docker.sock
 | 
			
		||||
- name: dockerconfig
 | 
			
		||||
  host:
 | 
			
		||||
    path: /root/.docker
 | 
			
		||||
 | 
			
		||||
trigger:
 | 
			
		||||
  branch:
 | 
			
		||||
  - projects/mescc/develop
 | 
			
		||||
  event:
 | 
			
		||||
  - push
 | 
			
		||||
							
								
								
									
										24
									
								
								Dockerfile
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								Dockerfile
									
									
									
									
									
								
							@@ -1,21 +1,3 @@
 | 
			
		||||
FROM node:16-alpine as build-stage
 | 
			
		||||
 | 
			
		||||
WORKDIR /admim
 | 
			
		||||
 | 
			
		||||
COPY .npmrc package.json yarn.lock ./
 | 
			
		||||
RUN --mount=type=cache,id=yarn-store,target=/root/.yarn-store \
 | 
			
		||||
    yarn install --frozen-lockfile
 | 
			
		||||
 | 
			
		||||
COPY . .
 | 
			
		||||
ARG NODE_ENV=""
 | 
			
		||||
RUN env ${NODE_ENV} yarn build:prod
 | 
			
		||||
 | 
			
		||||
## -- stage: dist => nginx --
 | 
			
		||||
FROM nginx:alpine
 | 
			
		||||
 | 
			
		||||
ENV TZ=Asia/Shanghai
 | 
			
		||||
 | 
			
		||||
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
 | 
			
		||||
COPY --from=build-stage /admim/dist /usr/share/nginx/html
 | 
			
		||||
 | 
			
		||||
EXPOSE 80
 | 
			
		||||
FROM busybox 
 | 
			
		||||
LABEL maintainer thomas.hairong@gmail.com
 | 
			
		||||
COPY dist /html/
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,6 @@
 | 
			
		||||
    "highlight.js": "^11.9.0",
 | 
			
		||||
    "js-beautify": "^1.15.1",
 | 
			
		||||
    "jsencrypt": "3.3.1",
 | 
			
		||||
    "lodash": "^4.17.21",
 | 
			
		||||
    "mockjs": "^1.1.0",
 | 
			
		||||
    "moment": "^2.30.1",
 | 
			
		||||
    "nprogress": "0.2.0",
 | 
			
		||||
 
 | 
			
		||||
@@ -1,172 +1,4 @@
 | 
			
		||||
import axios from "@/utils/request";
 | 
			
		||||
import { deepClone } from "../../utils";
 | 
			
		||||
 | 
			
		||||
/* 状态 */
 | 
			
		||||
const state = {
 | 
			
		||||
  copilot: {
 | 
			
		||||
    /* 产量驾驶舱 */
 | 
			
		||||
    yield: {
 | 
			
		||||
      ftoInvest: null,
 | 
			
		||||
      chipInvest: null,
 | 
			
		||||
      chipOutput: null,
 | 
			
		||||
      stdOutput: null,
 | 
			
		||||
      bipvOutput: null,
 | 
			
		||||
    },
 | 
			
		||||
    /* 能源驾驶舱 */
 | 
			
		||||
    energy: {},
 | 
			
		||||
    /* 效率驾驶舱 */
 | 
			
		||||
    efficiency: {},
 | 
			
		||||
  },
 | 
			
		||||
  home: {
 | 
			
		||||
    ftoInvest: null,
 | 
			
		||||
    chipInvest: null,
 | 
			
		||||
    chipOutput: null,
 | 
			
		||||
    stdOutput: null,
 | 
			
		||||
    bipvOutput: null,
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const mutations = {
 | 
			
		||||
  SET_HOME_INFO: (state, payload) => {
 | 
			
		||||
    state.home.ftoInvest = payload.ftoInvest;
 | 
			
		||||
    state.home.chipInvest = payload.chipInvest;
 | 
			
		||||
    state.home.chipOutput = payload.chipOutput;
 | 
			
		||||
    state.home.stdOutput = payload.stdOutput;
 | 
			
		||||
    state.home.bipvOutput = payload.bipvOutput;
 | 
			
		||||
  },
 | 
			
		||||
  SET_COPILOT_INFO: (state, { type, payload }) => {
 | 
			
		||||
    switch (type) {
 | 
			
		||||
      case "yield":
 | 
			
		||||
        state.copilot.yield.ftoInvest = payload.ftoInvest;
 | 
			
		||||
        state.copilot.yield.chipInvest = payload.chipInvest;
 | 
			
		||||
        state.copilot.yield.chipOutput = payload.chipOutput;
 | 
			
		||||
        state.copilot.yield.stdOutput = payload.stdOutput;
 | 
			
		||||
        state.copilot.yield.bipvOutput = payload.bipvOutput;
 | 
			
		||||
        break;
 | 
			
		||||
      case "energy":
 | 
			
		||||
        state.copilot.energy = payload.data;
 | 
			
		||||
        break;
 | 
			
		||||
      case "efficiency":
 | 
			
		||||
        state.copilot.efficiency = payload.data;
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const actions = {
 | 
			
		||||
  /** 初始化首页数据 */
 | 
			
		||||
  async initHome({ commit }) {
 | 
			
		||||
    const dataArr = await getHomeInfo();
 | 
			
		||||
    const targetArr = await getHomeTarget();
 | 
			
		||||
    const payload = splitCurrentAndPrevious(dataArr, targetArr);
 | 
			
		||||
    commit("SET_HOME_INFO", payload);
 | 
			
		||||
  },
 | 
			
		||||
  /** 初始化驾驶舱数据 */
 | 
			
		||||
  async initCopilot({ commit }, { period, source }) {
 | 
			
		||||
    const fetcher = {
 | 
			
		||||
      yield: getCopilotYield,
 | 
			
		||||
      energy: null,
 | 
			
		||||
      efficiency: null,
 | 
			
		||||
    }[source];
 | 
			
		||||
    let { data: factoryList, type } = await fetcher(period);
 | 
			
		||||
 | 
			
		||||
    const payload = splitCurrentAndPrevious(factoryList);
 | 
			
		||||
    commit("SET_COPILOT_INFO", { type, payload });
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  namespaced: true,
 | 
			
		||||
  state,
 | 
			
		||||
  mutations,
 | 
			
		||||
  actions,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// utils function
 | 
			
		||||
function splitCurrentAndPrevious(factoryListResponse, targetListResponse) {
 | 
			
		||||
  const { chipInvest, ftoInvest, chipOutput, stdOutput, bipvOutput } = init();
 | 
			
		||||
  if (factoryListResponse) {
 | 
			
		||||
    for (const factory of factoryListResponse) {
 | 
			
		||||
      debugger;
 | 
			
		||||
      const fId = getFactoryId(factory);
 | 
			
		||||
      // 获取目标值
 | 
			
		||||
      if (targetListResponse) {
 | 
			
		||||
        const { chipYield, componentYield, bipvProductOutput } =
 | 
			
		||||
          getFactoryTargetValue(targetListResponse, fId);
 | 
			
		||||
        chipOutput.target[fId] = chipYield;
 | 
			
		||||
        stdOutput.target[fId] = componentYield;
 | 
			
		||||
        bipvOutput.target[fId] = bipvProductOutput;
 | 
			
		||||
      }
 | 
			
		||||
      // 芯片投入
 | 
			
		||||
      chipInvest.current[fId] = factory.inputNumber;
 | 
			
		||||
      chipInvest.previous[fId] = factory.previousYearInputNumber;
 | 
			
		||||
      // FTO投入
 | 
			
		||||
      ftoInvest.current[fId] = factory.chipInput;
 | 
			
		||||
      ftoInvest.previous[fId] = factory.previousYearChipInput;
 | 
			
		||||
      // 产出数据, 0 - (玻璃)芯片产出, 1 - 标准组件产出, 2 - BIPV产出
 | 
			
		||||
      const _t = [chipOutput, stdOutput, bipvOutput][factory.glassType];
 | 
			
		||||
      _t.current[fId] = factory.outputNumber;
 | 
			
		||||
      _t.previous[fId] = factory.previousYearOutputNumber;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return {
 | 
			
		||||
      chipInvest,
 | 
			
		||||
      ftoInvest,
 | 
			
		||||
      chipOutput,
 | 
			
		||||
      stdOutput,
 | 
			
		||||
      bipvOutput,
 | 
			
		||||
    };
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function getFactoryId(factory) {
 | 
			
		||||
  return factory.factory;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function getFactoryTargetValue(targetList, factoryId) {
 | 
			
		||||
  const target = targetList.find((item) => item.factory === factoryId);
 | 
			
		||||
  if (target) {
 | 
			
		||||
    return {
 | 
			
		||||
      // 自带模拟数据了.... random_default
 | 
			
		||||
      chipYield: target.chipYield ?? random_default(),
 | 
			
		||||
      componentYield: target.componentYield ?? random_default(),
 | 
			
		||||
      bipvProductOutput: target.bipvProductOutput ?? random_default(),
 | 
			
		||||
    };
 | 
			
		||||
  }
 | 
			
		||||
  return {
 | 
			
		||||
    chipYield: random_default(),
 | 
			
		||||
    componentYield: random_default(),
 | 
			
		||||
    bipvProductOutput: random_default(),
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function init() {
 | 
			
		||||
  const t_ = {
 | 
			
		||||
    current: Array(7).fill(0),
 | 
			
		||||
    previous: Array(7).fill(0),
 | 
			
		||||
  };
 | 
			
		||||
  // 芯片投入
 | 
			
		||||
  const chipInvest = deepClone(t_);
 | 
			
		||||
  // FTO投入
 | 
			
		||||
  const ftoInvest = deepClone(t_);
 | 
			
		||||
  // 芯片产出
 | 
			
		||||
  const chipOutput = {
 | 
			
		||||
    ...deepClone(t_),
 | 
			
		||||
    target: Array(7).fill(0),
 | 
			
		||||
  };
 | 
			
		||||
  // 标准组件产出
 | 
			
		||||
  const stdOutput = deepClone(chipOutput);
 | 
			
		||||
  // BIPV产出
 | 
			
		||||
  const bipvOutput = deepClone(chipOutput);
 | 
			
		||||
 | 
			
		||||
  return {
 | 
			
		||||
    chipInvest,
 | 
			
		||||
    ftoInvest,
 | 
			
		||||
    chipOutput,
 | 
			
		||||
    stdOutput,
 | 
			
		||||
    bipvOutput,
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function random_default() {
 | 
			
		||||
  return 0;
 | 
			
		||||
@@ -202,41 +34,162 @@ async function getHomeTarget() {
 | 
			
		||||
  return null;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
async function fetcher(params) {
 | 
			
		||||
  const { code, data } = await axios.post("/ip/prod-output/query-by-date", {
 | 
			
		||||
    ...params,
 | 
			
		||||
  });
 | 
			
		||||
  if (code == 0) {
 | 
			
		||||
    return data;
 | 
			
		||||
  }
 | 
			
		||||
  console.warn("getCopilotYield failed, code: ", code);
 | 
			
		||||
  return null;
 | 
			
		||||
}
 | 
			
		||||
/* 状态 */
 | 
			
		||||
const state = {
 | 
			
		||||
  copilot: {
 | 
			
		||||
    /* 产量驾驶舱 */
 | 
			
		||||
    yield: {},
 | 
			
		||||
    /* 能源驾驶舱 */
 | 
			
		||||
    energy: {},
 | 
			
		||||
    /* 效率驾驶舱 */
 | 
			
		||||
    efficiency: {},
 | 
			
		||||
  },
 | 
			
		||||
  home: {
 | 
			
		||||
    ftoInvest: null,
 | 
			
		||||
    chipInvest: null,
 | 
			
		||||
    chipOutput: null,
 | 
			
		||||
    stdOutput: null,
 | 
			
		||||
    bipvOutput: null,
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
async function getCopilotYield(period) {
 | 
			
		||||
  // 请求参数,直接一次性获取所有工厂
 | 
			
		||||
  let queryParams = {
 | 
			
		||||
    factorys: [],
 | 
			
		||||
    date: 4,
 | 
			
		||||
  };
 | 
			
		||||
const mutations = {
 | 
			
		||||
  SET_HOME_INFO: (state, payload) => {
 | 
			
		||||
    state.home.ftoInvest = payload.ftoInvest;
 | 
			
		||||
    state.home.chipInvest = payload.chipInvest;
 | 
			
		||||
    state.home.chipOutput = payload.chipOutput;
 | 
			
		||||
    state.home.stdOutput = payload.stdOutput;
 | 
			
		||||
    state.home.bipvOutput = payload.bipvOutput;
 | 
			
		||||
  },
 | 
			
		||||
  SET_COPILOT_INFO: (state) => {},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
  switch (period) {
 | 
			
		||||
    case "日":
 | 
			
		||||
      queryParams.date = 1;
 | 
			
		||||
      break;
 | 
			
		||||
    case "周":
 | 
			
		||||
      queryParams.date = 2;
 | 
			
		||||
      break;
 | 
			
		||||
    case "月":
 | 
			
		||||
      queryParams.date = 3;
 | 
			
		||||
      break;
 | 
			
		||||
    case "年":
 | 
			
		||||
      queryParams.date = 4;
 | 
			
		||||
      break;
 | 
			
		||||
    default:
 | 
			
		||||
      queryParams.date = 1;
 | 
			
		||||
      break;
 | 
			
		||||
  }
 | 
			
		||||
const actions = {
 | 
			
		||||
  /** 初始化首页数据 */
 | 
			
		||||
  async initHome({ commit }) {
 | 
			
		||||
    const dataArr = await getHomeInfo();
 | 
			
		||||
    const targetArr = await getHomeTarget();
 | 
			
		||||
 | 
			
		||||
  return { data: await fetcher(queryParams), type: "yield" };
 | 
			
		||||
}
 | 
			
		||||
    const chipInvest = {
 | 
			
		||||
      current: Array(7).fill(0),
 | 
			
		||||
      previous: Array(7).fill(0),
 | 
			
		||||
    }; // 芯片投入
 | 
			
		||||
    const ftoInvest = {
 | 
			
		||||
      current: Array(7).fill(0),
 | 
			
		||||
      previous: Array(7).fill(0),
 | 
			
		||||
    }; // FTO投入
 | 
			
		||||
    const chipOutput = {
 | 
			
		||||
      current: Array(7).fill(0),
 | 
			
		||||
      previous: Array(7).fill(0),
 | 
			
		||||
      target: Array(7).fill(0),
 | 
			
		||||
    }; // 芯片产出
 | 
			
		||||
    const stdOutput = {
 | 
			
		||||
      current: Array(7).fill(0),
 | 
			
		||||
      previous: Array(7).fill(0),
 | 
			
		||||
      target: Array(7).fill(0),
 | 
			
		||||
    }; // 标准组件产出
 | 
			
		||||
    const bipvOutput = {
 | 
			
		||||
      current: Array(7).fill(0),
 | 
			
		||||
      previous: Array(7).fill(0),
 | 
			
		||||
      target: Array(7).fill(0),
 | 
			
		||||
    }; // BIPV产出
 | 
			
		||||
 | 
			
		||||
    if (dataArr) {
 | 
			
		||||
      for (const factory of dataArr) {
 | 
			
		||||
        /* 工厂索引 */
 | 
			
		||||
        const factoryId = factory.factory;
 | 
			
		||||
        /* 收集目标数据 */
 | 
			
		||||
        if (targetArr) {
 | 
			
		||||
          const target = targetArr.find((item) => item.factory === factoryId);
 | 
			
		||||
          if (target) {
 | 
			
		||||
            chipOutput.target.splice(factoryId, 1, target.chipYield ?? 0);
 | 
			
		||||
            stdOutput.target.splice(factoryId, 1, target.componentYield ?? 0);
 | 
			
		||||
            bipvOutput.target.splice(factoryId, 1, target.bipvProductOutput ?? 0);
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
        /* 收集芯片投入数据 */
 | 
			
		||||
        chipInvest.current.splice(
 | 
			
		||||
          factoryId,
 | 
			
		||||
          1,
 | 
			
		||||
          factory.inputNumber ?? random_default()
 | 
			
		||||
        );
 | 
			
		||||
        chipInvest.previous.splice(
 | 
			
		||||
          factoryId,
 | 
			
		||||
          1,
 | 
			
		||||
          factory.previousYearInputNumber ?? random_default()
 | 
			
		||||
        );
 | 
			
		||||
        /* 收集FTO投入数据 */
 | 
			
		||||
        ftoInvest.current.splice(
 | 
			
		||||
          factoryId,
 | 
			
		||||
          1,
 | 
			
		||||
          factory.chipInput ?? random_default()
 | 
			
		||||
        );
 | 
			
		||||
        ftoInvest.previous.splice(
 | 
			
		||||
          factoryId,
 | 
			
		||||
          1,
 | 
			
		||||
          factory.previousYearChipInput ?? random_default()
 | 
			
		||||
        );
 | 
			
		||||
        /* 收集产出数据 */
 | 
			
		||||
        switch (factory.glassType) {
 | 
			
		||||
          case 0:
 | 
			
		||||
            // 玻璃芯片 产出
 | 
			
		||||
            chipOutput.current.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.outputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
            chipOutput.previous.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.previousYearOutputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
            break;
 | 
			
		||||
          case 1:
 | 
			
		||||
            // 标准组件 产出
 | 
			
		||||
            stdOutput.current.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.outputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
            stdOutput.previous.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.previousYearOutputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
            break;
 | 
			
		||||
          case 2:
 | 
			
		||||
            // BIPV 产出
 | 
			
		||||
            bipvOutput.current.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.outputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
            bipvOutput.previous.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.previousYearOutputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
            break;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      /* 更新 state */
 | 
			
		||||
      commit("SET_HOME_INFO", {
 | 
			
		||||
        ftoInvest,
 | 
			
		||||
        chipInvest,
 | 
			
		||||
        chipOutput,
 | 
			
		||||
        stdOutput,
 | 
			
		||||
        bipvOutput,
 | 
			
		||||
      });
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  /** 初始化驾驶舱数据 */
 | 
			
		||||
  async initCopilot({ commit }) {},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  namespaced: true,
 | 
			
		||||
  state,
 | 
			
		||||
  mutations,
 | 
			
		||||
  actions,
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <DoubleRingWrapperVue :data-source="dataBundle" :period="period" />
 | 
			
		||||
  <DoubleRingWrapperVue />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
@@ -15,14 +15,9 @@ import DoubleRingWrapperVue from "./base/DoubleRingWrapper.vue";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "BipvOutput",
 | 
			
		||||
  components: { DoubleRingWrapperVue },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  props: {},
 | 
			
		||||
  data() {
 | 
			
		||||
    return { dataBundle: null };
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 
 | 
			
		||||
@@ -1,121 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: FtoInvest.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:59:28
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <bar-chart-base
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    class="fto-chart"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBase from "./base/BarChartBase.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ChipInvest",
 | 
			
		||||
  components: { BarChartBase },
 | 
			
		||||
  data() {
 | 
			
		||||
    // 城市数组的顺序必须是固定的
 | 
			
		||||
    const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
 | 
			
		||||
    return {
 | 
			
		||||
      xAxis: cities,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    legend() {
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
          return [{ label: "昨日", color: "#12f7f1" }];
 | 
			
		||||
        case "周":
 | 
			
		||||
          return [{ label: "本周", color: "#12f7f1" }];
 | 
			
		||||
        case "月": {
 | 
			
		||||
          const year = new Date().getFullYear();
 | 
			
		||||
          const month = new Date().getMonth() + 1;
 | 
			
		||||
          return [
 | 
			
		||||
            { label: `${year}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year - 1}年${month}月`, color: "#58adfa" },
 | 
			
		||||
          ];
 | 
			
		||||
        }
 | 
			
		||||
        case "年": {
 | 
			
		||||
          const year = new Date().getFullYear();
 | 
			
		||||
          return [
 | 
			
		||||
            { label: `${year - 1}年`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年`, color: "#58adfa" },
 | 
			
		||||
          ];
 | 
			
		||||
        }
 | 
			
		||||
        default:
 | 
			
		||||
          return [
 | 
			
		||||
            { label: `${year - 1}年`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年`, color: "#58adfa" },
 | 
			
		||||
          ];
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    series() {
 | 
			
		||||
      const template =
 | 
			
		||||
        this.period == "日" || this.period == "周"
 | 
			
		||||
          ? [
 | 
			
		||||
              {
 | 
			
		||||
                name: "样例数据--2023年",
 | 
			
		||||
                data: Array.from({ length: 7 }, () =>
 | 
			
		||||
                  Math.floor(Math.random() * 1000)
 | 
			
		||||
                ),
 | 
			
		||||
              },
 | 
			
		||||
            ]
 | 
			
		||||
          : [
 | 
			
		||||
              {
 | 
			
		||||
                name: "样例数据--2023年",
 | 
			
		||||
                data: Array.from({ length: 7 }, () =>
 | 
			
		||||
                  Math.floor(Math.random() * 1000)
 | 
			
		||||
                ),
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                name: "样例数据--2024年",
 | 
			
		||||
                data: Array.from({ length: 7 }, () =>
 | 
			
		||||
                  Math.floor(Math.random() * 1000)
 | 
			
		||||
                ),
 | 
			
		||||
              },
 | 
			
		||||
            ];
 | 
			
		||||
      const ftoInvest = this.$store.getters.home.ftoInvest;
 | 
			
		||||
      if (!ftoInvest || !ftoInvest.current || !ftoInvest.previous) {
 | 
			
		||||
        return [
 | 
			
		||||
          {
 | 
			
		||||
            name: "样例数据--2023年",
 | 
			
		||||
            data: Array.from({ length: 7 }, () =>
 | 
			
		||||
              Math.floor(Math.random() * 1000)
 | 
			
		||||
            ),
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: "样例数据--2024年",
 | 
			
		||||
            data: Array.from({ length: 7 }, () =>
 | 
			
		||||
              Math.floor(Math.random() * 1000)
 | 
			
		||||
            ),
 | 
			
		||||
          },
 | 
			
		||||
        ];
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return [
 | 
			
		||||
        {
 | 
			
		||||
          name: `${new Date().getFullYear() - 1}年`,
 | 
			
		||||
          data: ftoInvest.previous,
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: `${new Date().getFullYear()}年`,
 | 
			
		||||
          data: ftoInvest.current,
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <DoubleRingWrapperVue :data-source="dataBundle" :period="period" />
 | 
			
		||||
  <DoubleRingWrapperVue />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
@@ -15,14 +15,9 @@ import DoubleRingWrapperVue from "./base/DoubleRingWrapper.vue";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ChipOutput",
 | 
			
		||||
  components: { DoubleRingWrapperVue },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  props: {},
 | 
			
		||||
  data() {
 | 
			
		||||
    return { dataBundle: null };
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 
 | 
			
		||||
@@ -1,121 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: FtoInvest.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:59:28
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <bar-chart-base
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    class="fto-chart"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBase from "./base/BarChartBase.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "FtoInvest",
 | 
			
		||||
  components: { BarChartBase },
 | 
			
		||||
  data() {
 | 
			
		||||
    // 城市数组的顺序必须是固定的
 | 
			
		||||
    const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
 | 
			
		||||
    return {
 | 
			
		||||
      xAxis: cities,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    legend() {
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
          return [{ label: "昨日", color: "#12f7f1" }];
 | 
			
		||||
        case "周":
 | 
			
		||||
          return [{ label: "本周", color: "#12f7f1" }];
 | 
			
		||||
        case "月": {
 | 
			
		||||
          const year = new Date().getFullYear();
 | 
			
		||||
          const month = new Date().getMonth() + 1;
 | 
			
		||||
          return [
 | 
			
		||||
            { label: `${year}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year - 1}年${month}月`, color: "#58adfa" },
 | 
			
		||||
          ];
 | 
			
		||||
        }
 | 
			
		||||
        case "年": {
 | 
			
		||||
          const year = new Date().getFullYear();
 | 
			
		||||
          return [
 | 
			
		||||
            { label: `${year - 1}年`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年`, color: "#58adfa" },
 | 
			
		||||
          ];
 | 
			
		||||
        }
 | 
			
		||||
        default:
 | 
			
		||||
          return [
 | 
			
		||||
            { label: `${year - 1}年`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年`, color: "#58adfa" },
 | 
			
		||||
          ];
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    series() {
 | 
			
		||||
      const template =
 | 
			
		||||
        this.period == "日" || this.period == "周"
 | 
			
		||||
          ? [
 | 
			
		||||
              {
 | 
			
		||||
                name: "样例数据--2023年",
 | 
			
		||||
                data: Array.from({ length: 7 }, () =>
 | 
			
		||||
                  Math.floor(Math.random() * 1000)
 | 
			
		||||
                ),
 | 
			
		||||
              },
 | 
			
		||||
            ]
 | 
			
		||||
          : [
 | 
			
		||||
              {
 | 
			
		||||
                name: "样例数据--2023年",
 | 
			
		||||
                data: Array.from({ length: 7 }, () =>
 | 
			
		||||
                  Math.floor(Math.random() * 1000)
 | 
			
		||||
                ),
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                name: "样例数据--2024年",
 | 
			
		||||
                data: Array.from({ length: 7 }, () =>
 | 
			
		||||
                  Math.floor(Math.random() * 1000)
 | 
			
		||||
                ),
 | 
			
		||||
              },
 | 
			
		||||
            ];
 | 
			
		||||
      const ftoInvest = this.$store.getters.home.ftoInvest;
 | 
			
		||||
      if (!ftoInvest || !ftoInvest.current || !ftoInvest.previous) {
 | 
			
		||||
        return [
 | 
			
		||||
          {
 | 
			
		||||
            name: "样例数据--2023年",
 | 
			
		||||
            data: Array.from({ length: 7 }, () =>
 | 
			
		||||
              Math.floor(Math.random() * 1000)
 | 
			
		||||
            ),
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: "样例数据--2024年",
 | 
			
		||||
            data: Array.from({ length: 7 }, () =>
 | 
			
		||||
              Math.floor(Math.random() * 1000)
 | 
			
		||||
            ),
 | 
			
		||||
          },
 | 
			
		||||
        ];
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return [
 | 
			
		||||
        {
 | 
			
		||||
          name: `${new Date().getFullYear() - 1}年`,
 | 
			
		||||
          data: ftoInvest.previous,
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: `${new Date().getFullYear()}年`,
 | 
			
		||||
          data: ftoInvest.current,
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <DoubleRingWrapperVue data-source="标准组件输出" :period="period" />
 | 
			
		||||
  <DoubleRingWrapperVue />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
@@ -15,12 +15,7 @@ import DoubleRingWrapperVue from "./base/DoubleRingWrapper.vue";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "StdOutput",
 | 
			
		||||
  components: { DoubleRingWrapperVue },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  props: {},
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -1,253 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: BarChartBase.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:59:28
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <chart-container class="bar-chart-base">
 | 
			
		||||
    <div class="legend">
 | 
			
		||||
      <span
 | 
			
		||||
        v-for="item in legend"
 | 
			
		||||
        :key="item.label"
 | 
			
		||||
        class="legend-item"
 | 
			
		||||
        :style="{ fontSize: isFullscreen ? '0.58vw' : '0.54vw' }"
 | 
			
		||||
        >{{ item.label }}</span
 | 
			
		||||
      >
 | 
			
		||||
    </div>
 | 
			
		||||
    <div
 | 
			
		||||
      ref="chart"
 | 
			
		||||
      style="max-width: 50vw"
 | 
			
		||||
      :style="{ height: vHeight + 'vh' }"
 | 
			
		||||
    ></div>
 | 
			
		||||
  </chart-container>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import screenfull from "screenfull";
 | 
			
		||||
import ChartContainerVue from "../../../../components/ChartContainer.vue";
 | 
			
		||||
import chartMixin from "@/mixins/chart.js";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "BarChartBase",
 | 
			
		||||
  components: {
 | 
			
		||||
    ChartContainer: ChartContainerVue,
 | 
			
		||||
  },
 | 
			
		||||
  mixins: [chartMixin],
 | 
			
		||||
  props: {
 | 
			
		||||
    vHeight: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 34,
 | 
			
		||||
    },
 | 
			
		||||
    legend: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    xAxis: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    series: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      isFullscreen: false,
 | 
			
		||||
      actualOptions: null,
 | 
			
		||||
      options: {
 | 
			
		||||
        grid: {
 | 
			
		||||
          left: "5%",
 | 
			
		||||
          right: "4%",
 | 
			
		||||
          bottom: "3%",
 | 
			
		||||
          top: "15%",
 | 
			
		||||
          containLabel: true,
 | 
			
		||||
        },
 | 
			
		||||
        tooltip: {},
 | 
			
		||||
        xAxis: {
 | 
			
		||||
          axisTick: {
 | 
			
		||||
            show: false,
 | 
			
		||||
          },
 | 
			
		||||
          axisLine: {
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              color: "#4561AE",
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
          axisLabel: {
 | 
			
		||||
            color: "#fff",
 | 
			
		||||
            fontSize: 12,
 | 
			
		||||
          },
 | 
			
		||||
          data: this.xAxis,
 | 
			
		||||
        },
 | 
			
		||||
        yAxis: {
 | 
			
		||||
          name: "单位/片",
 | 
			
		||||
          nameTextStyle: {
 | 
			
		||||
            color: "#fff",
 | 
			
		||||
            fontSize: 12,
 | 
			
		||||
          },
 | 
			
		||||
          axisTick: {
 | 
			
		||||
            show: false,
 | 
			
		||||
          },
 | 
			
		||||
          axisLabel: {
 | 
			
		||||
            color: "#fff",
 | 
			
		||||
            fontSize: 12,
 | 
			
		||||
          },
 | 
			
		||||
          axisLine: {
 | 
			
		||||
            show: true,
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              color: "#4561AE",
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
          splitLine: {
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              color: "#4561AE",
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        series: [
 | 
			
		||||
          {
 | 
			
		||||
            name: "", // this.series[0].name,
 | 
			
		||||
            type: "bar",
 | 
			
		||||
            barWidth: 12,
 | 
			
		||||
            itemStyle: {
 | 
			
		||||
              borderRadius: [10, 10, 0, 0],
 | 
			
		||||
              color: {
 | 
			
		||||
                type: "linear",
 | 
			
		||||
                x: 0,
 | 
			
		||||
                y: 0,
 | 
			
		||||
                x2: 0,
 | 
			
		||||
                y2: 1,
 | 
			
		||||
                colorStops: [
 | 
			
		||||
                  {
 | 
			
		||||
                    offset: 0,
 | 
			
		||||
                    color: "#12f7f1", // 0% 处的颜色
 | 
			
		||||
                  },
 | 
			
		||||
                  {
 | 
			
		||||
                    offset: 0.35,
 | 
			
		||||
                    color: "#12f7f177", // 100% 处的颜色
 | 
			
		||||
                  },
 | 
			
		||||
                  {
 | 
			
		||||
                    offset: 0.75,
 | 
			
		||||
                    color: "#12f7f133", // 100% 处的颜色
 | 
			
		||||
                  },
 | 
			
		||||
                  {
 | 
			
		||||
                    offset: 1,
 | 
			
		||||
                    color: "transparent", // 100% 处的颜色
 | 
			
		||||
                  },
 | 
			
		||||
                ],
 | 
			
		||||
                global: false, // 缺省为 false
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
            data: [], // this.series[0].data,
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: "", // this.series[1].name,
 | 
			
		||||
            type: "bar",
 | 
			
		||||
            barWidth: 12,
 | 
			
		||||
            // tooltip: {
 | 
			
		||||
            //   valueFormatter: function (value) {
 | 
			
		||||
            //     return value + " ml";
 | 
			
		||||
            //   },
 | 
			
		||||
            // },
 | 
			
		||||
            itemStyle: {
 | 
			
		||||
              borderRadius: [10, 10, 0, 0],
 | 
			
		||||
              color: {
 | 
			
		||||
                type: "linear",
 | 
			
		||||
                x: 0,
 | 
			
		||||
                y: 0,
 | 
			
		||||
                x2: 0,
 | 
			
		||||
                y2: 1,
 | 
			
		||||
                colorStops: [
 | 
			
		||||
                  {
 | 
			
		||||
                    offset: 0,
 | 
			
		||||
                    color: "#57abf8", // 0% 处的颜色
 | 
			
		||||
                  },
 | 
			
		||||
                  {
 | 
			
		||||
                    offset: 1,
 | 
			
		||||
                    color: "#364BFE66", // 100% 处的颜色
 | 
			
		||||
                  },
 | 
			
		||||
                ],
 | 
			
		||||
                global: false, // 缺省为 false
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
            data: [], // this.series[1].data,
 | 
			
		||||
          },
 | 
			
		||||
        ],
 | 
			
		||||
      },
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    /** 全屏状态切换时,对柱子粗细和字体大小进行相应调整 */
 | 
			
		||||
    isFullscreen(val) {
 | 
			
		||||
      this.actualOptions.series.map((item) => {
 | 
			
		||||
        item.barWidth = val ? 18 : 12;
 | 
			
		||||
      });
 | 
			
		||||
      this.actualOptions.xAxis.axisLabel.fontSize = val ? 18 : 12;
 | 
			
		||||
      this.actualOptions.yAxis.axisLabel.fontSize = val ? 18 : 12;
 | 
			
		||||
      this.actualOptions.yAxis.nameTextStyle.fontSize = val ? 18 : 12;
 | 
			
		||||
      this.initOptions(this.actualOptions);
 | 
			
		||||
    },
 | 
			
		||||
    series(val) {
 | 
			
		||||
      if (!val) {
 | 
			
		||||
        this.initOptions(this.options);
 | 
			
		||||
        return;
 | 
			
		||||
      }
 | 
			
		||||
      const actualOptions = JSON.parse(JSON.stringify(this.options));
 | 
			
		||||
      actualOptions.series[0].data = val[0].data;
 | 
			
		||||
      actualOptions.series[0].name = val[0].name;
 | 
			
		||||
      actualOptions.series[1].data = val[1].data;
 | 
			
		||||
      actualOptions.series[1].name = val[1].name;
 | 
			
		||||
      this.actualOptions = actualOptions;
 | 
			
		||||
      this.initOptions(actualOptions);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.actualOptions = this.options;
 | 
			
		||||
    this.initOptions(this.options);
 | 
			
		||||
 | 
			
		||||
    if (screenfull.isEnabled) {
 | 
			
		||||
      screenfull.on("change", () => {
 | 
			
		||||
        this.isFullscreen = screenfull.isFullscreen;
 | 
			
		||||
      });
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.bar-chart-base {
 | 
			
		||||
  // position: relative;
 | 
			
		||||
 | 
			
		||||
  .legend {
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    top: 5.2vh;
 | 
			
		||||
    right: 1vw;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item {
 | 
			
		||||
    position: relative;
 | 
			
		||||
    // font-size: 12px;
 | 
			
		||||
    margin-right: 0.67vw;
 | 
			
		||||
 | 
			
		||||
    &::before {
 | 
			
		||||
      content: "";
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      width: 0.531vw;
 | 
			
		||||
      height: 0.531vw;
 | 
			
		||||
      background-color: #ccc;
 | 
			
		||||
      border-radius: 2px;
 | 
			
		||||
      margin-right: 0.22vw;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item:nth-child(1):before {
 | 
			
		||||
    background-color: #12f7f1;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item:nth-child(2):before {
 | 
			
		||||
    background-color: #58adfa;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -1,148 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: CityData.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-17 09:55:12
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="city-data">
 | 
			
		||||
    <div class="headquarter">
 | 
			
		||||
      <div class="inner-shadow w-1"></div>
 | 
			
		||||
      <div class="inner-shadow flex-1 flex">
 | 
			
		||||
        <CityName value="凯盛光伏" />
 | 
			
		||||
        <CityValue :value="headquarterValue" horizontal :period="period" />
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="inner-shadow w-1"></div>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="city-item-container">
 | 
			
		||||
      <CityItem
 | 
			
		||||
        v-for="city in cities"
 | 
			
		||||
        :key="city.name"
 | 
			
		||||
        :location="city.name"
 | 
			
		||||
        :value="city.value"
 | 
			
		||||
        :period="period"
 | 
			
		||||
      />
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import CityItemVue from "./CityItem.vue";
 | 
			
		||||
import CityNameVue from "./CityName.vue";
 | 
			
		||||
import CityValueVue from "./CityValue.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "CityData",
 | 
			
		||||
  components: {
 | 
			
		||||
    CityItem: CityItemVue,
 | 
			
		||||
    CityName: CityNameVue,
 | 
			
		||||
    CityValue: CityValueVue,
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    dataSource: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: null,
 | 
			
		||||
    },
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    headquarterValue() {
 | 
			
		||||
      let getterName = "";
 | 
			
		||||
      switch (this.dataSource) {
 | 
			
		||||
        case "标准组件输出":
 | 
			
		||||
          getterName = "stdOutput";
 | 
			
		||||
          break;
 | 
			
		||||
        case "芯片输出":
 | 
			
		||||
          getterName = "chipOutput";
 | 
			
		||||
          break;
 | 
			
		||||
        case "BIPV输出":
 | 
			
		||||
          getterName = "bipvOutput";
 | 
			
		||||
          break;
 | 
			
		||||
      }
 | 
			
		||||
      return (
 | 
			
		||||
        "" + (this.$store.getters.copilot.yield[getterName]?.current?.[5] ?? 0)
 | 
			
		||||
      );
 | 
			
		||||
    },
 | 
			
		||||
    cities() {
 | 
			
		||||
      let getterName = "";
 | 
			
		||||
      switch (this.dataSource) {
 | 
			
		||||
        case "标准组件输出":
 | 
			
		||||
          getterName = "stdOutput";
 | 
			
		||||
          break;
 | 
			
		||||
        case "芯片输出":
 | 
			
		||||
          getterName = "chipOutput";
 | 
			
		||||
          break;
 | 
			
		||||
        case "BIPV输出":
 | 
			
		||||
          getterName = "bipvOutput";
 | 
			
		||||
          break;
 | 
			
		||||
      }
 | 
			
		||||
      const _cities = [
 | 
			
		||||
        { name: "瑞昌", value: 0 },
 | 
			
		||||
        { name: "邯郸", value: 0 },
 | 
			
		||||
        { name: "株洲", value: 0 },
 | 
			
		||||
        { name: "佳木斯", value: 0 },
 | 
			
		||||
        { name: "成都", value: 0 },
 | 
			
		||||
        { name: "凯盛光伏", value: 0 },
 | 
			
		||||
        { name: "蚌埠兴科", value: 0 },
 | 
			
		||||
      ];
 | 
			
		||||
      this.$store.getters.copilot.yield[getterName]?.current?.forEach(
 | 
			
		||||
        (v, idx) => {
 | 
			
		||||
          _cities[idx].value = v ?? 0;
 | 
			
		||||
        }
 | 
			
		||||
      );
 | 
			
		||||
      _cities.splice(4, 1);
 | 
			
		||||
      return _cities;
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.city-data {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  gap: 8px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.headquarter {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  gap: 8px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.w-1 {
 | 
			
		||||
  width: 70px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.flex {
 | 
			
		||||
  display: flex;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.flex-1 {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.inner-shadow {
 | 
			
		||||
  box-shadow: inset 0 0 12px 2px #fff3;
 | 
			
		||||
  border-radius: 4px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.city-item-container {
 | 
			
		||||
  flex: 3;
 | 
			
		||||
  display: grid;
 | 
			
		||||
  grid-template-columns: repeat(2, 1fr);
 | 
			
		||||
  gap: 8px;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -1,58 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: CityItem.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-17 09:55:12
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="city-item inner-shadow">
 | 
			
		||||
    <CityName :value="location" />
 | 
			
		||||
    <CityValue :value="value+''" :period="period" />
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import CityNameVue from "./CityName.vue";
 | 
			
		||||
import CityValueVue from "./CityValue.vue";
 | 
			
		||||
import GradientTextVue from "./GradientText.vue";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "CityItem",
 | 
			
		||||
  components: {
 | 
			
		||||
    GradientTextVue,
 | 
			
		||||
    CityName: CityNameVue,
 | 
			
		||||
    CityValue: CityValueVue,
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    location: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "",
 | 
			
		||||
    },
 | 
			
		||||
    value: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 0,
 | 
			
		||||
    },
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  mounted() {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.city-item {
 | 
			
		||||
  display: flex;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.inner-shadow {
 | 
			
		||||
  box-shadow: inset 0 0 12px 2px #fff3;
 | 
			
		||||
  border-radius: 4px;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -1,55 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: CityName.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:59:28
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="city-name">
 | 
			
		||||
    <img :src="Icon" alt="city icon" />
 | 
			
		||||
    <span>{{ value }}</span>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import Icon from "./icon.png";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "CityName",
 | 
			
		||||
  props: {
 | 
			
		||||
    value: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return { Icon };
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.city-name {
 | 
			
		||||
  min-width: 80px;
 | 
			
		||||
  margin: auto;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  justify-content: center;
 | 
			
		||||
  padding: 0 8px;
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
img {
 | 
			
		||||
  /* width: 32px; */
 | 
			
		||||
  width: 1.543vw;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
span {
 | 
			
		||||
  /* font-size: 12px;   */
 | 
			
		||||
  font-size: 0.77vw;
 | 
			
		||||
  letter-spacing: 2px;
 | 
			
		||||
  text-align: center;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -1,127 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: CityValue.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:59:28
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="city-value" :class="[horizontal ? 'horizontal' : '']">
 | 
			
		||||
    <span class="hint" :class="[horizontal ? 'horizontal' : '']">{{
 | 
			
		||||
      period == "周" ? "本周产出" : "今日产出"
 | 
			
		||||
    }}</span>
 | 
			
		||||
    <span class="value" :class="[horizontal ? 'horizontal' : '']">{{
 | 
			
		||||
      value | numberFilter
 | 
			
		||||
    }}</span>
 | 
			
		||||
    <!-- <GradientTextVue :text="value" :size="horizontal ? 32 : 26" /> -->
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import GradientTextVue from "./GradientText.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "CityValue",
 | 
			
		||||
  components: { GradientTextVue },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
    value: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "",
 | 
			
		||||
    },
 | 
			
		||||
    horizontal: {
 | 
			
		||||
      type: Boolean,
 | 
			
		||||
      default: false,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  filters: {
 | 
			
		||||
    numberFilter(value) {
 | 
			
		||||
      if (value != null && !isNaN(parseInt(value))) {
 | 
			
		||||
        return parseInt(value).toLocaleString();
 | 
			
		||||
      } else {
 | 
			
		||||
        return value;
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.city-value {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  justify-content: center;
 | 
			
		||||
  padding: 0 8px;
 | 
			
		||||
  flex: 2;
 | 
			
		||||
  position: relative;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.city-value.horizontal {
 | 
			
		||||
  flex-direction: row;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.city-value::after {
 | 
			
		||||
  content: "";
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  top: 0;
 | 
			
		||||
  left: 0;
 | 
			
		||||
  width: 1px;
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  background: linear-gradient(
 | 
			
		||||
    to bottom,
 | 
			
		||||
    transparent 20%,
 | 
			
		||||
    #fff 50%,
 | 
			
		||||
    transparent 80%
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
span.hint {
 | 
			
		||||
  margin: 0 0.77vw;
 | 
			
		||||
  font-size: 0.77vw;
 | 
			
		||||
  order: 2;
 | 
			
		||||
  /* margin: 0 12px;
 | 
			
		||||
  width: 32px;
 | 
			
		||||
  font-size: 12px; */
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
span.hint.horizontal {
 | 
			
		||||
  margin: 0 1.235vw;
 | 
			
		||||
  width: 1.543vw;
 | 
			
		||||
  order: 1;
 | 
			
		||||
  font-size: 0.77vw;
 | 
			
		||||
  /* margin: 0 12px;
 | 
			
		||||
  width: 32px;
 | 
			
		||||
  font-size: 12px; */
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.value {
 | 
			
		||||
  color: #4dd2fe;
 | 
			
		||||
  text-align: center;
 | 
			
		||||
  font-size: 1.132vw;
 | 
			
		||||
  order: 1;
 | 
			
		||||
}
 | 
			
		||||
.value.horizontal {
 | 
			
		||||
  text-align: left;
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  font-size: 1.543vw;
 | 
			
		||||
  order: 2;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
svg,
 | 
			
		||||
.value {
 | 
			
		||||
  width: 100px;
 | 
			
		||||
  order: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.value.horizontal,
 | 
			
		||||
svg.horizontal {
 | 
			
		||||
  order: 2;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -33,19 +33,19 @@ export default {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 24,
 | 
			
		||||
    },
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    legendItems: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => [
 | 
			
		||||
        { label: "2023年累计", value: 88002 },
 | 
			
		||||
        { label: "2024年累计", value: 88002 },
 | 
			
		||||
        { label: "2025年累计", value: 88002 },
 | 
			
		||||
      ],
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    legendItems() {
 | 
			
		||||
      return calculateItems(this.period);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.initOptions(options);
 | 
			
		||||
  },
 | 
			
		||||
@@ -56,42 +56,6 @@ export default {
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function calculateItems(period) {
 | 
			
		||||
  let items = [];
 | 
			
		||||
  const today = new Date().getDate();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  switch (period) {
 | 
			
		||||
    case "日":
 | 
			
		||||
      items = [
 | 
			
		||||
        { label: `${month}月${today}日累计`, value: 24 },
 | 
			
		||||
        { label: `去年${month}月${today}日累计`, value: 33 },
 | 
			
		||||
      ];
 | 
			
		||||
      break;
 | 
			
		||||
    case "周":
 | 
			
		||||
      items = [
 | 
			
		||||
        { label: `本周累计`, value: 32 },
 | 
			
		||||
        { label: `去年本周累计`, value: 12 },
 | 
			
		||||
      ];
 | 
			
		||||
      break;
 | 
			
		||||
    case "月":
 | 
			
		||||
      items = [
 | 
			
		||||
        { label: `${month}月累计`, value: 24 },
 | 
			
		||||
        { label: `去年${month}月累计`, value: 33 },
 | 
			
		||||
        { label: `${month}月目标`, value: 12334 },
 | 
			
		||||
      ];
 | 
			
		||||
      break;
 | 
			
		||||
    case "年":
 | 
			
		||||
      items = [
 | 
			
		||||
        { label: `${year - 1}年累计`, value: 23234 },
 | 
			
		||||
        { label: `${year}年累计`, value: 4324 },
 | 
			
		||||
        { label: `${year}年目标`, value: 12334 },
 | 
			
		||||
      ];
 | 
			
		||||
      break;
 | 
			
		||||
  }
 | 
			
		||||
  return items;
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
 
 | 
			
		||||
@@ -7,18 +7,10 @@
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="double-ring-wrapper">
 | 
			
		||||
    <template v-if="period == '月' || period == '年'">
 | 
			
		||||
      <copilot-select
 | 
			
		||||
        @update:active="handleActiveUpdate"
 | 
			
		||||
        :options="cityOptions"
 | 
			
		||||
      />
 | 
			
		||||
      <div class="flex-1 stretch">
 | 
			
		||||
        <DoubleRingChartVue :period="period" />
 | 
			
		||||
      </div>
 | 
			
		||||
    </template>
 | 
			
		||||
    <template v-else>
 | 
			
		||||
      <CityData :data-source="dataSource" :period="period" />
 | 
			
		||||
    </template>
 | 
			
		||||
    <copilot-select :options="cityOptions" />
 | 
			
		||||
    <div class="flex-1 stretch">
 | 
			
		||||
      <DoubleRingChartVue />
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
@@ -26,21 +18,11 @@
 | 
			
		||||
import CopilotSelect from "../../select.vue";
 | 
			
		||||
import fetcher from "./fetcherDoubleRing";
 | 
			
		||||
import DoubleRingChartVue from "./DoubleRingChart.vue";
 | 
			
		||||
import CityData from "./CityData.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "DoubleRingWrapper",
 | 
			
		||||
  components: { CopilotSelect, DoubleRingChartVue, CityData },
 | 
			
		||||
  props: {
 | 
			
		||||
    dataSource: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: null,
 | 
			
		||||
    },
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  components: { CopilotSelect, DoubleRingChartVue },
 | 
			
		||||
  props: {},
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      cityOptions: [
 | 
			
		||||
@@ -60,11 +42,7 @@ export default {
 | 
			
		||||
      console.log("getData--->", res);
 | 
			
		||||
    });
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    handleActiveUpdate(val) {
 | 
			
		||||
      console.log("handleActiveUpdate--->", val);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,64 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: GradientText.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-24 16:33:25
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <svg :height="size + 8" width="100%">
 | 
			
		||||
    <defs>
 | 
			
		||||
      <linearGradient id="smoke-text" x1="0%" y1="0%" x2="0%" y2="100%">
 | 
			
		||||
        <stop offset="0%" style="stop-color: #00fff4; stop-opacity: 1" />
 | 
			
		||||
        <stop offset="100%" style="stop-color: #37bdfe; stop-opacity: 1" />
 | 
			
		||||
      </linearGradient>
 | 
			
		||||
    </defs>
 | 
			
		||||
    <text
 | 
			
		||||
      x="0"
 | 
			
		||||
      :y="size"
 | 
			
		||||
      fill="url(#smoke-text)"
 | 
			
		||||
      :style="{
 | 
			
		||||
        fontSize: `${size}px`,
 | 
			
		||||
        letterSpacing: spacing || '2px',
 | 
			
		||||
        fontFamily: 'Calibri, Verdana, sans-serif',
 | 
			
		||||
      }"
 | 
			
		||||
    >
 | 
			
		||||
      {{ text | numberFilter }}
 | 
			
		||||
    </text>
 | 
			
		||||
  </svg>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
  name: "GradientText",
 | 
			
		||||
  components: {},
 | 
			
		||||
  props: {
 | 
			
		||||
    text: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "Test",
 | 
			
		||||
    },
 | 
			
		||||
    spacing: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "1px",
 | 
			
		||||
    },
 | 
			
		||||
    size: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 24,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  filters: {
 | 
			
		||||
    numberFilter(value) {
 | 
			
		||||
      if (value != null && !isNaN(parseInt(value))) {
 | 
			
		||||
        return parseInt(value).toLocaleString();
 | 
			
		||||
      } else {
 | 
			
		||||
        return value;
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss"></style>
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 5.0 KiB  | 
@@ -33,17 +33,9 @@ export default {
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      currentActive: this.options[0],
 | 
			
		||||
      currentActive: '',
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    currentActive: {
 | 
			
		||||
      handler(val) {
 | 
			
		||||
        this.$emit("update:active", val);
 | 
			
		||||
      },
 | 
			
		||||
      immediate: true,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
@@ -63,7 +55,7 @@ button {
 | 
			
		||||
  padding: 8px 12px;
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  transition: all 0.3s;
 | 
			
		||||
  transition: all .3s;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
button.active,
 | 
			
		||||
 
 | 
			
		||||
@@ -42,14 +42,6 @@ export default {
 | 
			
		||||
      period: "日",
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  // mounted() {
 | 
			
		||||
  //   document.body.style.minHeight = "1024px";
 | 
			
		||||
  //   document.body.style.minWidth = "1550px";
 | 
			
		||||
  // },
 | 
			
		||||
  // destroyed() {
 | 
			
		||||
  //   document.body.style.minHeight = "1024px";
 | 
			
		||||
  //   document.body.style.minWidth = "1550px";
 | 
			
		||||
  // },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -9,22 +9,22 @@
 | 
			
		||||
  <div class="yield-copilot">
 | 
			
		||||
    <section class="top flex">
 | 
			
		||||
      <db-container class="std-yield" title="标准组件产出" icon="std">
 | 
			
		||||
        <std-output :period="period" />
 | 
			
		||||
        <std-output />
 | 
			
		||||
      </db-container>
 | 
			
		||||
      <db-container class="chip-yield" title="芯片产出" icon="chip2">
 | 
			
		||||
        <chip-output :period="period" />
 | 
			
		||||
        <chip-output />
 | 
			
		||||
      </db-container>
 | 
			
		||||
      <db-container class="bipv-yield" title="BIPV产出" icon="bipv">
 | 
			
		||||
        <bipv-output :period="period" />
 | 
			
		||||
        <bipv-output />
 | 
			
		||||
      </db-container>
 | 
			
		||||
    </section>
 | 
			
		||||
    <section class="bottom flex">
 | 
			
		||||
      <db-container class="fto-involve" title="FTO投入">
 | 
			
		||||
        <fto-invest :period="period" />
 | 
			
		||||
      </db-container>
 | 
			
		||||
      <db-container class="chip-involve" title="芯片投入" icon="chip">
 | 
			
		||||
        <chip-invest :period="period" />
 | 
			
		||||
      </db-container>
 | 
			
		||||
      <db-container class="fto-involve" title="FTO投入"></db-container>
 | 
			
		||||
      <db-container
 | 
			
		||||
        class="chip-involve"
 | 
			
		||||
        title="芯片投入"
 | 
			
		||||
        icon="chip"
 | 
			
		||||
      ></db-container>
 | 
			
		||||
    </section>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
@@ -33,9 +33,8 @@
 | 
			
		||||
import Container from "../components/Container.vue";
 | 
			
		||||
import StdOutputVue from "../components/charts/StdOutput.vue";
 | 
			
		||||
import ChipOutputVue from "../components/charts/ChipOutput.vue";
 | 
			
		||||
import FtoInvestVue from "../components/charts/FtoInvest.vue";
 | 
			
		||||
 | 
			
		||||
import BipvOutputVue from "../components/charts/BipvOutput.vue";
 | 
			
		||||
import ChipInvestVue from "../components/charts/ChipInvest.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "YieldCopilot",
 | 
			
		||||
@@ -44,32 +43,13 @@ export default {
 | 
			
		||||
    StdOutput: StdOutputVue,
 | 
			
		||||
    ChipOutput: ChipOutputVue,
 | 
			
		||||
    BipvOutput: BipvOutputVue,
 | 
			
		||||
    FtoInvest: FtoInvestVue,
 | 
			
		||||
    ChipInvest: ChipInvestVue,
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  props: {},
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    period: {
 | 
			
		||||
      handler(val) {
 | 
			
		||||
        val && this.fetchData(val);
 | 
			
		||||
      },
 | 
			
		||||
      immediate: true,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    fetchData(period = "日") {
 | 
			
		||||
      console.log(`产量驾驶舱,获取${period}数据`);
 | 
			
		||||
      this.$store.dispatch("copilot/initCopilot", { period, source: "yield" });
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user