Compare commits
	
		
			58 Commits
		
	
	
		
			projects/m
			...
			34bf9f91cf
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 34bf9f91cf | |||
| ca21a0cbed | |||
| dd7c5f11ab | |||
| b18a7a8fb4 | |||
| 
						 | 
					6b2c0ebec3 | ||
| 
						 | 
					f312be08bf | ||
| 3765db0611 | |||
| bfa8a73423 | |||
| 31da2a55a3 | |||
| 9e90449d1a | |||
| 
						 | 
					9c9dba5452 | ||
| 
						 | 
					b3578cdd8a | ||
| 
						 | 
					6cf8eb70b4 | ||
| 
						 | 
					9ab7010f5b | ||
| 
						 | 
					61ea9ea4a6 | ||
| 
						 | 
					fdf71145e8 | ||
| 
						 | 
					ea63cb5730 | ||
| 
						 | 
					646eb9c270 | ||
| 
						 | 
					bc3a68a9a7 | ||
| 
						 | 
					e066a7c4c7 | ||
| 
						 | 
					b6820fd61f | ||
| 
						 | 
					5ed4eed5de | ||
| df50f7dcbe | |||
| 
						 | 
					417640dec1 | ||
| 
						 | 
					aa2ac270fc | ||
| 
						 | 
					253f182370 | ||
| 
						 | 
					227411e38e | ||
| b6b0d32fa2 | |||
| 
						 | 
					aee1e06137 | ||
| 
						 | 
					1b8f2522c1 | ||
| 
						 | 
					622a8b4a31 | ||
| 
						 | 
					08c9cf8dd6 | ||
| 
						 | 
					517874ffc2 | ||
| 
						 | 
					e8cc80495f | ||
| 
						 | 
					752df8417d | ||
| 
						 | 
					bb399835e7 | ||
| 
						 | 
					30af8faa49 | ||
| ce02c70014 | |||
| 906262f622 | |||
| dbb60ac09b | |||
| e0e48960ed | |||
| 2518fb3533 | |||
| af3ba890ec | |||
| e3579186fa | |||
| a9f36c61ec | |||
| af4b947c22 | |||
| 8012bbec9f | |||
| 
						 | 
					bd0faef33f | ||
| 
						 | 
					eb8c7bbfe4 | ||
| 
						 | 
					d55dc7899f | ||
| fa80816a1f | |||
| 
						 | 
					a63cfb5820 | ||
| 
						 | 
					a262fb96d4 | ||
| 9dacfc23a1 | |||
| 
						 | 
					5721816782 | ||
| 
						 | 
					320d747eb8 | ||
| 677f542f7c | |||
| 
						 | 
					5b59893edb | 
@@ -1,3 +1,3 @@
 | 
			
		||||
.dockerignore
 | 
			
		||||
dist
 | 
			
		||||
#dist
 | 
			
		||||
node_modules
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										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
 | 
			
		||||
							
								
								
									
										10
									
								
								.env.dev
									
									
									
									
									
								
							
							
						
						@@ -1,3 +1,10 @@
 | 
			
		||||
###
 | 
			
		||||
 # @Author: zhp
 | 
			
		||||
 # @Date: 2024-04-28 13:42:51
 | 
			
		||||
 # @LastEditTime: 2024-05-10 08:42:44
 | 
			
		||||
 # @LastEditors: zhp
 | 
			
		||||
 # @Description:
 | 
			
		||||
###
 | 
			
		||||
# 开发环境配置
 | 
			
		||||
ENV = 'development'
 | 
			
		||||
 | 
			
		||||
@@ -5,7 +12,8 @@ ENV = 'development'
 | 
			
		||||
VUE_APP_TITLE = 芋道管理系统
 | 
			
		||||
 | 
			
		||||
# 芋道管理系统/开发环境
 | 
			
		||||
VUE_APP_BASE_API = 'http://192.168.1.61:48080'
 | 
			
		||||
# VUE_APP_BASE_API = 'http://192.168.1.61:48080'
 | 
			
		||||
VUE_APP_BASE_API = 'http://glass.kszny.picaiba.com'
 | 
			
		||||
 | 
			
		||||
# 路由懒加载
 | 
			
		||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
 | 
			
		||||
 
 | 
			
		||||
@@ -2,15 +2,15 @@
 | 
			
		||||
NODE_ENV = 'production'
 | 
			
		||||
 | 
			
		||||
# 页面标题
 | 
			
		||||
VUE_APP_TITLE = 芋道管理系统
 | 
			
		||||
VUE_APP_TITLE = 玻璃控股信息平台
 | 
			
		||||
 | 
			
		||||
# 芋道管理系统/生产环境
 | 
			
		||||
VUE_APP_BASE_API = '/prod-api'
 | 
			
		||||
VUE_APP_BASE_API = ''
 | 
			
		||||
 | 
			
		||||
# 根据服务器或域名修改
 | 
			
		||||
PUBLIC_PATH = 'http://my-pi.com:8888/yudao-admin/'
 | 
			
		||||
PUBLIC_PATH = ''
 | 
			
		||||
# 二级部署路径
 | 
			
		||||
VUE_APP_APP_NAME ='yudao-admin'
 | 
			
		||||
# VUE_APP_APP_NAME ='yudao-admin'
 | 
			
		||||
 | 
			
		||||
# 多租户的开关
 | 
			
		||||
VUE_APP_TENANT_ENABLE = true
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										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/
 | 
			
		||||
 
 | 
			
		||||
@@ -42,9 +42,11 @@
 | 
			
		||||
  },
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "@babel/parser": "7.18.4",
 | 
			
		||||
    "@jiaminghi/data-view": "^2.10.0",
 | 
			
		||||
    "@riophae/vue-treeselect": "0.4.0",
 | 
			
		||||
    "axios": "^1.6.8",
 | 
			
		||||
    "clipboard": "2.0.8",
 | 
			
		||||
    "code-brick-zj": "^1.1.0",
 | 
			
		||||
    "core-js": "^3.26.0",
 | 
			
		||||
    "crypto-js": "^4.0.0",
 | 
			
		||||
    "echarts": "5.4.0",
 | 
			
		||||
@@ -53,6 +55,7 @@
 | 
			
		||||
    "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",
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										32
									
								
								src/api/cost/index.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,32 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-26 14:53:45
 | 
			
		||||
 * @LastEditTime: 2024-05-06 14:55:33
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
 | 
			
		||||
// 查询部门列表
 | 
			
		||||
export function getOrderList(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'ip/prod-order/prodOrderList',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
export function getCostPage(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'ip/cost/costPage',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function getCostList(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'ip/cost/costList',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										15
									
								
								src/api/energy/index.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,15 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-28 09:28:12
 | 
			
		||||
 * @LastEditTime: 2024-04-28 09:43:40
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
export function getEnergyPage(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'ip/energy/page',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										32
									
								
								src/api/greenest/index.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,32 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-26 14:53:45
 | 
			
		||||
 * @LastEditTime: 2024-05-06 14:53:04
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
 | 
			
		||||
// 查询部门列表
 | 
			
		||||
export function getOrderList(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'ip/prod-order/prodOrderList',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
export function getEpPage(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'ip/environment-protection/environmentPage',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function getCostList(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'ip/cost/costList',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										40
									
								
								src/api/produceData/index.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,40 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-05-07 08:54:59
 | 
			
		||||
 * @LastEditTime: 2024-05-07 09:34:17
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-26 14:53:45
 | 
			
		||||
 * @LastEditTime: 2024-05-06 14:53:04
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
 | 
			
		||||
// 查询部门列表
 | 
			
		||||
export function getProduceDataPage(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'ip/prod-output/prodOutputDataPage',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function getProduceDataDetail(data){
 | 
			
		||||
  return request({
 | 
			
		||||
     url: '/ip/prod-output/get=' + id,
 | 
			
		||||
    method: 'get',
 | 
			
		||||
    query: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function cockpitDataMonitor(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/ip/prod-output/cockpitDataMonitor',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										15
									
								
								src/api/wareHouse/index.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,15 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-28 09:28:12
 | 
			
		||||
 * @LastEditTime: 2024-04-28 15:52:36
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
export function getStockPage(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'ip/stock/page',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/assets/icons/svg/orgTreeIcon.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,14 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 | 
			
		||||
    <title>菜单</title>
 | 
			
		||||
    <g id="10系统管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
 | 
			
		||||
        <g id="用户管理" transform="translate(-284.000000, -164.000000)" fill-rule="nonzero">
 | 
			
		||||
            <g id="编组-7" transform="translate(284.000000, 162.000000)">
 | 
			
		||||
                <g id="菜单" transform="translate(0.000000, 2.000000)">
 | 
			
		||||
                    <rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="16" height="16"></rect>
 | 
			
		||||
                    <path d="M3.00057813,4.49926562 L13.0025156,4.49926562 C13.2786563,4.49926562 13.5025156,4.27540625 13.5025156,3.99926563 C13.5025156,3.723125 13.2786563,3.49926563 13.0025156,3.49926563 L3.00057813,3.49926563 C2.7244375,3.49926563 2.50057813,3.723125 2.50057813,3.99926563 C2.50057813,4.27540625 2.7244375,4.49926562 3.00057813,4.49926562 Z M3.0004375,8.48703125 L12.9786875,8.48703125 C13.2548281,8.48703125 13.4786875,8.26317187 13.4786875,7.98703125 C13.4786875,7.71089062 13.2548281,7.48703125 12.9786875,7.48703125 L3.0004375,7.48703125 C2.72429687,7.48703125 2.5004375,7.71089062 2.5004375,7.98703125 C2.5004375,8.26317187 2.72429687,8.48703125 3.0004375,8.48703125 Z M13.0025156,11.4969063 L3.00057813,11.4969063 C2.7244375,11.4969063 2.50057813,11.7207656 2.50057813,11.9969063 C2.50057813,12.2730469 2.7244375,12.4969063 3.00057813,12.4969063 L13.0025156,12.4969063 C13.2786563,12.4969063 13.5025156,12.2730469 13.5025156,11.9969063 C13.5025156,11.7207656 13.2786563,11.4969063 13.0025156,11.4969063 L13.0025156,11.4969063 Z" id="形状" fill="#373738"></path>
 | 
			
		||||
                </g>
 | 
			
		||||
            </g>
 | 
			
		||||
        </g>
 | 
			
		||||
    </g>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 1.8 KiB  | 
							
								
								
									
										15
									
								
								src/assets/icons/svg/orgTreeIcon2.svg
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,15 @@
 | 
			
		||||
<?xml version="1.0" standalone="no"?>
 | 
			
		||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
 | 
			
		||||
 "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
 | 
			
		||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
 width="127.000000pt" height="127.000000pt" viewBox="0 0 127.000000 127.000000"
 | 
			
		||||
 preserveAspectRatio="xMidYMid meet">
 | 
			
		||||
 | 
			
		||||
<g transform="translate(0.000000,127.000000) scale(0.100000,-0.100000)"
 | 
			
		||||
fill="#000000" stroke="none">
 | 
			
		||||
<path d="M520 831 c-19 -10 -48 -35 -64 -55 -25 -30 -31 -48 -34 -100 -8 -122
 | 
			
		||||
69 -206 188 -206 119 0 196 84 188 205 -5 74 -36 123 -98 155 -51 26 -133 26
 | 
			
		||||
-180 1z m137 -32 c67 -25 111 -99 98 -165 -8 -45 -57 -100 -101 -114 -100 -33
 | 
			
		||||
-209 62 -190 165 12 62 82 124 143 125 12 0 34 -5 50 -11z"/>
 | 
			
		||||
</g>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 After Width: | Height: | Size: 725 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/companyData/energy.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 511 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/companyData/order.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 812 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/companyData/prod-minor.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 226 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/companyData/store.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 326 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/homeindex/flash-icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 662 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/homeindex/gas-icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 796 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/homeindex/ware-icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 269 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/homeindex/water-icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 592 B  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/login.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 530 KiB  | 
@@ -123,7 +123,7 @@ aside {
 | 
			
		||||
 | 
			
		||||
//main-container全局样式
 | 
			
		||||
.app-container {
 | 
			
		||||
  padding: 16px;
 | 
			
		||||
  // padding: 16px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.components-container {
 | 
			
		||||
 
 | 
			
		||||
@@ -133,8 +133,8 @@ $base1px: 0.15vh; // 1px / 1080px;
 | 
			
		||||
        width: 100%;
 | 
			
		||||
        clear: both;
 | 
			
		||||
        position: relative;
 | 
			
		||||
        top: calc(56 * #{$base1px});
 | 
			
		||||
        height: calc(128 * #{$base1px});
 | 
			
		||||
        top: calc(#{$base1px});
 | 
			
		||||
        height: calc(100 * #{$base1px});
 | 
			
		||||
        display: flex;
 | 
			
		||||
        align-items: center;
 | 
			
		||||
        justify-content: center;
 | 
			
		||||
@@ -189,7 +189,7 @@ $base1px: 0.15vh; // 1px / 1080px;
 | 
			
		||||
        height: calc(16 * 0.12vh);
 | 
			
		||||
        line-height: calc(16 * 0.12vh);
 | 
			
		||||
        font-size: calc(12 * 0.12vh);
 | 
			
		||||
        color: #8c8c8c;
 | 
			
		||||
        color: #C7C7C7;
 | 
			
		||||
 | 
			
		||||
        a,
 | 
			
		||||
        a:hover,
 | 
			
		||||
 
 | 
			
		||||
@@ -1,3 +1,10 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-12 11:13:06
 | 
			
		||||
 * @LastEditTime: 2024-05-08 13:37:05
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
  <section class="app-main">
 | 
			
		||||
    <transition name="fade-transform" mode="out-in">
 | 
			
		||||
@@ -10,20 +17,20 @@
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import iframeToggle from "./IframeToggle/index"
 | 
			
		||||
import iframeToggle from "./IframeToggle/index";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: 'AppMain',
 | 
			
		||||
  name: "AppMain",
 | 
			
		||||
  components: { iframeToggle },
 | 
			
		||||
  computed: {
 | 
			
		||||
    cachedViews() {
 | 
			
		||||
      return this.$store.state.tagsView.cachedViews
 | 
			
		||||
      return this.$store.state.tagsView.cachedViews;
 | 
			
		||||
    },
 | 
			
		||||
    key() {
 | 
			
		||||
      return this.$route.path
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
      return this.$route.path;
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
@@ -35,7 +42,7 @@ export default {
 | 
			
		||||
  overflow: visible;
 | 
			
		||||
  margin: 8px 14px 0px 16px;
 | 
			
		||||
  border-radius: 8px;
 | 
			
		||||
  background-color: #fff;
 | 
			
		||||
  // background-color: #fff;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.fixed-header + .app-main {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										26
									
								
								src/main.js
									
									
									
									
									
								
							
							
						
						@@ -1,5 +1,12 @@
 | 
			
		||||
import Vue from "vue";
 | 
			
		||||
import Element from "element-ui";
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-12 11:13:06
 | 
			
		||||
 * @LastEditTime: 2024-04-12 16:20:31
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
import Vue from 'vue'
 | 
			
		||||
import Element from 'element-ui'
 | 
			
		||||
 | 
			
		||||
// 修改如下样式文件,覆盖样式,或者新增样式文件
 | 
			
		||||
import "./assets/styles/element-variables.scss";
 | 
			
		||||
@@ -11,6 +18,7 @@ import store from "./store";
 | 
			
		||||
import router from "./router";
 | 
			
		||||
import directive from "./directive"; // directive
 | 
			
		||||
import plugins from "./plugins"; // plugins
 | 
			
		||||
import { scrollBoard } from '@jiaminghi/data-view'
 | 
			
		||||
 | 
			
		||||
import "./assets/icons"; // icon
 | 
			
		||||
import "./permission"; // permission control
 | 
			
		||||
@@ -34,7 +42,7 @@ import {
 | 
			
		||||
  getDictDatas,
 | 
			
		||||
  getDictDatas2,
 | 
			
		||||
} from "@/utils/dict";
 | 
			
		||||
 | 
			
		||||
import CodeBrickZj from 'code-brick-zj';
 | 
			
		||||
import "./theme/index.css"; // 自定义主题包 - code-brick-zj
 | 
			
		||||
 | 
			
		||||
// 全局方法挂载
 | 
			
		||||
@@ -48,6 +56,9 @@ Vue.prototype.DICT_TYPE = DICT_TYPE;
 | 
			
		||||
Vue.prototype.handleTree = handleTree;
 | 
			
		||||
Vue.prototype.addBeginAndEndTime = addBeginAndEndTime;
 | 
			
		||||
Vue.prototype.divide = divide;
 | 
			
		||||
Vue.prototype.tableHeight = function (n) {
 | 
			
		||||
	return window.innerHeight - n;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// 全局组件挂载
 | 
			
		||||
Vue.component("DictTag", DictTag);
 | 
			
		||||
@@ -58,10 +69,11 @@ import DictTag from "@/components/DictTag";
 | 
			
		||||
// 头部标签插件
 | 
			
		||||
import VueMeta from "vue-meta";
 | 
			
		||||
 | 
			
		||||
Vue.use(directive);
 | 
			
		||||
Vue.use(plugins);
 | 
			
		||||
Vue.use(VueMeta);
 | 
			
		||||
 | 
			
		||||
Vue.use(directive)
 | 
			
		||||
Vue.use(plugins)
 | 
			
		||||
Vue.use(VueMeta)
 | 
			
		||||
Vue.use(CodeBrickZj);
 | 
			
		||||
Vue.use(scrollBoard)
 | 
			
		||||
// Form Generator 组件需要使用到 tinymce
 | 
			
		||||
import Tinymce from "@/components/tinymce/index.vue";
 | 
			
		||||
Vue.component("tinymce", Tinymce);
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,7 @@
 | 
			
		||||
import * as echarts from "echarts";
 | 
			
		||||
 | 
			
		||||
function __resizeHandler(entries) {
 | 
			
		||||
  console.log(entries);
 | 
			
		||||
  for (const entry of entries) {
 | 
			
		||||
    if (entry.contentBoxSize) {
 | 
			
		||||
      // manipulate contentBoxSize
 | 
			
		||||
@@ -32,7 +33,7 @@ export default {
 | 
			
		||||
    const resizeObserver = new ResizeObserver(__resizeHandler.bind(this));
 | 
			
		||||
 | 
			
		||||
    return {
 | 
			
		||||
      MIN_WIDTH: 400,
 | 
			
		||||
      MIN_WIDTH: 390,
 | 
			
		||||
      chart_mixin_chartInstance: null,
 | 
			
		||||
      chart_mixin_observer: resizeObserver,
 | 
			
		||||
      chart_mixin_options: {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										87
									
								
								src/mixins/code-filter.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,87 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-28 15:18:21
 | 
			
		||||
 * @LastEditTime: 2024-04-28 15:18:21
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * @Date: 2020-12-29 16:49:28
 | 
			
		||||
 * @LastEditors: DY
 | 
			
		||||
 * @LastEditTime: 2024-02-23 14:50:22
 | 
			
		||||
 * @FilePath: \basic-admin\src\filters\basicData\index.js
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
const table = {
 | 
			
		||||
  lineStatus: {
 | 
			
		||||
    1: '生产中',
 | 
			
		||||
    2: '停止',
 | 
			
		||||
    3: '未知',
 | 
			
		||||
  },
 | 
			
		||||
  reportType: {
 | 
			
		||||
    1: '日',
 | 
			
		||||
    2: '周',
 | 
			
		||||
    3: '月'
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 日期格式化
 | 
			
		||||
export function parseTime(time, pattern) {
 | 
			
		||||
  if (arguments.length === 0 || !time) {
 | 
			
		||||
    return null
 | 
			
		||||
  }
 | 
			
		||||
  const format = pattern || '{y}-{m}-{d} {h}:{i}:{s}'
 | 
			
		||||
  let date
 | 
			
		||||
  if (typeof time === 'object') {
 | 
			
		||||
    date = time
 | 
			
		||||
  } else {
 | 
			
		||||
    if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
 | 
			
		||||
      time = parseInt(time)
 | 
			
		||||
    } else if (typeof time === 'string') {
 | 
			
		||||
      time = time.replace(new RegExp(/-/gm), '/').replace('T', ' ').replace(new RegExp(/\.\d{3}/gm),'');
 | 
			
		||||
    }
 | 
			
		||||
    if ((typeof time === 'number') && (time.toString().length === 10)) {
 | 
			
		||||
      time = time * 1000
 | 
			
		||||
    }
 | 
			
		||||
    date = new Date(time)
 | 
			
		||||
  }
 | 
			
		||||
  const formatObj = {
 | 
			
		||||
    y: date.getFullYear(),
 | 
			
		||||
    m: date.getMonth() + 1,
 | 
			
		||||
    d: date.getDate(),
 | 
			
		||||
    h: date.getHours(),
 | 
			
		||||
    i: date.getMinutes(),
 | 
			
		||||
    s: date.getSeconds(),
 | 
			
		||||
    a: date.getDay()
 | 
			
		||||
  }
 | 
			
		||||
  const time_str = format.replace(/{([ymdhisa])+}/g, (result, key) => {
 | 
			
		||||
    let value = formatObj[key]
 | 
			
		||||
    // Note: getDay() returns 0 on Sunday
 | 
			
		||||
    if (key === 'a') {
 | 
			
		||||
      return ['日', '一', '二', '三', '四', '五', '六'][value]
 | 
			
		||||
    }
 | 
			
		||||
    if (result.length > 0 && value < 10) {
 | 
			
		||||
      value = '0' + value
 | 
			
		||||
    }
 | 
			
		||||
    return value || 0
 | 
			
		||||
  })
 | 
			
		||||
  return time_str
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function toDay(time) {
 | 
			
		||||
  if (time < 24) {
 | 
			
		||||
    return time + '小时'
 | 
			
		||||
  } else {
 | 
			
		||||
    const day = ~~(time / 24)
 | 
			
		||||
    const hour = time % 24
 | 
			
		||||
    return day + '天' + hour + '小时'
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default function (dictTable) {
 | 
			
		||||
  return function (val) {
 | 
			
		||||
    return table?.[dictTable]?.[val]
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										63
									
								
								src/mixins/resize.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,63 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-16 09:31:41
 | 
			
		||||
 * @LastEditTime: 2024-04-16 09:31:41
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
import { debounce } from '@/utils'
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      $_sidebarElm: null,
 | 
			
		||||
      $_resizeHandler: null
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.initListener()
 | 
			
		||||
  },
 | 
			
		||||
  activated() {
 | 
			
		||||
    if (!this.$_resizeHandler) {
 | 
			
		||||
      // avoid duplication init
 | 
			
		||||
      this.initListener()
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // when keep-alive chart activated, auto resize
 | 
			
		||||
    this.resize()
 | 
			
		||||
  },
 | 
			
		||||
  beforeDestroy() {
 | 
			
		||||
    this.destroyListener()
 | 
			
		||||
  },
 | 
			
		||||
  deactivated() {
 | 
			
		||||
    this.destroyListener()
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    // use $_ for mixins properties
 | 
			
		||||
    // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential
 | 
			
		||||
    $_sidebarResizeHandler(e) {
 | 
			
		||||
      if (e.propertyName === 'width') {
 | 
			
		||||
        this.$_resizeHandler()
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    initListener() {
 | 
			
		||||
      this.$_resizeHandler = debounce(() => {
 | 
			
		||||
        this.resize()
 | 
			
		||||
      }, 100)
 | 
			
		||||
      window.addEventListener('resize', this.$_resizeHandler)
 | 
			
		||||
 | 
			
		||||
      this.$_sidebarElm = document.getElementsByClassName('sidebar-container')[0]
 | 
			
		||||
      this.$_sidebarElm && this.$_sidebarElm.addEventListener('transitionend', this.$_sidebarResizeHandler)
 | 
			
		||||
    },
 | 
			
		||||
    destroyListener() {
 | 
			
		||||
      window.removeEventListener('resize', this.$_resizeHandler)
 | 
			
		||||
      this.$_resizeHandler = null
 | 
			
		||||
 | 
			
		||||
      this.$_sidebarElm && this.$_sidebarElm.removeEventListener('transitionend', this.$_sidebarResizeHandler)
 | 
			
		||||
    },
 | 
			
		||||
    resize() {
 | 
			
		||||
      const { chart } = this
 | 
			
		||||
      chart && chart.resize()
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										20
									
								
								src/mixins/tableHeightMixin.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,20 @@
 | 
			
		||||
export default {
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			tableH: this.tableHeight(260),
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	created() {
 | 
			
		||||
		this.tableH = this?.heightNum ? this.tableHeight(this.heightNum) : this.tableHeight(260);
 | 
			
		||||
		window.addEventListener('resize', this._setTableHeight);
 | 
			
		||||
	},
 | 
			
		||||
	destroyed() {
 | 
			
		||||
		window.removeEventListener('resize', this._setTableHeight);
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		_setTableHeight() {
 | 
			
		||||
			this.tableH = this?.heightNum ? this.tableHeight(this.heightNum) : this.tableHeight(260);
 | 
			
		||||
			// this.tableH = this.tableHeight(260);
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
@@ -1,17 +1,385 @@
 | 
			
		||||
import axios from "@/utils/request";
 | 
			
		||||
 | 
			
		||||
function random_default() {
 | 
			
		||||
  return 0;
 | 
			
		||||
  let a = Math.floor(Math.random() * 1000);
 | 
			
		||||
  while (a < 600) {
 | 
			
		||||
    a = Math.floor(Math.random() * 1000);
 | 
			
		||||
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: {
 | 
			
		||||
      chipOee: {
 | 
			
		||||
        current: [],
 | 
			
		||||
        previous: [],
 | 
			
		||||
      },
 | 
			
		||||
      transformRate: {
 | 
			
		||||
        current: [],
 | 
			
		||||
        previous: [],
 | 
			
		||||
      },
 | 
			
		||||
      chipRate: {
 | 
			
		||||
        target: [],
 | 
			
		||||
        current: [],
 | 
			
		||||
        previous: [],
 | 
			
		||||
      },
 | 
			
		||||
      stdRate: {
 | 
			
		||||
        target: [],
 | 
			
		||||
        current: [],
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  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":
 | 
			
		||||
        console.log('222222', payload)
 | 
			
		||||
        state.copilot.efficiency.chipOee = payload.chipOee;
 | 
			
		||||
        state.copilot.efficiency.transformRate = payload.transformRate;
 | 
			
		||||
        state.copilot.efficiency.chipRate = payload.chipRate;
 | 
			
		||||
        state.copilot.efficiency.stdRate = payload.stdRate;
 | 
			
		||||
        break;
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const actions = {
 | 
			
		||||
  /** 初始化首页数据 */
 | 
			
		||||
  async initHome({ commit }) {
 | 
			
		||||
    const dataArr = await getHomeInfo();
 | 
			
		||||
    const targetArr = await getHomeInfo();
 | 
			
		||||
    const payload = splitCurrentAndPrevious(dataArr.prodOutputResultDO, targetArr.prodTargetDO);
 | 
			
		||||
    commit("SET_HOME_INFO", payload);
 | 
			
		||||
  },
 | 
			
		||||
  /** 初始化驾驶舱数据 */
 | 
			
		||||
  async initCopilot({ commit }, { period, source }) {
 | 
			
		||||
    if (source == "comprehensive") return;
 | 
			
		||||
 | 
			
		||||
    const fetcher = {
 | 
			
		||||
      yield: getCopilotYield,
 | 
			
		||||
      comprehensive: getCopilotEnergy,
 | 
			
		||||
      efficiency: getCopilotEfficiency,
 | 
			
		||||
    }[source];
 | 
			
		||||
    const handler = {
 | 
			
		||||
      yield: splitCurrentAndPrevious,
 | 
			
		||||
      comprehensive: () => null,
 | 
			
		||||
      efficiency: splitCurrentAndPreviousA,
 | 
			
		||||
    }[source]
 | 
			
		||||
    console.log(handler)
 | 
			
		||||
    // 获取产量数据
 | 
			
		||||
    // console.log('qqqqqq',handler)
 | 
			
		||||
    let { data: factoryList, type } = await fetcher(period)
 | 
			
		||||
    console.log(factoryList,type);
 | 
			
		||||
    let targetList = null;
 | 
			
		||||
    if (source === "yield" || source === "efficiency") {
 | 
			
		||||
      // 获取目标数据
 | 
			
		||||
      let { data } = await fetcher(period, true)
 | 
			
		||||
      // console.log('11111',data)
 | 
			
		||||
      targetList = data
 | 
			
		||||
    }
 | 
			
		||||
    let factoryData = factoryList.prodOutputResultDO ? factoryList.prodOutputResultDO : factoryList.prodOutputRateDO
 | 
			
		||||
    let targetData = targetList.ProdTargetDO ? targetList.ProdTargetDO : targetList.ProdTargetDO
 | 
			
		||||
    console.log(factoryList.ProdOutputDO)
 | 
			
		||||
    console.log('ryf',factoryList)
 | 
			
		||||
    const payload = handler(factoryData, targetData)
 | 
			
		||||
    console.log(payload)
 | 
			
		||||
    commit("SET_COPILOT_INFO", { type, payload });
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  namespaced: true,
 | 
			
		||||
  state,
 | 
			
		||||
  mutations,
 | 
			
		||||
  actions,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function splitCurrentAndPreviousA(factoryListResponse, targetListResponse) {
 | 
			
		||||
  console.log('工厂',factoryListResponse);
 | 
			
		||||
  // console.log('工厂',factoryListResponse);
 | 
			
		||||
 | 
			
		||||
  // 初始数据
 | 
			
		||||
  const { chipOee, transformRate, chipRate, stdRate } = initA();
 | 
			
		||||
  // factoryListResponse = [
 | 
			
		||||
  //   {
 | 
			
		||||
  //     factory: 0,
 | 
			
		||||
  //     oee: 0.8,
 | 
			
		||||
  //     previousYearOee: 0.7,
 | 
			
		||||
  //     componentConversionEfficiency: 0.8,
 | 
			
		||||
  //     previousYearComponentConversionEfficiency: 0.7,
 | 
			
		||||
  //     glassType: 0,
 | 
			
		||||
  //     yieldRate: 0.8,
 | 
			
		||||
  //     previousYearYieldRate: 0.7,
 | 
			
		||||
  //     chipYieldRate: 0.38,
 | 
			
		||||
  //     componentYieldRate: 0.73,
 | 
			
		||||
  //   },
 | 
			
		||||
  //   {
 | 
			
		||||
  //     factory: 1,
 | 
			
		||||
  //     oee: 0.8,
 | 
			
		||||
  //     previousYearOee: 0.7,
 | 
			
		||||
  //     componentConversionEfficiency: 0.8,
 | 
			
		||||
  //     previousYearComponentConversionEfficiency: 0.7,
 | 
			
		||||
  //     glassType: 1,
 | 
			
		||||
  //     yieldRate: 0.8,
 | 
			
		||||
  //     previousYearYieldRate: 0.7,
 | 
			
		||||
  //     chipYieldRate: 0.38,
 | 
			
		||||
  //     componentYieldRate: 0.73,
 | 
			
		||||
  //   },
 | 
			
		||||
  //   {
 | 
			
		||||
  //     factory: 2,
 | 
			
		||||
  //     oee: 0.8,
 | 
			
		||||
  //     previousYearOee: 0.7,
 | 
			
		||||
  //     componentConversionEfficiency: 0.8,
 | 
			
		||||
  //     previousYearComponentConversionEfficiency: 0.7,
 | 
			
		||||
  //     glassType: 1,
 | 
			
		||||
  //     yieldRate: 0.8,
 | 
			
		||||
  //     previousYearYieldRate: 0.7,
 | 
			
		||||
  //     chipYieldRate: 0.38,
 | 
			
		||||
  //     componentYieldRate: 0.73,
 | 
			
		||||
  //   },
 | 
			
		||||
  //   {
 | 
			
		||||
  //     factory: 3,
 | 
			
		||||
  //     oee: 0.8,
 | 
			
		||||
  //     previousYearOee: 0.7,
 | 
			
		||||
  //     componentConversionEfficiency: 0.8,
 | 
			
		||||
  //     previousYearComponentConversionEfficiency: 0.7,
 | 
			
		||||
  //     glassType: 0,
 | 
			
		||||
  //     yieldRate: 0.8,
 | 
			
		||||
  //     previousYearYieldRate: 0.7,
 | 
			
		||||
  //     chipYieldRate: 0.38,
 | 
			
		||||
  //     componentYieldRate: 0.73,
 | 
			
		||||
  //   },
 | 
			
		||||
  // ];
 | 
			
		||||
  if (factoryListResponse) {
 | 
			
		||||
    for (const factory of factoryListResponse) {
 | 
			
		||||
        if (factory.glassType === 1) {
 | 
			
		||||
        console.log(factory.yieldRate)
 | 
			
		||||
      }
 | 
			
		||||
      const fId = getFactoryId(factory);
 | 
			
		||||
      // 获取目标值
 | 
			
		||||
      if (targetListResponse) {
 | 
			
		||||
        const {
 | 
			
		||||
          chipYieldRate,
 | 
			
		||||
          componentYieldRate,
 | 
			
		||||
          chipOee,
 | 
			
		||||
          componentConversionEfficiency,
 | 
			
		||||
        } = getFactoryTargetValueA(targetListResponse, fId);
 | 
			
		||||
        stdRate.target[fId] = chipYieldRate;
 | 
			
		||||
        chipRate.target[fId] = componentYieldRate;
 | 
			
		||||
      }
 | 
			
		||||
      // 芯片OEE
 | 
			
		||||
      chipOee.current[fId] = factory.oee * 100 || random_default();
 | 
			
		||||
      chipOee.previous[fId] = factory.previousYearOee * 100 || random_default();
 | 
			
		||||
      // 转化效率
 | 
			
		||||
      transformRate.current[fId] =
 | 
			
		||||
        factory.componentConversionEfficiency * 100 || random_default();
 | 
			
		||||
      transformRate.previous[fId] =
 | 
			
		||||
        factory.previousYearComponentConversionEfficiency * 100 || random_default();
 | 
			
		||||
      // 芯片良率 与 标准组件良率
 | 
			
		||||
      if (![0, 1].includes(factory.glassType)) continue;
 | 
			
		||||
      const _t = [chipRate, stdRate][factory.glassType];
 | 
			
		||||
      _t.current[fId] = factory.yieldRate || random_default();
 | 
			
		||||
      _t.previous[fId] = factory.previousYearYieldRate || random_default();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return {
 | 
			
		||||
      chipOee,
 | 
			
		||||
      transformRate,
 | 
			
		||||
      chipRate,
 | 
			
		||||
      stdRate,
 | 
			
		||||
    };
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function splitCurrentAndPrevious(factoryListResponse, targetListResponse) {
 | 
			
		||||
  console.log('工厂',factoryListResponse);
 | 
			
		||||
 | 
			
		||||
  // 初始数据
 | 
			
		||||
  const { chipInvest, ftoInvest, chipOutput, stdOutput, bipvOutput } = init();
 | 
			
		||||
  if (factoryListResponse) {
 | 
			
		||||
    for (const factory of factoryListResponse) {
 | 
			
		||||
 | 
			
		||||
      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产出
 | 
			
		||||
      // 因为后端写的垃圾数据,所以这里要做一下判断
 | 
			
		||||
      if (![0, 1, 2].includes(factory.glassType)) continue;
 | 
			
		||||
      const _t = [chipOutput, stdOutput, bipvOutput][factory.glassType];
 | 
			
		||||
      _t.current[fId] = factory.outputNumber;
 | 
			
		||||
      _t.previous[fId] = factory.previousYearOutputNumber;
 | 
			
		||||
      // debugger;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    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(),
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 获取 芯片良率目标值 和 标准组件良率目标值
 | 
			
		||||
 * @param {*} targetList 目标值列表
 | 
			
		||||
 * @param {*} factoryId 工厂ID
 | 
			
		||||
 * @returns
 | 
			
		||||
 */
 | 
			
		||||
function getFactoryTargetValueA(targetList, factoryId) {
 | 
			
		||||
  const target = targetList.find((item) => item.factory === factoryId);
 | 
			
		||||
  if (target) {
 | 
			
		||||
    return {
 | 
			
		||||
      chipYieldRate: target.chipYieldRate ?? random_default(),
 | 
			
		||||
      componentYieldRate: target.componentYieldRate ?? random_default(),
 | 
			
		||||
    };
 | 
			
		||||
  }
 | 
			
		||||
  return {
 | 
			
		||||
    chipYieldRate: random_default(),
 | 
			
		||||
    componentYieldRate: random_default(),
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * @returns 初始化 效率模块里 初始状态值
 | 
			
		||||
 */
 | 
			
		||||
function initA() {
 | 
			
		||||
  const t_ = {
 | 
			
		||||
    current: Array(7).fill(0),
 | 
			
		||||
    previous: Array(7).fill(0),
 | 
			
		||||
  };
 | 
			
		||||
  // 芯片OEE
 | 
			
		||||
  const chipOee = deepClone(t_);
 | 
			
		||||
  // 转化效率
 | 
			
		||||
  const transformRate = deepClone(t_);
 | 
			
		||||
  // 标准组件良率
 | 
			
		||||
  const stdRate = {
 | 
			
		||||
    ...deepClone(t_),
 | 
			
		||||
    target: Array(7).fill(0),
 | 
			
		||||
  };
 | 
			
		||||
  // 芯片良率
 | 
			
		||||
  const chipRate = deepClone(stdRate);
 | 
			
		||||
  return {
 | 
			
		||||
    chipOee,
 | 
			
		||||
    transformRate,
 | 
			
		||||
    chipRate,
 | 
			
		||||
    stdRate,
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * @returns 初始化 产量模块里 初始状态值
 | 
			
		||||
 */
 | 
			
		||||
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, // FTO投入
 | 
			
		||||
    chipOutput, // 芯片产出
 | 
			
		||||
    stdOutput, // 标准组件产出
 | 
			
		||||
    bipvOutput, // BIPV产出
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function random_default(min = 0, max = 1) {
 | 
			
		||||
  // return 0;
 | 
			
		||||
  let a = Math.floor(Math.random() * max);
 | 
			
		||||
  while (a < min) {
 | 
			
		||||
    a = Math.floor(Math.random() * max);
 | 
			
		||||
  }
 | 
			
		||||
  return a;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* 接口 */
 | 
			
		||||
async function getHomeInfo() {
 | 
			
		||||
  const { code, data } = await axios.post("/ip/prod-output/query-by-date", {
 | 
			
		||||
  const { code, data } = await axios.post("ip/prod-output/cockpitData", {
 | 
			
		||||
    factorys: [],
 | 
			
		||||
    date: 4,
 | 
			
		||||
  });
 | 
			
		||||
@@ -34,162 +402,96 @@ async function getHomeTarget() {
 | 
			
		||||
  return null;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* 状态 */
 | 
			
		||||
const state = {
 | 
			
		||||
  copilot: {
 | 
			
		||||
    /* 产量驾驶舱 */
 | 
			
		||||
    yield: {},
 | 
			
		||||
    /* 能源驾驶舱 */
 | 
			
		||||
    energy: {},
 | 
			
		||||
    /* 效率驾驶舱 */
 | 
			
		||||
    efficiency: {},
 | 
			
		||||
  },
 | 
			
		||||
  home: {
 | 
			
		||||
    ftoInvest: null,
 | 
			
		||||
    chipInvest: null,
 | 
			
		||||
    chipOutput: null,
 | 
			
		||||
    stdOutput: null,
 | 
			
		||||
    bipvOutput: null,
 | 
			
		||||
  },
 | 
			
		||||
function getUrl(copilot_module) {
 | 
			
		||||
  let url = {
 | 
			
		||||
    // 对比数据的 URL
 | 
			
		||||
    comparison: "",
 | 
			
		||||
    // 目标数据的 URL
 | 
			
		||||
    target: "",
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
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) => {},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const actions = {
 | 
			
		||||
  /** 初始化首页数据 */
 | 
			
		||||
  async initHome({ commit }) {
 | 
			
		||||
    const dataArr = await getHomeInfo();
 | 
			
		||||
    const targetArr = await getHomeTarget();
 | 
			
		||||
 | 
			
		||||
    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()
 | 
			
		||||
            );
 | 
			
		||||
  switch (copilot_module) {
 | 
			
		||||
    case "yield":
 | 
			
		||||
      url.comparison = "ip/prod-output/cockpitData";
 | 
			
		||||
      // url.target = "/ip/prod-target/query-by-date";
 | 
			
		||||
      break;
 | 
			
		||||
          case 1:
 | 
			
		||||
            // 标准组件 产出
 | 
			
		||||
            stdOutput.current.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.outputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
            stdOutput.previous.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.previousYearOutputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
    case "energy":
 | 
			
		||||
      break;
 | 
			
		||||
          case 2:
 | 
			
		||||
            // BIPV 产出
 | 
			
		||||
            bipvOutput.current.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.outputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
            bipvOutput.previous.splice(
 | 
			
		||||
              factoryId,
 | 
			
		||||
              1,
 | 
			
		||||
              factory.previousYearOutputNumber ?? random_default()
 | 
			
		||||
            );
 | 
			
		||||
    case "efficiency":
 | 
			
		||||
      url.comparison = "ip/prod-output/cockpitDataRate";
 | 
			
		||||
      // url.target = "/ip/prod-target/query-rate-target";
 | 
			
		||||
      break;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return url;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
      /* 更新 state */
 | 
			
		||||
      commit("SET_HOME_INFO", {
 | 
			
		||||
        ftoInvest,
 | 
			
		||||
        chipInvest,
 | 
			
		||||
        chipOutput,
 | 
			
		||||
        stdOutput,
 | 
			
		||||
        bipvOutput,
 | 
			
		||||
      });
 | 
			
		||||
async function doFetch(copilot_module = "yield", fetch_target, params) {
 | 
			
		||||
  const url = getUrl(copilot_module);
 | 
			
		||||
  const { code, data } = await axios.post(
 | 
			
		||||
    url.comparison,
 | 
			
		||||
    {
 | 
			
		||||
      ...params,
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  /** 初始化驾驶舱数据 */
 | 
			
		||||
  async initCopilot({ commit }) {},
 | 
			
		||||
  );
 | 
			
		||||
  if (code == 0) {
 | 
			
		||||
    return data;
 | 
			
		||||
  }
 | 
			
		||||
  console.warn("[doFetch] failed, code: ", code);
 | 
			
		||||
  return null;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * @param {*} period 日周月年1,2,3,4
 | 
			
		||||
 * @param {*} target 是否获取目标数据
 | 
			
		||||
 * @returns
 | 
			
		||||
 */
 | 
			
		||||
function getCopilotYield(period, target = false) {
 | 
			
		||||
  return getCopilotData("yield", period, target);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function getCopilotEnergy(period, target = false) {
 | 
			
		||||
  return getCopilotData("energy", period, target);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function getCopilotEfficiency(period, target = false) {
 | 
			
		||||
  return getCopilotData("efficiency", period, target);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 *
 | 
			
		||||
 * @param {*} period 周期: 日周月年
 | 
			
		||||
 * @param {*} target 是否获取目标数据:默认 否
 | 
			
		||||
 * @returns
 | 
			
		||||
 */
 | 
			
		||||
async function getCopilotData(copilot_module, period, target = false) {
 | 
			
		||||
  if (!copilot_module) copilot_module = "yield";
 | 
			
		||||
  // 请求参数,直接一次性获取所有工厂
 | 
			
		||||
  let queryParams = {
 | 
			
		||||
    factorys: [],
 | 
			
		||||
    date: 4,
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  namespaced: true,
 | 
			
		||||
  state,
 | 
			
		||||
  mutations,
 | 
			
		||||
  actions,
 | 
			
		||||
  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;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return {
 | 
			
		||||
    data: await doFetch(copilot_module, target ? true : false, queryParams),
 | 
			
		||||
    type: copilot_module,
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										47
									
								
								src/utils/debounce.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,47 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-16 09:32:29
 | 
			
		||||
 * @LastEditTime: 2024-04-16 09:32:29
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
/**
 | 
			
		||||
 * @param {Function} func
 | 
			
		||||
 * @param {number} wait
 | 
			
		||||
 * @param {boolean} immediate
 | 
			
		||||
 * @return {*}
 | 
			
		||||
 */
 | 
			
		||||
export function debounce(func, wait, immediate) {
 | 
			
		||||
  let timeout, args, context, timestamp, result
 | 
			
		||||
 | 
			
		||||
  const later = function () {
 | 
			
		||||
    // 据上一次触发时间间隔
 | 
			
		||||
    const last = +new Date() - timestamp
 | 
			
		||||
 | 
			
		||||
    // 上次被包装函数被调用时间间隔 last 小于设定时间间隔 wait
 | 
			
		||||
    if (last < wait && last > 0) {
 | 
			
		||||
      timeout = setTimeout(later, wait - last)
 | 
			
		||||
    } else {
 | 
			
		||||
      timeout = null
 | 
			
		||||
      // 如果设定为immediate===true,因为开始边界已经调用过了此处无需调用
 | 
			
		||||
      if (!immediate) {
 | 
			
		||||
        result = func.apply(context, args)
 | 
			
		||||
        if (!timeout) context = args = null
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  return function (...args) {
 | 
			
		||||
    context = this
 | 
			
		||||
    timestamp = +new Date()
 | 
			
		||||
    const callNow = immediate && !timeout
 | 
			
		||||
    // 如果延时不存在,重新设定延时
 | 
			
		||||
    if (!timeout) timeout = setTimeout(later, wait)
 | 
			
		||||
    if (callNow) {
 | 
			
		||||
      result = func.apply(context, args)
 | 
			
		||||
      context = args = null
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return result
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								src/views/copilot/assets/icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 5.0 KiB  | 
							
								
								
									
										258
									
								
								src/views/copilot/components/BarChartBase.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,258 @@
 | 
			
		||||
<!--
 | 
			
		||||
    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: 40vw"
 | 
			
		||||
      :style="{ height: vHeight + 'vh' }"
 | 
			
		||||
    ></div>
 | 
			
		||||
  </chart-container>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import screenfull from "screenfull";
 | 
			
		||||
import ChartContainer from "./ChartContainer.vue";
 | 
			
		||||
import chartMixin from "@/mixins/chart.js";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "BarChartBase",
 | 
			
		||||
  components: {
 | 
			
		||||
    ChartContainer,
 | 
			
		||||
  },
 | 
			
		||||
  mixins: [chartMixin],
 | 
			
		||||
  props: {
 | 
			
		||||
    vHeight: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 34,
 | 
			
		||||
    },
 | 
			
		||||
    legend: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    xAxis: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    series: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    in: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  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));
 | 
			
		||||
      console.log('actualOptions', 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>
 | 
			
		||||
							
								
								
									
										69
									
								
								src/views/copilot/components/ChartContainer.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,69 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: ChartContainer.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:54:33
 | 
			
		||||
    description: 
 | 
			
		||||
    todo: 驾驶舱和首页的 ChartContainer, 实现滑动条 和动态宽高
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="chart-container" :class="{ 'no-scroll': noScroll }">
 | 
			
		||||
    <slot />
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ChartContainer",
 | 
			
		||||
  components: {},
 | 
			
		||||
  props: {
 | 
			
		||||
    noScroll: {
 | 
			
		||||
      type: Boolean,
 | 
			
		||||
      default: false,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.chart-container {
 | 
			
		||||
  height: 0;
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  overflow-x: scroll;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.no-scroll::-webkit-scrollbar {
 | 
			
		||||
  width: 0;
 | 
			
		||||
  height: 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
::-webkit-scrollbar {
 | 
			
		||||
  width: 8px;
 | 
			
		||||
  height: 8px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
::-webkit-scrollbar-button {
 | 
			
		||||
  width: 0;
 | 
			
		||||
  height: 0;
 | 
			
		||||
  //   width: 10px;
 | 
			
		||||
  //   height: 10px;
 | 
			
		||||
  //   background: #14305f;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
::-webkit-scrollbar-track {
 | 
			
		||||
  background: #14305f;
 | 
			
		||||
  border: 0 none;
 | 
			
		||||
  border-radius: 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
::-webkit-scrollbar-thumb {
 | 
			
		||||
  background: #004798;
 | 
			
		||||
  border: 0 none;
 | 
			
		||||
  border-radius: 6px;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -9,6 +9,7 @@
 | 
			
		||||
  <div class="copilot-container">
 | 
			
		||||
    <!-- refresh btn  -->
 | 
			
		||||
    <button
 | 
			
		||||
      v-if="0"
 | 
			
		||||
      style="
 | 
			
		||||
        appearance: none;
 | 
			
		||||
        outline: none;
 | 
			
		||||
@@ -109,7 +110,12 @@ export default {
 | 
			
		||||
    border-radius: 2px;
 | 
			
		||||
    top: 0%;
 | 
			
		||||
    left: 0;
 | 
			
		||||
    background: radial-gradient(circle at center , #024798 2%, #024798 30%, transparent);
 | 
			
		||||
    background: radial-gradient(
 | 
			
		||||
      circle at center,
 | 
			
		||||
      #024798 2%,
 | 
			
		||||
      #024798 30%,
 | 
			
		||||
      transparent
 | 
			
		||||
    );
 | 
			
		||||
    z-index: 1;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,9 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: ContainerIcon.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-09 16:41:36
 | 
			
		||||
    description: 
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-28 13:42:51
 | 
			
		||||
 * @LastEditTime: 2024-05-07 16:54:54
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
@@ -14,8 +15,13 @@ import cube from "@/assets/images/homeindex/fto-icon.png";
 | 
			
		||||
import chip from "@/assets/images/homeindex/chip-icon.png";
 | 
			
		||||
import chip2 from "@/assets/images/homeindex/chip-icon-2.png";
 | 
			
		||||
import bipv from "@/assets/images/homeindex/bipv-icon.png";
 | 
			
		||||
import water from "@/assets/images/homeindex/water-icon.png";
 | 
			
		||||
import gas from "@/assets/images/homeindex/gas-icon.png";
 | 
			
		||||
import ware from "@/assets/images/homeindex/ware-icon.png";
 | 
			
		||||
import flash from "@/assets/images/homeindex/flash-icon.png";
 | 
			
		||||
import std from "@/assets/images/homeindex/std-icon.png";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ContainerIcon",
 | 
			
		||||
  components: {},
 | 
			
		||||
@@ -40,6 +46,10 @@ export default {
 | 
			
		||||
        bipv:
 | 
			
		||||
          "background: url(" + bipv + ") no-repeat center center / 100% 100%",
 | 
			
		||||
        std: "background: url(" + std + ") no-repeat center center / 100% 100%",
 | 
			
		||||
        water: "background: url(" + water + ") no-repeat center center / 100% 100%",
 | 
			
		||||
        gas: "background: url(" + gas + ") no-repeat center center / 100% 100%",
 | 
			
		||||
        flash: "background: url(" + flash + ") no-repeat center center / 100% 100%",
 | 
			
		||||
        ware: "background: url(" + ware + ") no-repeat center center / 100% 100%",
 | 
			
		||||
      }[this.icon];
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,7 @@
 | 
			
		||||
  <div class="copilot-header">
 | 
			
		||||
    <section class="menu">
 | 
			
		||||
      <CopilotButton
 | 
			
		||||
        v-for="i in ['产量', '效率', '能源']"
 | 
			
		||||
        v-for="i in ['产量', '效率', '综合']"
 | 
			
		||||
        :key="i"
 | 
			
		||||
        :label="i"
 | 
			
		||||
        :active="i === active"
 | 
			
		||||
@@ -63,7 +63,7 @@ export default {
 | 
			
		||||
    toggleFullScreen() {
 | 
			
		||||
      this.isFullscreen = !this.isFullscreen;
 | 
			
		||||
 | 
			
		||||
      screenfull.toggle(document.querySelector(".copilot-layout"));
 | 
			
		||||
      screenfull.toggle(document.querySelector(".copilot-layout"))
 | 
			
		||||
      // 矫正宽度
 | 
			
		||||
      // const el = document.querySelector(".copilot-layout");
 | 
			
		||||
      // el.style.width = this.isFullscreen ? "100vw" : "calc(100vw - 54px)";
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										131
									
								
								src/views/copilot/components/FactoryDataHeader.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,131 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="factory-header">
 | 
			
		||||
    <section class="menu1">
 | 
			
		||||
      <FactorySelect
 | 
			
		||||
        :companyName="companyName"
 | 
			
		||||
        :companyId="companyId"
 | 
			
		||||
        @updateCompany="updateCompany"
 | 
			
		||||
      />
 | 
			
		||||
    </section>
 | 
			
		||||
    <section class="menu2">
 | 
			
		||||
      <CopilotButton
 | 
			
		||||
        v-for="i in ['日', '周', '月', '年']"
 | 
			
		||||
        :key="i"
 | 
			
		||||
        :label="i"
 | 
			
		||||
        :active="i === period"
 | 
			
		||||
        @click="() => $emit('update:period', i)"
 | 
			
		||||
      />
 | 
			
		||||
      <div class="btn-group">
 | 
			
		||||
        <button type="button" class="export-btn" />
 | 
			
		||||
        <button
 | 
			
		||||
          type="button"
 | 
			
		||||
          class="fullscreen-btn"
 | 
			
		||||
          :class="[isFullscreen ? 'exit-fullscreen' : '']"
 | 
			
		||||
          @click="toggleFullScreen"
 | 
			
		||||
        />
 | 
			
		||||
      </div>
 | 
			
		||||
    </section>
 | 
			
		||||
    <div class="page-title">{{ companyName }}</div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import CopilotButton from "./button.vue";
 | 
			
		||||
import FactorySelect from "./FactorySelect.vue";
 | 
			
		||||
import screenfull from "screenfull";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "FactoryDataHeader",
 | 
			
		||||
  components: { CopilotButton, FactorySelect },
 | 
			
		||||
  props: {
 | 
			
		||||
    companyName: {
 | 
			
		||||
      type: String,
 | 
			
		||||
    },
 | 
			
		||||
    companyId: {
 | 
			
		||||
      type: String,
 | 
			
		||||
    },
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      isFullscreen: false,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {
 | 
			
		||||
    toggleFullScreen() {
 | 
			
		||||
      this.isFullscreen = !this.isFullscreen;
 | 
			
		||||
 | 
			
		||||
      screenfull.toggle(document.querySelector(".factory-layout"));
 | 
			
		||||
      // 矫正宽度
 | 
			
		||||
      // const el = document.querySelector(".factory-layout");
 | 
			
		||||
      // el.style.width = this.isFullscreen ? "100vw" : "calc(100vw - 54px)";
 | 
			
		||||
      // el.style.left = this.isFullscreen ? "0" : "54px";
 | 
			
		||||
    },
 | 
			
		||||
    updateCompany(obj) {
 | 
			
		||||
      this.$emit("updateCompany", obj);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
@font-face {
 | 
			
		||||
  font-family: 优设标题黑;
 | 
			
		||||
  src: url(../../../assets/YouSheBiaoTiHei-2.ttf);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.factory-header {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  gap: 12px;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.factory-header > .menu1 {
 | 
			
		||||
  width: 24vw;
 | 
			
		||||
  /* display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  gap: 8px; */
 | 
			
		||||
}
 | 
			
		||||
.factory-header > .menu2 {
 | 
			
		||||
  width: 30vw;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  gap: 8px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.export-btn,
 | 
			
		||||
.fullscreen-btn {
 | 
			
		||||
  width: 32px;
 | 
			
		||||
  height: 32px;
 | 
			
		||||
  margin-left: 24px;
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.export-btn {
 | 
			
		||||
  background: url(../../../assets/images/export-icon.png) 0 0 / 100% 100%
 | 
			
		||||
    no-repeat;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.fullscreen-btn {
 | 
			
		||||
  background: url(../../../assets/images/full-icon.png) 0 0 / 100% 100%
 | 
			
		||||
    no-repeat;
 | 
			
		||||
}
 | 
			
		||||
.exit-fullscreen {
 | 
			
		||||
  background: url(../../../assets/images/homeindex/exit-fullscreen.png) 0 0 /
 | 
			
		||||
    100% 100% no-repeat;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.page-title {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  font-size: 40px;
 | 
			
		||||
  line-height: 70px;
 | 
			
		||||
  letter-spacing: 5px;
 | 
			
		||||
  font-family: 优设标题黑;
 | 
			
		||||
  color: #6db6ff;
 | 
			
		||||
  text-align: right;
 | 
			
		||||
  user-select: none;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										137
									
								
								src/views/copilot/components/FactorySelect.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,137 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="factory-select">
 | 
			
		||||
    <div class="label-box" @click="openList">
 | 
			
		||||
      <span>{{ companyName }}</span>
 | 
			
		||||
      <span
 | 
			
		||||
        class="triangle"
 | 
			
		||||
        :style="{ transform: isOpen ? 'rotate(90deg)' : 'rotate(0deg)' }"
 | 
			
		||||
      ></span>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="option-list" v-show="isOpen">
 | 
			
		||||
      <div
 | 
			
		||||
        v-for="item in company"
 | 
			
		||||
        :key="item.id"
 | 
			
		||||
        @click="chooseCompany(item.id, item.name)"
 | 
			
		||||
      >
 | 
			
		||||
        {{ item.name }}
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
  name: "FactorySelect",
 | 
			
		||||
  props: {
 | 
			
		||||
    companyName: {
 | 
			
		||||
      type: String,
 | 
			
		||||
    },
 | 
			
		||||
    companyId: {
 | 
			
		||||
      type: String,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      isOpen: false,
 | 
			
		||||
      company: [
 | 
			
		||||
        { id: "1", name: "瑞昌中建材光电材料有限公司" },
 | 
			
		||||
        { id: "2", name: "邯郸中建材光电材料有限公司" },
 | 
			
		||||
        { id: "3", name: "株洲中建材光电材料有限公司" },
 | 
			
		||||
        { id: "4", name: "佳木斯中建材光电材料有限公司" },
 | 
			
		||||
        { id: "5", name: "成都中建材光电材料有限公司" },
 | 
			
		||||
        { id: "6", name: "凯盛中建材光电材料有限公司" },
 | 
			
		||||
        { id: "7", name: "蚌埠中建材光电材料有限公司" },
 | 
			
		||||
      ],
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    openList() {
 | 
			
		||||
      this.isOpen = !this.isOpen;
 | 
			
		||||
    },
 | 
			
		||||
    chooseCompany(id, name) {
 | 
			
		||||
      // this.companyId = id;
 | 
			
		||||
      // this.companyName = name;
 | 
			
		||||
      this.$emit("updateCompany", { companyName: name, companyId: id });
 | 
			
		||||
      this.isOpen = false;
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
.factory-select {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  .label-box {
 | 
			
		||||
    flex: 1;
 | 
			
		||||
    position: relative;
 | 
			
		||||
    background: #006acd40;
 | 
			
		||||
    backdrop-filter: blur(3px);
 | 
			
		||||
    padding: 12px;
 | 
			
		||||
    padding-left: 20px;
 | 
			
		||||
    color: #fff;
 | 
			
		||||
    font-size: 22px;
 | 
			
		||||
    cursor: pointer;
 | 
			
		||||
  }
 | 
			
		||||
  .label-box::before,
 | 
			
		||||
  .label-box::after {
 | 
			
		||||
    content: "";
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    width: 16px;
 | 
			
		||||
    height: 16px;
 | 
			
		||||
    top: 0;
 | 
			
		||||
    background: transparent;
 | 
			
		||||
    border-style: solid;
 | 
			
		||||
    border-width: 2px;
 | 
			
		||||
    border-color: transparent;
 | 
			
		||||
    border-top-color: #007be4;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .label-box::before {
 | 
			
		||||
    left: 0;
 | 
			
		||||
    border-left-color: #007be4;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .label-box::after {
 | 
			
		||||
    right: 0;
 | 
			
		||||
    border-right-color: #007be4;
 | 
			
		||||
  }
 | 
			
		||||
  .triangle {
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    right: 15px;
 | 
			
		||||
    top: 18px;
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
    width: 0;
 | 
			
		||||
    height: 0;
 | 
			
		||||
    border-top: 12px solid transparent;
 | 
			
		||||
    border-bottom: 12px solid transparent;
 | 
			
		||||
    border-left: 12px solid #1d74d8;
 | 
			
		||||
  }
 | 
			
		||||
  .option-list {
 | 
			
		||||
    width: 100%;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    z-index: 1000;
 | 
			
		||||
    div {
 | 
			
		||||
      padding-left: 23px;
 | 
			
		||||
      font-size: 20px;
 | 
			
		||||
      width: 100%;
 | 
			
		||||
      height: 44px;
 | 
			
		||||
      line-height: 44px;
 | 
			
		||||
      background-color: rgba(1, 34, 86, 0.8);
 | 
			
		||||
      cursor: pointer;
 | 
			
		||||
    }
 | 
			
		||||
    div:hover {
 | 
			
		||||
      background-color: rgba(0, 106, 205, 0.61);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  .option-list::before {
 | 
			
		||||
    content: "";
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    top: 0;
 | 
			
		||||
    left: 0;
 | 
			
		||||
    width: 100%;
 | 
			
		||||
    height: 100%;
 | 
			
		||||
    background-color: rgba(1, 34, 86, 0.9);
 | 
			
		||||
    filter: blur(2px);
 | 
			
		||||
    z-index: -1;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										296
									
								
								src/views/copilot/components/LineChartBase.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,296 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: LineChartBase.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-30 08:59:28
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <chart-container class="line-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 ChartContainer from "./ChartContainer.vue";
 | 
			
		||||
import chartMixin from "@/mixins/chart.js";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "LineChartBase",
 | 
			
		||||
  components: {
 | 
			
		||||
    ChartContainer,
 | 
			
		||||
  },
 | 
			
		||||
  mixins: [chartMixin],
 | 
			
		||||
  props: {
 | 
			
		||||
    vHeight: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 34,
 | 
			
		||||
    },
 | 
			
		||||
    legend: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    xAxis: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    series: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    in: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  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">
 | 
			
		||||
.line-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.432vw;
 | 
			
		||||
      height: 0.432vw;
 | 
			
		||||
      border-radius: 100%;
 | 
			
		||||
      margin-right: 0.4vw;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    &::after {
 | 
			
		||||
      content: "";
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      width: 1vw;
 | 
			
		||||
      height: 0.125vw;
 | 
			
		||||
      position: absolute;
 | 
			
		||||
      top: 54%;
 | 
			
		||||
      left: -15%;
 | 
			
		||||
      transform: translateY(-50%);
 | 
			
		||||
      border-radius: 100;
 | 
			
		||||
      margin-right: 0.22vw;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item:nth-child(1):after,
 | 
			
		||||
  .legend-item:nth-child(1):before {
 | 
			
		||||
    background-color: #fad162;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item:nth-child(2):after,
 | 
			
		||||
  .legend-item:nth-child(2):before {
 | 
			
		||||
    background-color: #2160f3;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item:nth-child(3):after,
 | 
			
		||||
  .legend-item:nth-child(3):before {
 | 
			
		||||
    background-color: #13dbf3;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item:nth-child(4):after,
 | 
			
		||||
  .legend-item:nth-child(4):before {
 | 
			
		||||
    background-color: #88ca67;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item:nth-child(5):after,
 | 
			
		||||
  .legend-item:nth-child(5):before {
 | 
			
		||||
    background-color: #5c97fc;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item:nth-child(6):after,
 | 
			
		||||
  .legend-item:nth-child(6):before {
 | 
			
		||||
    background-color: #f48900;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item:nth-child(7):after,
 | 
			
		||||
  .legend-item:nth-child(7):before {
 | 
			
		||||
    background-color: #776bf0;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -1,119 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: DoubleRingChart.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-17 11:01:55
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="double-ring-chart">
 | 
			
		||||
    <div ref="chart" class="double-ring-chart__container"></div>
 | 
			
		||||
    <!--   :style="{ height: vHeight + 'vh' }" -->
 | 
			
		||||
    <div class="double-ring-chart__legend">
 | 
			
		||||
      <div v-for="item in legendItems" :key="item.label" class="legend-item">
 | 
			
		||||
        <span class="legend-item__label">{{ item.label }}</span>
 | 
			
		||||
        <span class="legend-item__value">{{
 | 
			
		||||
          item.value.toLocaleString()
 | 
			
		||||
        }}</span>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import chartMixin from "@/mixins/chart.js";
 | 
			
		||||
import fullscreenMixin from "@/mixins/fullscreen.js";
 | 
			
		||||
import options from "./double-ring-chart-options";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "DoubleRingChart",
 | 
			
		||||
  mixins: [chartMixin, fullscreenMixin],
 | 
			
		||||
  props: {
 | 
			
		||||
    vHeight: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 24,
 | 
			
		||||
    },
 | 
			
		||||
    legendItems: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => [
 | 
			
		||||
        { label: "2023年累计", value: 88002 },
 | 
			
		||||
        { label: "2024年累计", value: 88002 },
 | 
			
		||||
        { label: "2025年累计", value: 88002 },
 | 
			
		||||
      ],
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.initOptions(options);
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    // fullscreen mixin 需要的回调
 | 
			
		||||
    fullscreenCallback(isFullscreen) {
 | 
			
		||||
      console.log("isFullscreen--->", isFullscreen);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.double-ring-chart {
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.double-ring-chart__container {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  height: 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.double-ring-chart__legend {
 | 
			
		||||
  padding: 12px;
 | 
			
		||||
  color: #fff;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  justify-content: center;
 | 
			
		||||
  gap: 32px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  align-items: flex-start;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item__label {
 | 
			
		||||
  position: relative;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item__label::before {
 | 
			
		||||
  content: "";
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  width: 12px;
 | 
			
		||||
  height: 12px;
 | 
			
		||||
  background: #ccc;
 | 
			
		||||
  border-radius: 2px;
 | 
			
		||||
  top: 6px;
 | 
			
		||||
  left: -18px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item:nth-child(1) .legend-item__label::before {
 | 
			
		||||
  background: #0f65ff;
 | 
			
		||||
}
 | 
			
		||||
.legend-item:nth-child(1) .legend-item__value {
 | 
			
		||||
  color: #0f65ff;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item:nth-child(2) .legend-item__label::before {
 | 
			
		||||
  background: #12fff5;
 | 
			
		||||
}
 | 
			
		||||
.legend-item:nth-child(2) .legend-item__value {
 | 
			
		||||
  color: #12fff5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item:nth-child(3) .legend-item__label::before {
 | 
			
		||||
  background: #003982;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -1,66 +0,0 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: DoubleRingWrapper.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-17 09:55:12
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="double-ring-wrapper">
 | 
			
		||||
    <copilot-select :options="cityOptions" />
 | 
			
		||||
    <div class="flex-1 stretch">
 | 
			
		||||
      <DoubleRingChartVue />
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import CopilotSelect from "../../select.vue";
 | 
			
		||||
import fetcher from "./fetcherDoubleRing";
 | 
			
		||||
import DoubleRingChartVue from "./DoubleRingChart.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "DoubleRingWrapper",
 | 
			
		||||
  components: { CopilotSelect, DoubleRingChartVue },
 | 
			
		||||
  props: {},
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      cityOptions: [
 | 
			
		||||
        "成都",
 | 
			
		||||
        "邯郸",
 | 
			
		||||
        "株洲",
 | 
			
		||||
        "瑞昌",
 | 
			
		||||
        "佳木斯",
 | 
			
		||||
        "凯盛光伏",
 | 
			
		||||
        "蚌埠兴科",
 | 
			
		||||
      ],
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  mounted() {
 | 
			
		||||
    fetcher.getData().then((res) => {
 | 
			
		||||
      console.log("getData--->", res);
 | 
			
		||||
    });
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.double-ring-wrapper {
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  padding: 12px 24px;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  gap: 12px;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.flex-1 {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.stretch {
 | 
			
		||||
  align-self: stretch;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -1,10 +0,0 @@
 | 
			
		||||
export default {
 | 
			
		||||
  getData: async function (url) {
 | 
			
		||||
    //
 | 
			
		||||
    return await new Promise((resolve, reject) => {
 | 
			
		||||
      setTimeout(() => {
 | 
			
		||||
        resolve([90119, 40801, 44028]);
 | 
			
		||||
      }, 1200);
 | 
			
		||||
    });
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
@@ -33,9 +33,28 @@ export default {
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      currentActive: '',
 | 
			
		||||
      currentActive: this.options[0],
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    currentActive: {
 | 
			
		||||
      handler(val) {
 | 
			
		||||
        this.$emit(
 | 
			
		||||
          "update:active",
 | 
			
		||||
          [
 | 
			
		||||
            "瑞昌",
 | 
			
		||||
            "邯郸",
 | 
			
		||||
            "株洲",
 | 
			
		||||
            "佳木斯",
 | 
			
		||||
            "成都",
 | 
			
		||||
            "凯盛光伏",
 | 
			
		||||
            "蚌埠兴科",
 | 
			
		||||
          ].indexOf(val)
 | 
			
		||||
        );
 | 
			
		||||
      },
 | 
			
		||||
      immediate: true,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
@@ -55,7 +74,7 @@ button {
 | 
			
		||||
  padding: 8px 12px;
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  transition: all .3s;
 | 
			
		||||
  transition: all 0.3s;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
button.active,
 | 
			
		||||
 
 | 
			
		||||
@@ -1,3 +1,4 @@
 | 
			
		||||
 | 
			
		||||
<!--
 | 
			
		||||
    filename: container.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
@@ -6,18 +7,12 @@
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="copilot-layout">
 | 
			
		||||
    <CopilotHeaderVue
 | 
			
		||||
      :active="page"
 | 
			
		||||
      :period="period"
 | 
			
		||||
      @update:active="page = $event"
 | 
			
		||||
      @update:period="period = $event"
 | 
			
		||||
    />
 | 
			
		||||
  <div class="copilot-layout" ref="copilot-layout" :class="[ page== '产量' ? 'produce': 'other' ]">
 | 
			
		||||
    <CopilotHeaderVue :active="page" :period="period" @update:active="page = $event" @update:period="period = $event" />
 | 
			
		||||
 | 
			
		||||
    <YieldCopilot v-if="page == '产量'" :period="period" />
 | 
			
		||||
    <EnergyCopilot v-if="page == '能源'" :period="period" />
 | 
			
		||||
    <EnergyCopilot v-if="page == '综合'" :period="period" />
 | 
			
		||||
    <EfficiencyCopilot v-if="page == '效率'" :period="period" />
 | 
			
		||||
 | 
			
		||||
    <div class="copilot-footer">© 中建材智能自动化研究院有限公司</div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
@@ -40,19 +35,42 @@ export default {
 | 
			
		||||
    return {
 | 
			
		||||
      page: "产量",
 | 
			
		||||
      period: "日",
 | 
			
		||||
      currentsStyles: '',
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  // watch: {
 | 
			
		||||
  //   page(val) {
 | 
			
		||||
  //     if (val === '产量') {
 | 
			
		||||
  //       console.log(val)
 | 
			
		||||
  //       this.currentsStyles =
 | 
			
		||||
  //         'height: calc(100% + 38px)'
 | 
			
		||||
  //       console.log(this.currentsStyles)
 | 
			
		||||
  //     } else {
 | 
			
		||||
  //       console.log(val)
 | 
			
		||||
  //       this.currentsStyles = 'height:100%+38px'
 | 
			
		||||
  //       console.log(this.currentsStyles)
 | 
			
		||||
  //     }
 | 
			
		||||
  //     immediate: true
 | 
			
		||||
  //   }
 | 
			
		||||
  // }
 | 
			
		||||
  // mounted() {
 | 
			
		||||
  //   document.body.style.minHeight = "1024px";
 | 
			
		||||
  //   document.body.style.minWidth = "1550px";
 | 
			
		||||
  // },
 | 
			
		||||
  // destroyed() {
 | 
			
		||||
  //   document.body.style.minHeight = "1024px";
 | 
			
		||||
  //   document.body.style.minWidth = "1550px";
 | 
			
		||||
  // },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style>
 | 
			
		||||
 | 
			
		||||
.copilot-layout {
 | 
			
		||||
  padding: 16px;
 | 
			
		||||
  background: url(../../assets/images/copilot-bg.png) 0 0 / 100% 100% no-repeat;
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  height: calc(100% + 38px);
 | 
			
		||||
  left: -16px;
 | 
			
		||||
  top: -8px;
 | 
			
		||||
  /* top: -8px; */
 | 
			
		||||
  width: calc(100% + 30px);
 | 
			
		||||
  z-index: 1001;
 | 
			
		||||
  color: #fff;
 | 
			
		||||
@@ -61,6 +79,12 @@ export default {
 | 
			
		||||
  gap: 8px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.produce{
 | 
			
		||||
  height: calc(100% + 38px);
 | 
			
		||||
}
 | 
			
		||||
.other {
 | 
			
		||||
  height: 100vh + 50px;
 | 
			
		||||
}
 | 
			
		||||
.copilot-footer {
 | 
			
		||||
  /** position: absolute;
 | 
			
		||||
  bottom: 10px; **/
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								src/views/copilot/efficiency/assets/icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 5.0 KiB  | 
@@ -6,16 +6,21 @@
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <DoubleRingWrapperVue />
 | 
			
		||||
  <DoubleRingWrapperVue data-source="BIPV产出" :period="period" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import DoubleRingWrapperVue from "./base/DoubleRingWrapper.vue";
 | 
			
		||||
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "BipvOutput",
 | 
			
		||||
  components: { DoubleRingWrapperVue },
 | 
			
		||||
  props: {},
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
							
								
								
									
										106
									
								
								src/views/copilot/efficiency/components/ChipInvest.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,106 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: FtoInvest.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:59:28
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <BarChartBase
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="ChipInvest"
 | 
			
		||||
    class="chip-invest-chart"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBase from "./sub/bar/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 - 1}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年${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 { chipInvest } = this.$store.getters.copilot.yield;
 | 
			
		||||
      let dataList = null;
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = chipInvest?.current;
 | 
			
		||||
          break;
 | 
			
		||||
        default:
 | 
			
		||||
          dataList = [];
 | 
			
		||||
          dataList[0] = chipInvest?.pervious;
 | 
			
		||||
          dataList[1] = chipInvest?.current;
 | 
			
		||||
      }
 | 
			
		||||
      return getTemplate(this.period, dataList);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getTemplate(period, dataList) {
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  return period == "日" || period == "周"
 | 
			
		||||
    ? [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "日" ? "昨日" : "本周",
 | 
			
		||||
          data: dataList ?? [],
 | 
			
		||||
        },
 | 
			
		||||
      ]
 | 
			
		||||
    : [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[0] : [],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year}年` : `${year}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[1] : [],
 | 
			
		||||
          // : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										113
									
								
								src/views/copilot/efficiency/components/ChipOee.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,113 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: ChipOee.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-29 08:51:04
 | 
			
		||||
    description: 芯片OEE
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <BarChartBase
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="chipOEE"
 | 
			
		||||
    class="chip-oee"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBase from "@/views/copilot/efficiency/components/sub/bar/BarChartChipOEE.vue";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ChipOEE",
 | 
			
		||||
  components: { BarChartBase },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    // 城市数组的顺序必须是固定的
 | 
			
		||||
    const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
 | 
			
		||||
    return {
 | 
			
		||||
      xAxis: cities,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  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 - 1}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年${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() {
 | 
			
		||||
      // console.log('aaaaaaaa', this.$store.getters.copilot.efficiency.chipOee);
 | 
			
		||||
      const { chipOee } = this.$store.getters.copilot.efficiency;
 | 
			
		||||
      let dataList = null;
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = chipOee?.current;
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = chipOee?.current;
 | 
			
		||||
          break;
 | 
			
		||||
        default:
 | 
			
		||||
          dataList = [];
 | 
			
		||||
          dataList[0] = chipOee?.previous;
 | 
			
		||||
          dataList[1] = chipOee?.current;
 | 
			
		||||
      }
 | 
			
		||||
      // console.log(dataList)
 | 
			
		||||
      return getTemplate(this.period, dataList);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getTemplate(period, dataList) {
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  // console.log('11111', dataList);
 | 
			
		||||
  return period == "日" || period == "周"
 | 
			
		||||
    ? [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "日" ? "昨日" : "本周",
 | 
			
		||||
          data: dataList ?? [],
 | 
			
		||||
        },
 | 
			
		||||
      ]
 | 
			
		||||
    : [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[0] : [],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year}年` : `${year}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[1] : [],
 | 
			
		||||
          // : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss"></style>
 | 
			
		||||
@@ -6,16 +6,21 @@
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <DoubleRingWrapperVue />
 | 
			
		||||
  <DoubleRingWrapperVue data-source="芯片产出" :period="period" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import DoubleRingWrapperVue from "./base/DoubleRingWrapper.vue";
 | 
			
		||||
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ChipOutput",
 | 
			
		||||
  components: { DoubleRingWrapperVue },
 | 
			
		||||
  props: {},
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
							
								
								
									
										60
									
								
								src/views/copilot/efficiency/components/ChipRate.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,60 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: ChipRate.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-29 08:50:54
 | 
			
		||||
    description: 芯片良率
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="chip-rate">
 | 
			
		||||
    <ChipRateItem
 | 
			
		||||
      :period="period"
 | 
			
		||||
      :cities="['成都', '邯郸', '株洲', '瑞昌']"
 | 
			
		||||
      :color="1"
 | 
			
		||||
    />
 | 
			
		||||
    <ChipRateItem
 | 
			
		||||
      :period="period"
 | 
			
		||||
      :cities="['佳木斯', '凯盛光伏', '蚌埠兴科']"
 | 
			
		||||
      :color="2"
 | 
			
		||||
    />
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import ChipRateItemVue from "./sub/chip/ChipRateItem.vue";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ChipRate",
 | 
			
		||||
  components: { ChipRateItem: ChipRateItemVue },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.chip-rate {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  gap: 5px;
 | 
			
		||||
  position: relative;
 | 
			
		||||
 | 
			
		||||
  &:after {
 | 
			
		||||
    content: "";
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    left: 50%;
 | 
			
		||||
    top: 0;
 | 
			
		||||
    width: 3px;
 | 
			
		||||
    height: 100%;
 | 
			
		||||
    transform: translateX(-50%);
 | 
			
		||||
    background: linear-gradient(to bottom, transparent, #00f2ff, transparent);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										108
									
								
								src/views/copilot/efficiency/components/FtoInvest.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,108 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: FtoInvest.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:59:28
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <BarChartBase
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="ftoInvest"
 | 
			
		||||
    class="fto-chart"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBase from "./sub/bar/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 - 1}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年${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 { ftoInvest } = this.$store.getters.copilot.yield;
 | 
			
		||||
      let dataList = null;
 | 
			
		||||
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = ftoInvest?.current;
 | 
			
		||||
          break;
 | 
			
		||||
        default:
 | 
			
		||||
          dataList = [];
 | 
			
		||||
          dataList[0] = ftoInvest?.pervious;
 | 
			
		||||
          dataList[1] = ftoInvest?.current;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return getTemplate(this.period, dataList);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getTemplate(period, dataList) {
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  return period == "日" || period == "周"
 | 
			
		||||
    ? [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "日" ? "昨日" : "本周",
 | 
			
		||||
          data: dataList ?? [],
 | 
			
		||||
        },
 | 
			
		||||
      ]
 | 
			
		||||
    : [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[0] : [],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year}年` : `${year}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[1] : [],
 | 
			
		||||
          // : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
@@ -6,16 +6,21 @@
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <DoubleRingWrapperVue />
 | 
			
		||||
  <DoubleRingWrapperVue data-source="标准组件产出" :period="period" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import DoubleRingWrapperVue from "./base/DoubleRingWrapper.vue";
 | 
			
		||||
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "StdOutput",
 | 
			
		||||
  components: { DoubleRingWrapperVue },
 | 
			
		||||
  props: {},
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
							
								
								
									
										62
									
								
								src/views/copilot/efficiency/components/StdRate.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,62 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-05-07 10:25:10
 | 
			
		||||
 * @LastEditTime: 2024-05-09 08:44:21
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="std-rate">
 | 
			
		||||
    <div class="span-2">
 | 
			
		||||
      <StdRateItem :period="period" :city="cities[5]" />
 | 
			
		||||
    </div>
 | 
			
		||||
    <div v-for="item in cities.filter((val, index) => index != 5)" :key="item.name">
 | 
			
		||||
      <StdRateItem :period="period" :city="item" />
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import StdRateItem from "./sub/std/StdRateItem.vue";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "StdRate",
 | 
			
		||||
  components: { StdRateItem },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      cities: [
 | 
			
		||||
        { name: "瑞昌", target: 100, total: 200, thisYear: 20 },
 | 
			
		||||
        { name: "邯郸", target: 200, total: 300, thisYear: 20 },
 | 
			
		||||
        { name: "株洲", target: 300, total: 400, thisYear: 20 },
 | 
			
		||||
        { name: "佳木斯", target: 400, total: 500, thisYear: 20 },
 | 
			
		||||
        { name: "成都", target: 500, total: 600, thisYear: 20 },
 | 
			
		||||
        { name: "凯盛光伏", target: 400, total: 500, thisYear: 20 },
 | 
			
		||||
        { name: "蚌埠", target: 500, total: 600, thisYear: 20 },
 | 
			
		||||
      ],
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.std-rate {
 | 
			
		||||
  display: grid;
 | 
			
		||||
  gap: 8px;
 | 
			
		||||
  grid-template-columns: repeat(2, 1fr);
 | 
			
		||||
  grid-template-rows: repeat(4, 1fr);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.span-2 {
 | 
			
		||||
  grid-column: span 2;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										110
									
								
								src/views/copilot/efficiency/components/TransformRate.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,110 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: TransformRate.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-29 08:50:34
 | 
			
		||||
    description: 转化效率
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <BarChartBase
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="chipOEE"
 | 
			
		||||
    class="chip-oee"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBase from "@/views/copilot/efficiency/components/sub/bar/BarChartChipOEE.vue";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "TransformRate",
 | 
			
		||||
  components: { BarChartBase },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    // 城市数组的顺序必须是固定的
 | 
			
		||||
    const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
 | 
			
		||||
    return {
 | 
			
		||||
      xAxis: cities,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  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 - 1}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年${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 { transformRate } = this.$store.getters.copilot.efficiency;
 | 
			
		||||
      let dataList = null;
 | 
			
		||||
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = transformRate?.current;
 | 
			
		||||
          break;
 | 
			
		||||
        default:
 | 
			
		||||
          dataList = [];
 | 
			
		||||
          dataList[0] = transformRate?.previous;
 | 
			
		||||
          dataList[1] = transformRate?.current;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return getTemplate(this.period, dataList);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getTemplate(period, dataList) {
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  return period == "日" || period == "周"
 | 
			
		||||
    ? [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "日" ? "昨日" : "本周",
 | 
			
		||||
          data: dataList ?? [],
 | 
			
		||||
        },
 | 
			
		||||
      ]
 | 
			
		||||
    : [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[0] : [],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year}年` : `${year}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[1] : [],
 | 
			
		||||
          // : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss"></style>
 | 
			
		||||
							
								
								
									
										257
									
								
								src/views/copilot/efficiency/components/sub/bar/BarChartBase.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,257 @@
 | 
			
		||||
<!--
 | 
			
		||||
    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 ChartContainer from "../../../../components/ChartContainer.vue";
 | 
			
		||||
import chartMixin from "@/mixins/chart.js";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "BarChartBase",
 | 
			
		||||
  components: {
 | 
			
		||||
    ChartContainer,
 | 
			
		||||
  },
 | 
			
		||||
  mixins: [chartMixin],
 | 
			
		||||
  props: {
 | 
			
		||||
    vHeight: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 34,
 | 
			
		||||
    },
 | 
			
		||||
    legend: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    xAxis: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    series: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    in: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  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>
 | 
			
		||||
@@ -0,0 +1,258 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-05-07 13:22:43
 | 
			
		||||
 * @LastEditTime: 2024-05-09 16:22:24
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @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: 40vw"
 | 
			
		||||
      :style="{ height: vHeight + 'vh' }"
 | 
			
		||||
    ></div>
 | 
			
		||||
  </chart-container>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import screenfull from "screenfull";
 | 
			
		||||
import ChartContainer from "../../../../components/ChartContainer.vue";
 | 
			
		||||
import chartMixin from "@/mixins/chart.js";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "BarChartBase",
 | 
			
		||||
  components: {
 | 
			
		||||
    ChartContainer,
 | 
			
		||||
  },
 | 
			
		||||
  mixins: [chartMixin],
 | 
			
		||||
  props: {
 | 
			
		||||
    vHeight: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 36,
 | 
			
		||||
    },
 | 
			
		||||
    legend: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    xAxis: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    series: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    in: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  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;
 | 
			
		||||
      }
 | 
			
		||||
      console.log(val)
 | 
			
		||||
      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>
 | 
			
		||||
@@ -0,0 +1,198 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: ChipRateItem.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-29 14:25:18
 | 
			
		||||
    description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="chip-rate-item">
 | 
			
		||||
    <div class="cities">
 | 
			
		||||
      <CopilotButtons :options="cities" @update:active="handleCityUpdate" />
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- <div style="flex:1;padding: 0 20%;"> -->
 | 
			
		||||
      <div class="chart" ref="chart"></div>
 | 
			
		||||
    <!-- </div> -->
 | 
			
		||||
    <div class="legend" v-if="period == '月' || period == '年'">
 | 
			
		||||
      <div class="legend-item" v-for="lgd in legend" :key="lgd.label">
 | 
			
		||||
        <span class="legend-item__value">{{ lgd.value }}</span>
 | 
			
		||||
        <span class="legend-item__label">{{ lgd.label }}</span>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import CopilotButtons from "@/views/copilot/components/select.vue";
 | 
			
		||||
import chartMixin from "@/mixins/chart.js";
 | 
			
		||||
import fullscreenMixin from "@/mixins/fullscreen.js";
 | 
			
		||||
import getOptions from "../../../options/chipOptions.js";
 | 
			
		||||
import { mapGetters } from "vuex";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ChipRateItem",
 | 
			
		||||
  components: { CopilotButtons },
 | 
			
		||||
  mixins: [chartMixin, fullscreenMixin],
 | 
			
		||||
  props: {
 | 
			
		||||
    cities: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => [],
 | 
			
		||||
    },
 | 
			
		||||
    color: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 1,
 | 
			
		||||
    },
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      factoryId: 0,
 | 
			
		||||
      count: 1,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    chipRate() {
 | 
			
		||||
      return this.$store.getters.copilot.efficiency.chipRate;
 | 
			
		||||
    },
 | 
			
		||||
    valueTuple() {
 | 
			
		||||
      const getter = this.chipRate;
 | 
			
		||||
      console.log(getter)
 | 
			
		||||
      if (this.period === "日" || this.period === "周") {
 | 
			
		||||
        return [
 | 
			
		||||
          getter.previous[this.factoryId],
 | 
			
		||||
          getter.current[this.factoryId],
 | 
			
		||||
          0,
 | 
			
		||||
        ];
 | 
			
		||||
      }
 | 
			
		||||
      // [100, 200, 200]
 | 
			
		||||
      return [
 | 
			
		||||
        getter.previous[this.factoryId],
 | 
			
		||||
        getter.current[this.factoryId],
 | 
			
		||||
        getter.target[this.factoryId],
 | 
			
		||||
      ];
 | 
			
		||||
    },
 | 
			
		||||
    options() {
 | 
			
		||||
      const single = this.period === "日" || this.period === "周";
 | 
			
		||||
      const year = new Date().getFullYear();
 | 
			
		||||
      const month = new Date().getMonth() + 1;
 | 
			
		||||
      const vt = this.valueTuple;
 | 
			
		||||
      let titleValue = single
 | 
			
		||||
          ? (vt[1] != null && `${vt[1] * 100}%`) || "0%"
 | 
			
		||||
          : vt[0] != null && vt[2] != null && vt[2] !== 0
 | 
			
		||||
          ? `${((vt[1] / vt[2]) * 100).toFixed(0)}%`
 | 
			
		||||
          : "0%",
 | 
			
		||||
        subtitle = {
 | 
			
		||||
          日: "本日良率",
 | 
			
		||||
          周: "本周良率",
 | 
			
		||||
          月: `${month}月良率`,
 | 
			
		||||
          年: `${year}良率`,
 | 
			
		||||
        }[this.period];
 | 
			
		||||
 | 
			
		||||
      const t = getOptions({
 | 
			
		||||
        single,
 | 
			
		||||
        color: this.color == 1 ? "#4CF0E8" : "#1065ff",
 | 
			
		||||
        titleValue,
 | 
			
		||||
        subtitle,
 | 
			
		||||
        previousSum: vt[0],
 | 
			
		||||
        currentSum: vt[1],
 | 
			
		||||
        targetSum: vt[2],
 | 
			
		||||
      });
 | 
			
		||||
      return t;
 | 
			
		||||
    },
 | 
			
		||||
    legend() {
 | 
			
		||||
      const year = new Date().getFullYear();
 | 
			
		||||
      const month = new Date().getMonth() + 1;
 | 
			
		||||
      return [
 | 
			
		||||
        {
 | 
			
		||||
          label:
 | 
			
		||||
            this.period == "月"
 | 
			
		||||
              ? `${year - 1}年${month}月良率`
 | 
			
		||||
              : `${year - 1}年良率`,
 | 
			
		||||
          value: (this.valueTuple[0] * 100).toFixed(0) + "%",
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          label: this.period == "月" ? `${month}月良率` : `${year}年良率`,
 | 
			
		||||
          value:  (this.valueTuple[1] * 100).toFixed(0) + "%",
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.initOptions(this.options);
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    period() {
 | 
			
		||||
      console.log(this.$store.getters.copilot.efficiency)
 | 
			
		||||
      this.initOptions(this.options);
 | 
			
		||||
    },
 | 
			
		||||
    factoryId() {
 | 
			
		||||
      this.initOptions(this.options);
 | 
			
		||||
    },
 | 
			
		||||
    chipRate() {
 | 
			
		||||
      this.initOptions(this.options);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    handleCityUpdate(id) {
 | 
			
		||||
      this.factoryId = id;
 | 
			
		||||
    },
 | 
			
		||||
    fullscreenCallback(isFullscreen) {},
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.chip-rate-item {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  justify-content: center;
 | 
			
		||||
  gap: 3px;
 | 
			
		||||
  backdrop-filter: blur(24px);
 | 
			
		||||
 | 
			
		||||
  .cities {
 | 
			
		||||
    height: 40px;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .chart {
 | 
			
		||||
    align-self: stretch;
 | 
			
		||||
    height: 280px;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend {
 | 
			
		||||
    height: 80px;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    gap: 40px;
 | 
			
		||||
    justify-content: space-around;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item {
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-direction: column;
 | 
			
		||||
    align-items: center;
 | 
			
		||||
    gap: 3px;
 | 
			
		||||
 | 
			
		||||
    &:first-child {
 | 
			
		||||
      .legend-item__value {
 | 
			
		||||
        color: #0e61f5;
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    &:nth-child(2) {
 | 
			
		||||
      .legend-item__value {
 | 
			
		||||
        color: #0fd5d1;
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item__value {
 | 
			
		||||
    font-size: 24px;
 | 
			
		||||
    font-weight: 600;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										149
									
								
								src/views/copilot/efficiency/components/sub/city/CityData.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,149 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    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>
 | 
			
		||||
@@ -0,0 +1,59 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    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 "../gradient/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>
 | 
			
		||||
@@ -0,0 +1,55 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    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 "../../../assets/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>
 | 
			
		||||
							
								
								
									
										127
									
								
								src/views/copilot/efficiency/components/sub/city/CityValue.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,127 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    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 "../gradient/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>
 | 
			
		||||
@@ -0,0 +1,64 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    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>
 | 
			
		||||
@@ -0,0 +1,221 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: DoubleRingChart.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-17 11:01:55
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="double-ring-chart">
 | 
			
		||||
    <div ref="chart" class="double-ring-chart__container"></div>
 | 
			
		||||
    <!-- style="{ height: vHeight + 'vh' }" -->
 | 
			
		||||
    <div class="double-ring-chart__legend">
 | 
			
		||||
      <div v-for="item in legendItems" :key="item.label" class="legend-item">
 | 
			
		||||
        <span class="legend-item__label">{{ item.label }}</span>
 | 
			
		||||
        <span class="legend-item__value">{{ item.value | numberFilter }}</span>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import chartMixin from "@/mixins/chart.js";
 | 
			
		||||
import fullscreenMixin from "@/mixins/fullscreen.js";
 | 
			
		||||
import getOptions from "../../../options/double-ring-chart-options";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "DoubleRingChart",
 | 
			
		||||
  mixins: [chartMixin, fullscreenMixin],
 | 
			
		||||
  props: {
 | 
			
		||||
    vHeight: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 24,
 | 
			
		||||
    },
 | 
			
		||||
    factoryId: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
    dataSource: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: null,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  filters: {
 | 
			
		||||
    numberFilter(val) {
 | 
			
		||||
      if (!isNaN(val)) {
 | 
			
		||||
        return (+val).toLocaleString();
 | 
			
		||||
      }
 | 
			
		||||
      return 0;
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    dataSourceField() {
 | 
			
		||||
      switch (this.dataSource) {
 | 
			
		||||
        case "标准组件产出":
 | 
			
		||||
          return "stdOutput";
 | 
			
		||||
        case "芯片产出":
 | 
			
		||||
          return "chipOutput";
 | 
			
		||||
        case "BIPV产出":
 | 
			
		||||
          return "bipvOutput";
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    valueTuple() {
 | 
			
		||||
      // [previousValue, currentValue, sumValue?]
 | 
			
		||||
      const getter = this.$store.getters.copilot.yield[this.dataSourceField];
 | 
			
		||||
      if (this.period === "日" || this.period === "周") {
 | 
			
		||||
        return [
 | 
			
		||||
          getter.previous[this.factoryId],
 | 
			
		||||
          getter.current[this.factoryId],
 | 
			
		||||
        ];
 | 
			
		||||
      }
 | 
			
		||||
      // [100, 200, 200]
 | 
			
		||||
      return [
 | 
			
		||||
        getter.previous[this.factoryId],
 | 
			
		||||
        getter.current[this.factoryId],
 | 
			
		||||
        getter.target[this.factoryId],
 | 
			
		||||
      ];
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    options() {
 | 
			
		||||
      const year = new Date().getFullYear();
 | 
			
		||||
      const month = new Date().getMonth() + 1;
 | 
			
		||||
      const vt = this.valueTuple;
 | 
			
		||||
      let titleValue =
 | 
			
		||||
          vt[0] != null && vt[2] != null && vt[2] !== 0
 | 
			
		||||
            ? `${vt[1] / vt[2]}%`
 | 
			
		||||
            : "0%",
 | 
			
		||||
        subtitle =
 | 
			
		||||
          this.period == "月" ? `${month}月累计产出` : `${year}年累计产出`;
 | 
			
		||||
 | 
			
		||||
      return getOptions({
 | 
			
		||||
        titleValue,
 | 
			
		||||
        subtitle,
 | 
			
		||||
        previousSum: this.valueTuple[0],
 | 
			
		||||
        currentSum: this.valueTuple[1],
 | 
			
		||||
        targetSum: this.valueTuple[2],
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    legendItems() {
 | 
			
		||||
      return calculateItems(this.period, this.valueTuple);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    legendItems() {
 | 
			
		||||
      this.initOptions(this.options);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.initOptions(this.options);
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    // fullscreen mixin 需要的回调
 | 
			
		||||
    fullscreenCallback(isFullscreen) {
 | 
			
		||||
      console.log("isFullscreen--->", isFullscreen);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function calculateItems(period, valueTuple) {
 | 
			
		||||
  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: valueTuple[1] },
 | 
			
		||||
        { label: `去年${month}月${today}日累计`, value: valueTuple[0] },
 | 
			
		||||
      ];
 | 
			
		||||
      break;
 | 
			
		||||
    case "周":
 | 
			
		||||
      items = [
 | 
			
		||||
        { label: `本周累计`, value: valueTuple[1] },
 | 
			
		||||
        { label: `去年本周累计`, value: valueTuple[0] },
 | 
			
		||||
      ];
 | 
			
		||||
      break;
 | 
			
		||||
    case "月":
 | 
			
		||||
      items = [
 | 
			
		||||
        { label: `${month}月累计`, value: valueTuple[1] },
 | 
			
		||||
        { label: `去年${month}月累计`, value: valueTuple[0] },
 | 
			
		||||
        { label: `${month}月目标`, value: valueTuple[2] },
 | 
			
		||||
      ];
 | 
			
		||||
      break;
 | 
			
		||||
    case "年":
 | 
			
		||||
      items = [
 | 
			
		||||
        { label: `${year}年累计`, value: valueTuple[1] },
 | 
			
		||||
        { label: `${year - 1}年累计`, value: valueTuple[0] },
 | 
			
		||||
        { label: `${year}年目标`, value: valueTuple[2] },
 | 
			
		||||
      ];
 | 
			
		||||
      break;
 | 
			
		||||
  }
 | 
			
		||||
  return items;
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.double-ring-chart {
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.double-ring-chart__container {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  height: 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.double-ring-chart__legend {
 | 
			
		||||
  padding: 12px;
 | 
			
		||||
  color: #fff;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  justify-content: center;
 | 
			
		||||
  gap: 32px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item {
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  align-items: flex-start;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item__label {
 | 
			
		||||
  position: relative;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item__label::before {
 | 
			
		||||
  content: "";
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  width: 12px;
 | 
			
		||||
  height: 12px;
 | 
			
		||||
  background: #ccc;
 | 
			
		||||
  border-radius: 2px;
 | 
			
		||||
  top: 6px;
 | 
			
		||||
  left: -18px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item:nth-child(1) .legend-item__label::before {
 | 
			
		||||
  background: #12fff5;
 | 
			
		||||
}
 | 
			
		||||
.legend-item:nth-child(1) .legend-item__value {
 | 
			
		||||
  color: #12fff5;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item:nth-child(2) .legend-item__label::before {
 | 
			
		||||
  background: #0f65ff;
 | 
			
		||||
}
 | 
			
		||||
.legend-item:nth-child(2) .legend-item__value {
 | 
			
		||||
  color: #0f65ff;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.legend-item:nth-child(3) .legend-item__label::before {
 | 
			
		||||
  background: #003982;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -0,0 +1,86 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: DoubleRingWrapper.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-17 09:55:12
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="double-ring-wrapper">
 | 
			
		||||
    <template v-if="period == '月' || period == '年'">
 | 
			
		||||
      <copilot-select
 | 
			
		||||
        @update:active="handleActiveUpdate"
 | 
			
		||||
        :options="cityOptions"
 | 
			
		||||
      />
 | 
			
		||||
      <div class="flex-1 stretch">
 | 
			
		||||
        <DoubleRingChartVue
 | 
			
		||||
          :data-source="dataSource"
 | 
			
		||||
          :period="period"
 | 
			
		||||
          :factoryId="factoryId"
 | 
			
		||||
        />
 | 
			
		||||
      </div>
 | 
			
		||||
    </template>
 | 
			
		||||
    <template v-else>
 | 
			
		||||
      <CityData :data-source="dataSource" :period="period" />
 | 
			
		||||
    </template>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import CopilotSelect from "@/views/copilot/components/select.vue";
 | 
			
		||||
import DoubleRingChartVue from "./DoubleRingChart.vue";
 | 
			
		||||
import CityData from "../city/CityData.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "DoubleRingWrapper",
 | 
			
		||||
  components: { CopilotSelect, DoubleRingChartVue, CityData },
 | 
			
		||||
  props: {
 | 
			
		||||
    dataSource: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: null,
 | 
			
		||||
    },
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      factoryId: 4, // 默认成都
 | 
			
		||||
      cityOptions: [
 | 
			
		||||
        "成都",
 | 
			
		||||
        "邯郸",
 | 
			
		||||
        "株洲",
 | 
			
		||||
        "瑞昌",
 | 
			
		||||
        "佳木斯",
 | 
			
		||||
        "凯盛光伏",
 | 
			
		||||
        "蚌埠兴科",
 | 
			
		||||
      ],
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    handleActiveUpdate(index) {
 | 
			
		||||
      this.factoryId = index;
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.double-ring-wrapper {
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  padding: 12px 24px;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  gap: 12px;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.flex-1 {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.stretch {
 | 
			
		||||
  align-self: stretch;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										66
									
								
								src/views/copilot/efficiency/components/sub/std/CityName.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,66 @@
 | 
			
		||||
<!--
 | 
			
		||||
    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 "@/views/copilot/assets/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;
 | 
			
		||||
  position: relative;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.city-name::after {
 | 
			
		||||
  content: "";
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  top: 50%;
 | 
			
		||||
  right: 0;
 | 
			
		||||
  width: 2px;
 | 
			
		||||
  background: linear-gradient(to top, transparent, #0b5be1ee, transparent);
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  transform: translateY(-50%);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
img {
 | 
			
		||||
  /* width: 32px; */
 | 
			
		||||
  width: 1.543vw;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
span {
 | 
			
		||||
  /* font-size: 12px;   */
 | 
			
		||||
  font-size: 0.77vw;
 | 
			
		||||
  letter-spacing: 2px;
 | 
			
		||||
  text-align: center;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										113
									
								
								src/views/copilot/efficiency/components/sub/std/ProgressBar.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,113 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: ProgressBar.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-29 09:18:30
 | 
			
		||||
    description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="progress-bar" :data-title="title" :data-rate="dataRate">
 | 
			
		||||
    <div
 | 
			
		||||
      class="progress-bar__rate"
 | 
			
		||||
      :style="{ width: dataRate == '-' ? 0 : dataRate }"
 | 
			
		||||
    ></div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ProgressBar",
 | 
			
		||||
  components: {},
 | 
			
		||||
  props: {
 | 
			
		||||
    value: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 0,
 | 
			
		||||
    },
 | 
			
		||||
    total: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 0,
 | 
			
		||||
    },
 | 
			
		||||
    title: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    dataRate() {
 | 
			
		||||
      return this.total == 0
 | 
			
		||||
        ? "-"
 | 
			
		||||
        : `${(parseFloat(this.value / this.total) * 100).toFixed(0)}%`;
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.progress-bar {
 | 
			
		||||
  height: 10px;
 | 
			
		||||
  background-color: #002f6b;
 | 
			
		||||
  border-radius: 4px;
 | 
			
		||||
  margin-bottom: 12px;
 | 
			
		||||
  position: relative;
 | 
			
		||||
 | 
			
		||||
  &:before {
 | 
			
		||||
    content: attr(data-title);
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
    color: #fff;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    bottom: -200%;
 | 
			
		||||
    font-size: 12px;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  &:after {
 | 
			
		||||
    content: attr(data-rate);
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
    color: #fff;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    bottom: -200%;
 | 
			
		||||
    right: 0;
 | 
			
		||||
    font-size: 12px;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  &:first-child {
 | 
			
		||||
    &:after {
 | 
			
		||||
      color: #11eae3;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  &:nth-child(2) {
 | 
			
		||||
    &:after {
 | 
			
		||||
      color: #0e65fd;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .progress-bar__rate {
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
    height: 100%;
 | 
			
		||||
    width: 0;
 | 
			
		||||
    border-radius: 4px;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  &:first-child {
 | 
			
		||||
    .progress-bar__rate {
 | 
			
		||||
      background: linear-gradient(
 | 
			
		||||
        to right,
 | 
			
		||||
        #004c5e11 10%,
 | 
			
		||||
        #004c5e,
 | 
			
		||||
        #0ac0c0,
 | 
			
		||||
        #11eae3
 | 
			
		||||
      );
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  &:nth-child(2) {
 | 
			
		||||
    .progress-bar__rate {
 | 
			
		||||
      background: linear-gradient(to right, #0048a811, #0048a8, #0e65fd);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										124
									
								
								src/views/copilot/efficiency/components/sub/std/StdRateItem.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,124 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-05-07 10:25:10
 | 
			
		||||
 * @LastEditTime: 2024-05-09 09:04:07
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div v-if="period == '日'" class="std-rate-item">
 | 
			
		||||
    <CityName :value="city.name" />
 | 
			
		||||
    <div class="std-rate-item__value">
 | 
			
		||||
      <ProgressBar :title="title" :total="city.target" :value="city.target" />
 | 
			
		||||
      <!-- <ProgressBar title="24年累计" :total="city.target" :value="city.thisYear" /> -->
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
  <div v-else-if="period == '周'" class="std-rate-item">
 | 
			
		||||
    <CityName :value="city.name" />
 | 
			
		||||
    <div class="std-rate-item__value">
 | 
			
		||||
      <ProgressBar :title="title" :total="city.target" :value="city.target" />
 | 
			
		||||
      <!-- <ProgressBar title="24年累计" :total="city.target" :value="city.thisYear" /> -->
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
  <div v-else-if="period == '月'" class="std-rate-item">
 | 
			
		||||
    <CityName :value="city.name" />
 | 
			
		||||
    <div class="std-rate-item__value">
 | 
			
		||||
      <ProgressBar :title="titleEnd" :total="city.target" :value="city.target" />
 | 
			
		||||
      <ProgressBar :title="title" :total="city.target" :value="city.thisYear" />
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
  <div v-else="period == '年'" class="std-rate-item">
 | 
			
		||||
    <CityName :value="city.name" />
 | 
			
		||||
    <div class="std-rate-item__value">
 | 
			
		||||
      <ProgressBar :title="titleEnd" :total="city.target" :value="city.target" />
 | 
			
		||||
      <ProgressBar :title="title" :total="city.target" :value="city.thisYear" />
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import CityName from "./CityName.vue";
 | 
			
		||||
import ProgressBar from "./ProgressBar.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "StdRateItem",
 | 
			
		||||
  components: { CityName, ProgressBar },
 | 
			
		||||
  props: {
 | 
			
		||||
    city: {
 | 
			
		||||
      type: Object,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      showDay:true,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    title() {
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
          return "今日"
 | 
			
		||||
        case "周":
 | 
			
		||||
          return  "本周"
 | 
			
		||||
        case "月":
 | 
			
		||||
          const year = new Date().getFullYear();
 | 
			
		||||
          const month = new Date().getMonth() + 1;
 | 
			
		||||
          return `${year - 1}年${month}月累计`
 | 
			
		||||
        case "年": {
 | 
			
		||||
          const year = new Date().getFullYear();
 | 
			
		||||
          // return [
 | 
			
		||||
           return `${year - 1}年累计`
 | 
			
		||||
          // ];
 | 
			
		||||
        }
 | 
			
		||||
        default:
 | 
			
		||||
         return "今日"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    titleEnd() {
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        // case "日":
 | 
			
		||||
        //   return "今日"
 | 
			
		||||
        // case "周":
 | 
			
		||||
        //   return "本周"
 | 
			
		||||
        case "月":
 | 
			
		||||
          const year = new Date().getFullYear();
 | 
			
		||||
          const month = new Date().getMonth() + 1;
 | 
			
		||||
          return  `${year}年${month}月目标`
 | 
			
		||||
        case "年": {
 | 
			
		||||
          const year = new Date().getFullYear();
 | 
			
		||||
          // return [
 | 
			
		||||
          return  `${year}年目标`
 | 
			
		||||
          // ];
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.std-rate-item {
 | 
			
		||||
  box-shadow: inset 0 0 12px 2px #fff3;
 | 
			
		||||
  border-radius: 4px;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  gap: 8px;
 | 
			
		||||
  padding: 12px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.std-rate-item__value {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  margin: 6px;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  gap: 12px;
 | 
			
		||||
  height: 60px;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  justify-content: center;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -1,29 +1,70 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: index.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-16 14:40:15
 | 
			
		||||
    description: 效率驾驶舱
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-05-07 10:04:53
 | 
			
		||||
 * @LastEditTime: 2024-05-09 08:56:44
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="efficiency-copilot">
 | 
			
		||||
    <db-container title="芯片良率" icon="chip2"></db-container>
 | 
			
		||||
    <db-container title="标准组件良率" icon="std"></db-container>
 | 
			
		||||
    <db-container title="芯片OEE" icon="chip"></db-container>
 | 
			
		||||
    <db-container title="转化效率" icon="cube"></db-container>
 | 
			
		||||
    <Container title="芯片良率" icon="chip2">
 | 
			
		||||
      <ChipRate :period="period" />
 | 
			
		||||
    </Container>
 | 
			
		||||
    <Container title="标准组件良率" icon="std">
 | 
			
		||||
      <StdRate :period="period" />
 | 
			
		||||
    </Container>
 | 
			
		||||
    <Container title="芯片OEE" icon="chip">
 | 
			
		||||
      <ChipOee :period="period" />
 | 
			
		||||
    </Container>
 | 
			
		||||
    <Container title="转化效率" icon="cube">
 | 
			
		||||
      <TransformRate :period="period" />
 | 
			
		||||
    </Container>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import Container from "../../dashboard/components/Container.vue";
 | 
			
		||||
import Container from "@/views/copilot/components/Container.vue";
 | 
			
		||||
import ChipOeeVue from "./components/ChipOee.vue";
 | 
			
		||||
import ChipRateVue from "./components/ChipRate.vue";
 | 
			
		||||
import StdRateVue from "./components/StdRate.vue";
 | 
			
		||||
import TransformRateVue from "./components/TransformRate.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "EfficiencyCopilot",
 | 
			
		||||
  components: { DbContainer: Container },
 | 
			
		||||
  components: {
 | 
			
		||||
    Container,
 | 
			
		||||
    ChipOee: ChipOeeVue,
 | 
			
		||||
    ChipRate: ChipRateVue,
 | 
			
		||||
    StdRate: StdRateVue,
 | 
			
		||||
    TransformRate: TransformRateVue,
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
  watch: {
 | 
			
		||||
    period: {
 | 
			
		||||
      handler(val) {
 | 
			
		||||
        val && this.fetchData(val);
 | 
			
		||||
      },
 | 
			
		||||
      immediate: true,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    fetchData(period = "日") {
 | 
			
		||||
      console.log(`效率驾驶舱,获取${period}数据`);
 | 
			
		||||
      this.$store.dispatch("copilot/initCopilot", {
 | 
			
		||||
        period,
 | 
			
		||||
        source: "efficiency",
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
@@ -32,8 +73,8 @@ export default {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  display: grid;
 | 
			
		||||
  gap: 16px;
 | 
			
		||||
  grid-template-columns: 1fr 1fr;
 | 
			
		||||
  grid-template-rows: 1fr 1fr;
 | 
			
		||||
  grid-template-columns:repeat(2, 1fr);
 | 
			
		||||
  grid-template-rows: repeat(2, 1fr)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.efficiency-copilot > div {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										163
									
								
								src/views/copilot/efficiency/options/chipOptions.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,163 @@
 | 
			
		||||
export default function ({
 | 
			
		||||
  single = false,
 | 
			
		||||
  color,
 | 
			
		||||
  titleValue,
 | 
			
		||||
  subtitle,
 | 
			
		||||
  previousSum,
 | 
			
		||||
  currentSum,
 | 
			
		||||
  targetSum,
 | 
			
		||||
}) {
 | 
			
		||||
  return {
 | 
			
		||||
    grid: {
 | 
			
		||||
      left: 0,
 | 
			
		||||
      right: 0,
 | 
			
		||||
      bottom: 0,
 | 
			
		||||
      top: 0,
 | 
			
		||||
      containLabel: true,
 | 
			
		||||
    },
 | 
			
		||||
    tooltip: {
 | 
			
		||||
      // formatter(params) {
 | 
			
		||||
      //   return `${params.name}: ${(params.value * 100).toFixed(0)}%`;
 | 
			
		||||
      // }
 | 
			
		||||
    },
 | 
			
		||||
    title: {
 | 
			
		||||
      text: titleValue,
 | 
			
		||||
      left: "49%",
 | 
			
		||||
      top: "39%",
 | 
			
		||||
      textAlign: "center",
 | 
			
		||||
      textStyle: {
 | 
			
		||||
        fontWeight: 600,
 | 
			
		||||
        fontSize: 32,
 | 
			
		||||
        color: "#fffd",
 | 
			
		||||
      },
 | 
			
		||||
      subtext: `\u2002${subtitle}\u2002`,
 | 
			
		||||
      subtextStyle: {
 | 
			
		||||
        fontSize: 14,
 | 
			
		||||
        fontWeight: 100,
 | 
			
		||||
        color: "#fffd",
 | 
			
		||||
        align: "right",
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    series: [
 | 
			
		||||
      // 背景 series
 | 
			
		||||
      {
 | 
			
		||||
        type: "pie",
 | 
			
		||||
        name: "当前目标",
 | 
			
		||||
        radius: ["70%", "85%"],
 | 
			
		||||
        center: ["50%", "52%"],
 | 
			
		||||
        emptyCircleStyle: {
 | 
			
		||||
          color: "#040c5f45",
 | 
			
		||||
        },
 | 
			
		||||
      },
 | 
			
		||||
      // 数据 series
 | 
			
		||||
      {
 | 
			
		||||
        type: "pie",
 | 
			
		||||
        radius: ["70%", "85%"],
 | 
			
		||||
        center: ["50%", "52%"],
 | 
			
		||||
        avoidLabelOvervlap: false,
 | 
			
		||||
        label: {
 | 
			
		||||
          show: false,
 | 
			
		||||
        },
 | 
			
		||||
        labelLine: {
 | 
			
		||||
          show: false,
 | 
			
		||||
        },
 | 
			
		||||
        data: [
 | 
			
		||||
          {
 | 
			
		||||
            value: currentSum,
 | 
			
		||||
            name: "当前良率",
 | 
			
		||||
            selected: false,
 | 
			
		||||
            itemStyle: {
 | 
			
		||||
              borderJoin: "round",
 | 
			
		||||
              borderCap: "round",
 | 
			
		||||
              borderWidth: 12,
 | 
			
		||||
              borderRadius: "50%",
 | 
			
		||||
              color: {
 | 
			
		||||
                type: "linear",
 | 
			
		||||
                x: 1,
 | 
			
		||||
                y: 0,
 | 
			
		||||
                x2: 0,
 | 
			
		||||
                y2: 1,
 | 
			
		||||
                colorStops: single
 | 
			
		||||
                  ? [
 | 
			
		||||
                      { offset: 0, color: `${color}11` },
 | 
			
		||||
                      { offset: 1, color: `${color}` },
 | 
			
		||||
                    ]
 | 
			
		||||
                  : [
 | 
			
		||||
                      { offset: 0, color: "#4CF0E811" },
 | 
			
		||||
                      { offset: 1, color: "#4CF0E8" },
 | 
			
		||||
                    ],
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            value:
 | 
			
		||||
              targetSum > currentSum
 | 
			
		||||
                ? targetSum - currentSum
 | 
			
		||||
                : targetSum == 0
 | 
			
		||||
                ? currentSum == 0
 | 
			
		||||
                  ? 1
 | 
			
		||||
                  : 0
 | 
			
		||||
                : targetSum,
 | 
			
		||||
 | 
			
		||||
            name: "未达成",
 | 
			
		||||
            itemStyle: { color: "transparent" },
 | 
			
		||||
            label: { show: false },
 | 
			
		||||
          },
 | 
			
		||||
        ],
 | 
			
		||||
      },
 | 
			
		||||
      // 数据 series2 - 2023累计
 | 
			
		||||
      single
 | 
			
		||||
        ? null
 | 
			
		||||
        : {
 | 
			
		||||
            type: "pie",
 | 
			
		||||
            radius: ["55%", "70%"],
 | 
			
		||||
            center: ["50%", "52%"],
 | 
			
		||||
            avoidLabelOvervlap: false,
 | 
			
		||||
            label: {
 | 
			
		||||
              show: false,
 | 
			
		||||
            },
 | 
			
		||||
            labelLine: {
 | 
			
		||||
              show: false,
 | 
			
		||||
            },
 | 
			
		||||
            data: [
 | 
			
		||||
              {
 | 
			
		||||
                value: previousSum,
 | 
			
		||||
                name: "上期良率",
 | 
			
		||||
                selected: false,
 | 
			
		||||
                itemStyle: {
 | 
			
		||||
                  borderJoin: "round",
 | 
			
		||||
                  borderCap: "round",
 | 
			
		||||
                  borderWidth: 12,
 | 
			
		||||
                  borderRadius: "50%",
 | 
			
		||||
                  color: {
 | 
			
		||||
                    type: "linear",
 | 
			
		||||
                    x: 1,
 | 
			
		||||
                    y: 0,
 | 
			
		||||
                    x2: 0,
 | 
			
		||||
                    y2: 1,
 | 
			
		||||
                    colorStops: [
 | 
			
		||||
                      { offset: 0, color: "#1065ff66" },
 | 
			
		||||
                      { offset: 1, color: "#1065ff" },
 | 
			
		||||
                    ],
 | 
			
		||||
                  },
 | 
			
		||||
                },
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                value:
 | 
			
		||||
                  targetSum > previousSum
 | 
			
		||||
                    ? targetSum - previousSum
 | 
			
		||||
                    : previousSum == 0
 | 
			
		||||
                    ? 1
 | 
			
		||||
                    : 0,
 | 
			
		||||
                name: "-",
 | 
			
		||||
                formatter: {
 | 
			
		||||
                  show: false
 | 
			
		||||
                },
 | 
			
		||||
                itemStyle: { color: "transparent" },
 | 
			
		||||
                label: { show: false },
 | 
			
		||||
              },
 | 
			
		||||
            ],
 | 
			
		||||
          },
 | 
			
		||||
    ],
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
@@ -1,4 +1,10 @@
 | 
			
		||||
export default {
 | 
			
		||||
export default ({
 | 
			
		||||
  titleValue,
 | 
			
		||||
  subtitle,
 | 
			
		||||
  previousSum,
 | 
			
		||||
  currentSum,
 | 
			
		||||
  targetSum,
 | 
			
		||||
}) => ({
 | 
			
		||||
  grid: {
 | 
			
		||||
    left: 0,
 | 
			
		||||
    right: 0,
 | 
			
		||||
@@ -8,16 +14,16 @@ export default {
 | 
			
		||||
  },
 | 
			
		||||
  tooltip: {},
 | 
			
		||||
  title: {
 | 
			
		||||
    text: "78%",
 | 
			
		||||
    left: "50%",
 | 
			
		||||
    top: "40%",
 | 
			
		||||
    text: titleValue,
 | 
			
		||||
    left: "49%",
 | 
			
		||||
    top: "39%",
 | 
			
		||||
    textAlign: "center",
 | 
			
		||||
    textStyle: {
 | 
			
		||||
      fontWeight: 600,
 | 
			
		||||
      fontSize: 32,
 | 
			
		||||
      color: "#fffd",
 | 
			
		||||
    },
 | 
			
		||||
    subtext: "\u200224年累计产出\u2002",
 | 
			
		||||
    subtext: `\u2002${subtitle}\u2002`,
 | 
			
		||||
    subtextStyle: {
 | 
			
		||||
      fontSize: 14,
 | 
			
		||||
      fontWeight: 100,
 | 
			
		||||
@@ -26,17 +32,17 @@ export default {
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  series: [
 | 
			
		||||
    // 背景 series - 2024计划
 | 
			
		||||
    // 背景 series
 | 
			
		||||
    {
 | 
			
		||||
      type: "pie",
 | 
			
		||||
      name: "2024目标",
 | 
			
		||||
      name: "当前目标",
 | 
			
		||||
      radius: ["70%", "85%"],
 | 
			
		||||
      center: ["50%", "52%"],
 | 
			
		||||
      emptyCircleStyle: {
 | 
			
		||||
        color: "#042c5f33",
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    // 数据 series - 2024累计
 | 
			
		||||
    // 数据 series
 | 
			
		||||
    {
 | 
			
		||||
      type: "pie",
 | 
			
		||||
      radius: ["70%", "85%"],
 | 
			
		||||
@@ -44,15 +50,14 @@ export default {
 | 
			
		||||
      avoidLabelOvervlap: false,
 | 
			
		||||
      label: {
 | 
			
		||||
        show: false,
 | 
			
		||||
        // position: "center",
 | 
			
		||||
      },
 | 
			
		||||
      labelLine: {
 | 
			
		||||
        show: false,
 | 
			
		||||
      },
 | 
			
		||||
      data: [
 | 
			
		||||
        {
 | 
			
		||||
          value: 90,
 | 
			
		||||
          name: "2024累计产出",
 | 
			
		||||
          value: currentSum,
 | 
			
		||||
          name: "当前累计产出",
 | 
			
		||||
          selected: false,
 | 
			
		||||
          itemStyle: {
 | 
			
		||||
            borderJoin: "round",
 | 
			
		||||
@@ -73,8 +78,16 @@ export default {
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          value: 20,
 | 
			
		||||
          name: "-",
 | 
			
		||||
          value:
 | 
			
		||||
            targetSum > currentSum
 | 
			
		||||
              ? targetSum - currentSum
 | 
			
		||||
              : targetSum == 0
 | 
			
		||||
              ? currentSum == 0
 | 
			
		||||
                ? 1
 | 
			
		||||
                : 0
 | 
			
		||||
              : 0,
 | 
			
		||||
 | 
			
		||||
          name: "未达成累计",
 | 
			
		||||
          itemStyle: { color: "transparent" },
 | 
			
		||||
          label: { show: false },
 | 
			
		||||
        },
 | 
			
		||||
@@ -94,8 +107,8 @@ export default {
 | 
			
		||||
      },
 | 
			
		||||
      data: [
 | 
			
		||||
        {
 | 
			
		||||
          value: 90,
 | 
			
		||||
          name: "2023累计产出",
 | 
			
		||||
          value: previousSum,
 | 
			
		||||
          name: "上期累计产出",
 | 
			
		||||
          selected: false,
 | 
			
		||||
          itemStyle: {
 | 
			
		||||
            borderJoin: "round",
 | 
			
		||||
@@ -116,7 +129,12 @@ export default {
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          value: 20,
 | 
			
		||||
          value:
 | 
			
		||||
            targetSum > previousSum
 | 
			
		||||
              ? targetSum - previousSum
 | 
			
		||||
              : previousSum == 0
 | 
			
		||||
              ? 1
 | 
			
		||||
              : 0,
 | 
			
		||||
          name: "-",
 | 
			
		||||
          itemStyle: { color: "transparent" },
 | 
			
		||||
          label: { show: false },
 | 
			
		||||
@@ -124,4 +142,4 @@ export default {
 | 
			
		||||
      ],
 | 
			
		||||
    },
 | 
			
		||||
  ],
 | 
			
		||||
};
 | 
			
		||||
});
 | 
			
		||||
							
								
								
									
										128
									
								
								src/views/copilot/energy/components/ElecCost.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,128 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: ElecCost.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-29 16:37:01
 | 
			
		||||
    description: 电能耗
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <LineChartBase
 | 
			
		||||
    v-if="1"
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="elecCost"
 | 
			
		||||
    class="elec-cost"
 | 
			
		||||
  />
 | 
			
		||||
  <BarChartBase
 | 
			
		||||
    v-else
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="elecCost"
 | 
			
		||||
    class="elec-cost"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBaseVue from "@/views/copilot/components/BarChartBase.vue";
 | 
			
		||||
import LineChartBaseVue from "@/views/copilot/components/LineChartBase.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ElecCost",
 | 
			
		||||
  components: {
 | 
			
		||||
    BarChartBase: BarChartBaseVue,
 | 
			
		||||
    LineChartBase: LineChartBaseVue,
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    // 城市数组的顺序必须是固定的
 | 
			
		||||
    const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
 | 
			
		||||
    return {
 | 
			
		||||
      xAxis: cities,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  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 - 1}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年${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 { ftoInvest } = this.$store.getters.copilot.yield;
 | 
			
		||||
      let dataList = null;
 | 
			
		||||
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = ftoInvest?.current;
 | 
			
		||||
          break;
 | 
			
		||||
        default:
 | 
			
		||||
          dataList = [];
 | 
			
		||||
          dataList[0] = ftoInvest?.pervious;
 | 
			
		||||
          dataList[1] = ftoInvest?.current;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return getTemplate(this.period, dataList);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getTemplate(period, dataList) {
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  return period == "日" || period == "周"
 | 
			
		||||
    ? [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "日" ? "昨日" : "本周",
 | 
			
		||||
          data: dataList ?? [],
 | 
			
		||||
        },
 | 
			
		||||
      ]
 | 
			
		||||
    : [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[0] : [],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year}年` : `${year}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[1] : [],
 | 
			
		||||
          // : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.elec-cost {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										115
									
								
								src/views/copilot/energy/components/NatGas.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,115 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: NatGas.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-29 16:36:27
 | 
			
		||||
    description: 天然气能耗
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <BarChartBase
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="nat-gas"
 | 
			
		||||
    class="nat-gas"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBase from "@/views/copilot/components/BarChartBase.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "NatGasCost",
 | 
			
		||||
  components: { BarChartBase },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    // 城市数组的顺序必须是固定的
 | 
			
		||||
    const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
 | 
			
		||||
    return {
 | 
			
		||||
      xAxis: cities,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  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 - 1}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年${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 { ftoInvest } = this.$store.getters.copilot.yield;
 | 
			
		||||
      let dataList = null;
 | 
			
		||||
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = ftoInvest?.current;
 | 
			
		||||
          break;
 | 
			
		||||
        default:
 | 
			
		||||
          dataList = [];
 | 
			
		||||
          dataList[0] = ftoInvest?.pervious;
 | 
			
		||||
          dataList[1] = ftoInvest?.current;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return getTemplate(this.period, dataList);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getTemplate(period, dataList) {
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  return period == "日" || period == "周"
 | 
			
		||||
    ? [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "日" ? "昨日" : "本周",
 | 
			
		||||
          data: dataList ?? [],
 | 
			
		||||
        },
 | 
			
		||||
      ]
 | 
			
		||||
    : [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[0] : [],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year}年` : `${year}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[1] : [],
 | 
			
		||||
          // : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.nat-gas {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										64
									
								
								src/views/copilot/energy/components/StockMonitor.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,64 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-05-07 10:25:10
 | 
			
		||||
 * @LastEditTime: 2024-05-08 09:39:15
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="stock-monitor">
 | 
			
		||||
    <MonitorItem
 | 
			
		||||
      :cities="['成都', '邯郸', '株洲', '瑞昌', '佳木斯']"
 | 
			
		||||
      :legendList="dhgList"
 | 
			
		||||
    />
 | 
			
		||||
    <MonitorItem :cities="['凯盛光伏', '蚌埠兴科']" :legendList="otherList" />
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import MonitorItemVue from "./sub/monitor/MonitorItem.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "StockMonitor",
 | 
			
		||||
  components: { MonitorItem: MonitorItemVue },
 | 
			
		||||
  props: {},
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      dhgList: [
 | 
			
		||||
        { name: "总库存", value: 1000 },
 | 
			
		||||
        { name: "已用库存", value: 500 },
 | 
			
		||||
        { name: "剩余库存", value: 500 },
 | 
			
		||||
      ],
 | 
			
		||||
      otherList: [
 | 
			
		||||
        { name: "分类1", value: 1000 },
 | 
			
		||||
        { name: "分类2", value: 1000 },
 | 
			
		||||
        { name: "分类3", value: 1000 },
 | 
			
		||||
        { name: "分类4", value: 1000 },
 | 
			
		||||
      ],
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.stock-monitor {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  gap: 5px;
 | 
			
		||||
  position: relative;
 | 
			
		||||
 | 
			
		||||
  &:after {
 | 
			
		||||
    content: "";
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    left: 50%;
 | 
			
		||||
    top: 0;
 | 
			
		||||
    width: 3px;
 | 
			
		||||
    height: 100%;
 | 
			
		||||
    transform: translateX(-50%);
 | 
			
		||||
    background: linear-gradient(to bottom, transparent, #00f2ff, transparent);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										128
									
								
								src/views/copilot/energy/components/WaterCost.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,128 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: WaterCost.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-29 16:37:34
 | 
			
		||||
    description: 水能耗
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <LineChartBase
 | 
			
		||||
    v-if="0"
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="waterCost"
 | 
			
		||||
    class="water-cost"
 | 
			
		||||
  />
 | 
			
		||||
  <BarChartBase
 | 
			
		||||
    v-else
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="waterCost"
 | 
			
		||||
    class="water-cost"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBaseVue from "@/views/copilot/components/BarChartBase.vue";
 | 
			
		||||
import LineChartBaseVue from "@/views/copilot/components/LineChartBase.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "WaterCost",
 | 
			
		||||
  components: {
 | 
			
		||||
    BarChartBase: BarChartBaseVue,
 | 
			
		||||
    LineChartBase: LineChartBaseVue,
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    // 城市数组的顺序必须是固定的
 | 
			
		||||
    const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
 | 
			
		||||
    return {
 | 
			
		||||
      xAxis: cities,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  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 - 1}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年${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 { ftoInvest } = this.$store.getters.copilot.yield;
 | 
			
		||||
      let dataList = null;
 | 
			
		||||
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = ftoInvest?.current;
 | 
			
		||||
          break;
 | 
			
		||||
        default:
 | 
			
		||||
          dataList = [];
 | 
			
		||||
          dataList[0] = ftoInvest?.pervious;
 | 
			
		||||
          dataList[1] = ftoInvest?.current;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return getTemplate(this.period, dataList);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getTemplate(period, dataList) {
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  return period == "日" || period == "周"
 | 
			
		||||
    ? [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "日" ? "昨日" : "本周",
 | 
			
		||||
          data: dataList ?? [],
 | 
			
		||||
        },
 | 
			
		||||
      ]
 | 
			
		||||
    : [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[0] : [],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year}年` : `${year}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[1] : [],
 | 
			
		||||
          // : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.water-cost {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										151
									
								
								src/views/copilot/energy/components/sub/monitor/MonitorItem.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,151 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: ChipRateItem.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-29 14:25:18
 | 
			
		||||
    description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="monitor-item">
 | 
			
		||||
    <div class="cities">
 | 
			
		||||
      <CopilotButtons :options="cities" @update:active="handleCityUpdate" />
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="chart" ref="chart"></div>
 | 
			
		||||
    <div class="legend" v-if="1">
 | 
			
		||||
      <div class="legend-item" v-for="(lgd,index) in legendList" :key="lgd.name">
 | 
			
		||||
        <div >
 | 
			
		||||
          <span :style="'backgroundColor:' + colors[index%5]" class="legend-item__chart"></span>
 | 
			
		||||
          <span :style="'color:' + colors[index%5]" class="legend-item__label">{{ lgd.name }}</span>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div :style="'color:' + colors[index%5]" class="legend-item__value">{{ lgd.value }}</div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import CopilotButtons from "@/views/copilot/components/select.vue";
 | 
			
		||||
import chartMixin from "@/mixins/chart.js";
 | 
			
		||||
import fullscreenMixin from "@/mixins/fullscreen.js";
 | 
			
		||||
import getOptions from "../../../options/monitorOptions.js";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ChipRateItem",
 | 
			
		||||
  components: { CopilotButtons },
 | 
			
		||||
  mixins: [chartMixin, fullscreenMixin],
 | 
			
		||||
  props: {
 | 
			
		||||
    cities: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => [],
 | 
			
		||||
    },
 | 
			
		||||
    legendList: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => [],
 | 
			
		||||
    },
 | 
			
		||||
    color: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 1,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      period: "月",
 | 
			
		||||
      colors:['#2760FF', '#5996F7', '#8BC566', '#11FAF0', '#F3C000'],
 | 
			
		||||
      valueTuple: [100, 100, 200],
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    options() {
 | 
			
		||||
      const year = new Date().getFullYear();
 | 
			
		||||
      const month = new Date().getMonth() + 1;
 | 
			
		||||
      let arr = []
 | 
			
		||||
      this.legendList.forEach(ele => {
 | 
			
		||||
        arr.push(ele.value)
 | 
			
		||||
      });
 | 
			
		||||
      let vt = arr
 | 
			
		||||
      console.log(arr)
 | 
			
		||||
      let titleValue = vt.reduce(function (prev, cur, index, arr) {
 | 
			
		||||
        return prev + cur
 | 
			
		||||
      })
 | 
			
		||||
      let subtitle = `总计/片`;
 | 
			
		||||
 | 
			
		||||
      return getOptions({
 | 
			
		||||
        single: true,
 | 
			
		||||
        color: this.color == 1 ? "#4CF0E8" : "#1065ff",
 | 
			
		||||
        titleValue,
 | 
			
		||||
        subtitle,
 | 
			
		||||
        dataList:this.legendList,
 | 
			
		||||
        previousSum: this.valueTuple[0],
 | 
			
		||||
        currentSum: this.valueTuple[1],
 | 
			
		||||
        targetSum: this.valueTuple[2],
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.initOptions(this.options);
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    handleCityUpdate() {},
 | 
			
		||||
    fullscreenCallback(isFullscreen) {
 | 
			
		||||
      console.log("isFullscreen--->", isFullscreen);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.monitor-item {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  align-items: center;
 | 
			
		||||
  justify-content: center;
 | 
			
		||||
  gap: 3px;
 | 
			
		||||
  backdrop-filter: blur(24px);
 | 
			
		||||
 | 
			
		||||
  .cities {
 | 
			
		||||
    height: 40px;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .chart {
 | 
			
		||||
    align-self: stretch;
 | 
			
		||||
    height: 280px;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend {
 | 
			
		||||
    height: 80px;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    gap: 20px;
 | 
			
		||||
    justify-content: space-around;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item {
 | 
			
		||||
    display: flex;
 | 
			
		||||
    // width: 90px;
 | 
			
		||||
    flex-direction: column;
 | 
			
		||||
    // justify-content: space-around;
 | 
			
		||||
    // justify-content: space-between;
 | 
			
		||||
    align-items: center;
 | 
			
		||||
    flex-wrap: wrap;
 | 
			
		||||
    gap: 3px;
 | 
			
		||||
    .legend-item__chart{
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      width: 14px;
 | 
			
		||||
      height: 14px;
 | 
			
		||||
      background: #2760FF;
 | 
			
		||||
      border-radius: 2px;
 | 
			
		||||
      // margin-right: 8px;
 | 
			
		||||
    }
 | 
			
		||||
   .legend-item__label {
 | 
			
		||||
      margin-left: 8px;
 | 
			
		||||
    }
 | 
			
		||||
    // }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item__value {
 | 
			
		||||
    font-size: 24px;
 | 
			
		||||
    font-weight: 600;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
l
 | 
			
		||||
@@ -1,25 +1,83 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: index.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-16 14:40:15
 | 
			
		||||
    description: 能源驾驶舱
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-05-07 10:25:10
 | 
			
		||||
 * @LastEditTime: 2024-05-09 08:41:11
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="energy-copilot">能源驾驶舱</div>
 | 
			
		||||
  <div class="energy-copilot">
 | 
			
		||||
    <Container title="仓库监控·当前" icon="ware">
 | 
			
		||||
      <StockMonitorVue :period="period" />
 | 
			
		||||
    </Container>
 | 
			
		||||
    <Container title="天然气能耗" icon="gas">
 | 
			
		||||
      <NatGasVue :period="period" />
 | 
			
		||||
    </Container>
 | 
			
		||||
    <Container title="电能耗" icon="flash">
 | 
			
		||||
      <ElecCostVue :period="period" />
 | 
			
		||||
    </Container>
 | 
			
		||||
    <Container title="水能耗" icon="water">
 | 
			
		||||
      <WaterCostVue :period="period" />
 | 
			
		||||
    </Container>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import Container from "@/views/copilot/components/Container.vue";
 | 
			
		||||
import StockMonitorVue from "./components/StockMonitor.vue";
 | 
			
		||||
import ElecCostVue from "./components/ElecCost.vue";
 | 
			
		||||
import NatGasVue from "./components/NatGas.vue";
 | 
			
		||||
import WaterCostVue from "./components/WaterCost.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "EnergyCopilot",
 | 
			
		||||
  components: {},
 | 
			
		||||
  props: {},
 | 
			
		||||
  components: {
 | 
			
		||||
    Container,
 | 
			
		||||
    StockMonitorVue,
 | 
			
		||||
    ElecCostVue,
 | 
			
		||||
    NatGasVue,
 | 
			
		||||
    WaterCostVue,
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
  watch: {
 | 
			
		||||
    period: {
 | 
			
		||||
      handler(val) {
 | 
			
		||||
        val && this.fetchData(val);
 | 
			
		||||
      },
 | 
			
		||||
      immediate: true,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    fetchData(period = "日") {
 | 
			
		||||
      console.log(`效率驾驶舱,获取${period}数据`);
 | 
			
		||||
      this.$store.dispatch("copilot/initCopilot", {
 | 
			
		||||
        period,
 | 
			
		||||
        source: "comprehensive",
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped></style>
 | 
			
		||||
<style scoped>
 | 
			
		||||
.energy-copilot {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  display: grid;
 | 
			
		||||
  gap: 16px;
 | 
			
		||||
  grid-template-columns: 1fr 1fr;
 | 
			
		||||
  grid-template-rows: 1fr 1fr;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.energy-copilot > div {
 | 
			
		||||
  height: 100%;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										84
									
								
								src/views/copilot/energy/options/monitorOptions.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,84 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-05-07 10:25:10
 | 
			
		||||
 * @LastEditTime: 2024-05-08 10:30:06
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
export default function ({
 | 
			
		||||
  single = false,
 | 
			
		||||
  colors = ['#2760FF', '#5996F7', '#8BC566', '#11FAF0','#F3C000'],
 | 
			
		||||
  titleValue,
 | 
			
		||||
  subtitle,
 | 
			
		||||
  dataList,
 | 
			
		||||
  previousSum,
 | 
			
		||||
  currentSum,
 | 
			
		||||
  targetSum,
 | 
			
		||||
}) {
 | 
			
		||||
  return {
 | 
			
		||||
  grid: {
 | 
			
		||||
    left: 0,
 | 
			
		||||
    right: 0,
 | 
			
		||||
    bottom: 0,
 | 
			
		||||
    top: 0,
 | 
			
		||||
    containLabel: true,
 | 
			
		||||
  },
 | 
			
		||||
  // tooltip: {},
 | 
			
		||||
  title: {
 | 
			
		||||
    text: titleValue,
 | 
			
		||||
    left: "49%",
 | 
			
		||||
    top: "39%",
 | 
			
		||||
    textAlign: "center",
 | 
			
		||||
    textStyle: {
 | 
			
		||||
      fontWeight: 600,
 | 
			
		||||
      fontSize: 32,
 | 
			
		||||
      color: "#fffd",
 | 
			
		||||
    },
 | 
			
		||||
    subtext: `\u2002${subtitle}\u2002`,
 | 
			
		||||
    subtextStyle: {
 | 
			
		||||
      fontSize: 14,
 | 
			
		||||
      fontWeight: 100,
 | 
			
		||||
      color: "#fffd",
 | 
			
		||||
      align: "right",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  // legend: {
 | 
			
		||||
  //   top: '5%',
 | 
			
		||||
  //   left: 'center'
 | 
			
		||||
  // },
 | 
			
		||||
  series: [
 | 
			
		||||
    {
 | 
			
		||||
      name: 'Access From',
 | 
			
		||||
      type: 'pie',
 | 
			
		||||
    	// center: ['50%', '40%'],
 | 
			
		||||
			radius: ['60%', '90%'],
 | 
			
		||||
      avoidLabelOverlap: false,
 | 
			
		||||
        labelLine: {
 | 
			
		||||
        show: false
 | 
			
		||||
      },
 | 
			
		||||
      label: {
 | 
			
		||||
        show: false
 | 
			
		||||
      },
 | 
			
		||||
      data: dataList && dataList.length > 0 && dataList.map((item, index) => ({
 | 
			
		||||
						name:item.name,
 | 
			
		||||
            value: item.value,
 | 
			
		||||
 | 
			
		||||
						itemStyle:{
 | 
			
		||||
							color:{
 | 
			
		||||
								type: 'linear',
 | 
			
		||||
								x: 0,
 | 
			
		||||
								y: 0,
 | 
			
		||||
								x2: 0,
 | 
			
		||||
								y2: 1,
 | 
			
		||||
								global: false,
 | 
			
		||||
								colorStops:[
 | 
			
		||||
									{offset: 0,color:colors[index%5]},
 | 
			
		||||
									{offset: 1,color:colors[index%5]+'33'}
 | 
			
		||||
								]
 | 
			
		||||
							}
 | 
			
		||||
						}
 | 
			
		||||
            }))
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								src/views/copilot/factoryData/assets/images/bipv.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/views/copilot/factoryData/assets/images/chip.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.5 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/views/copilot/factoryData/assets/images/fto.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.3 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/views/copilot/factoryData/assets/images/std.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.1 KiB  | 
							
								
								
									
										232
									
								
								src/views/copilot/factoryData/components/Container.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,232 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: Container.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-09 10:44:09
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="copilot-container">
 | 
			
		||||
    <!-- refresh btn  -->
 | 
			
		||||
    <button
 | 
			
		||||
      v-if="false"
 | 
			
		||||
      style="
 | 
			
		||||
        appearance: none;
 | 
			
		||||
        outline: none;
 | 
			
		||||
        border: none;
 | 
			
		||||
        background: none;
 | 
			
		||||
        color: #fff;
 | 
			
		||||
        cursor: pointer;
 | 
			
		||||
        position: absolute;
 | 
			
		||||
        top: 8px;
 | 
			
		||||
        right: 8px;
 | 
			
		||||
      "
 | 
			
		||||
      @click="$emit('refresh')"
 | 
			
		||||
    >
 | 
			
		||||
      <svg
 | 
			
		||||
        xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
        fill="none"
 | 
			
		||||
        viewBox="0 0 24 24"
 | 
			
		||||
        stroke-width="1.5"
 | 
			
		||||
        stroke="currentColor"
 | 
			
		||||
        style="width: 24px; height: 24px"
 | 
			
		||||
      >
 | 
			
		||||
        <path
 | 
			
		||||
          stroke-linecap="round"
 | 
			
		||||
          stroke-linejoin="round"
 | 
			
		||||
          d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0 3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99"
 | 
			
		||||
        />
 | 
			
		||||
      </svg>
 | 
			
		||||
    </button>
 | 
			
		||||
    <!-- decoration  -->
 | 
			
		||||
    <div class="corner tl"></div>
 | 
			
		||||
    <div class="corner tr"></div>
 | 
			
		||||
    <div v-if="side == 'left'" class="corner bl"></div>
 | 
			
		||||
    <div v-if="side == 'right'" class="corner br"></div>
 | 
			
		||||
    <!-- content  -->
 | 
			
		||||
    <div
 | 
			
		||||
      class="container-head"
 | 
			
		||||
      :class="[side == 'left' ? 'gradient-to-right' : 'gradient-to-left']"
 | 
			
		||||
    >
 | 
			
		||||
      <Icon :icon="icon"></Icon>
 | 
			
		||||
      <h2 class="container-title">{{ title }}</h2>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div
 | 
			
		||||
      class="container-body"
 | 
			
		||||
      :class="[
 | 
			
		||||
        side == 'left' ? 'body-gradient-to-right' : 'body-gradient-to-left',
 | 
			
		||||
      ]"
 | 
			
		||||
    >
 | 
			
		||||
      <slot />
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import ContainerIconVue from "./ContainerIcon.vue";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "DashboardContainer",
 | 
			
		||||
  components: {
 | 
			
		||||
    Icon: ContainerIconVue,
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    side: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "left",
 | 
			
		||||
    },
 | 
			
		||||
    icon: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "cube",
 | 
			
		||||
    },
 | 
			
		||||
    title: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "Default Title",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {},
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.copilot-container {
 | 
			
		||||
  height: 0;
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  box-shadow: inset 0 0 20px 1px #fff1;
 | 
			
		||||
  backdrop-filter: blur(4px);
 | 
			
		||||
 | 
			
		||||
  &::before {
 | 
			
		||||
    content: "";
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
    height: 100%;
 | 
			
		||||
    width: 0.11415vw;
 | 
			
		||||
    border-radius: 2px;
 | 
			
		||||
    top: 0%;
 | 
			
		||||
    left: 0;
 | 
			
		||||
    background: radial-gradient(
 | 
			
		||||
      circle at center,
 | 
			
		||||
      #024798 2%,
 | 
			
		||||
      #024798 30%,
 | 
			
		||||
      transparent
 | 
			
		||||
    );
 | 
			
		||||
    z-index: 1;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  &::after {
 | 
			
		||||
    content: "";
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
    width: 60%;
 | 
			
		||||
    height: 0.31415vh;
 | 
			
		||||
    border-radius: 2px;
 | 
			
		||||
    left: 8%;
 | 
			
		||||
    bottom: 0;
 | 
			
		||||
    background: linear-gradient(to right, #024798, transparent);
 | 
			
		||||
    z-index: 0;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .container-head {
 | 
			
		||||
    // height: 40px;
 | 
			
		||||
    height: 3.8vh;
 | 
			
		||||
    padding: 8px;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    align-items: center;
 | 
			
		||||
    gap: 8px;
 | 
			
		||||
 | 
			
		||||
    .container-title {
 | 
			
		||||
      font-size: 1.18vw;
 | 
			
		||||
      line-height: 1.39vw;
 | 
			
		||||
      font-weight: normal;
 | 
			
		||||
      letter-spacing: 2px;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .container-body {
 | 
			
		||||
    padding: 12px;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-direction: column;
 | 
			
		||||
    flex: 1;
 | 
			
		||||
    height: 0;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .corner {
 | 
			
		||||
    z-index: 1;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    // width: 16px;
 | 
			
		||||
    // height: 16px;
 | 
			
		||||
    width: 0.95vw;
 | 
			
		||||
    height: 0.95vw;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .corner.tl {
 | 
			
		||||
    border-top: 2px solid #0175dc;
 | 
			
		||||
    border-left: 2px solid #0175dc;
 | 
			
		||||
    top: 0;
 | 
			
		||||
    left: 0;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .corner.tr {
 | 
			
		||||
    top: 0;
 | 
			
		||||
    right: 0;
 | 
			
		||||
    border-top: 2px solid #0175dc;
 | 
			
		||||
    border-right: 2px solid #0175dc;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .corner.bl {
 | 
			
		||||
    // width: 20px;
 | 
			
		||||
    // height: 20px;
 | 
			
		||||
    width: 1.064vw;
 | 
			
		||||
    height: 1.064vw;
 | 
			
		||||
    bottom: 0;
 | 
			
		||||
    left: 0;
 | 
			
		||||
    // border-left: 10px solid #0175dc;
 | 
			
		||||
    // border-bottom: 10px solid #0175dc;
 | 
			
		||||
    // border-top: 10px solid transparent;
 | 
			
		||||
    // border-right: 10px solid transparent;
 | 
			
		||||
    border-left: 0.532vw solid #0175dc;
 | 
			
		||||
    border-bottom: 0.532vw solid #0175dc;
 | 
			
		||||
    border-top: 0.532vw solid transparent;
 | 
			
		||||
    border-right: 0.532vw solid transparent;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .corner.br {
 | 
			
		||||
    bottom: 0;
 | 
			
		||||
    right: 0;
 | 
			
		||||
    // width: 20px;
 | 
			
		||||
    // height: 20px;
 | 
			
		||||
    width: 1.064vw;
 | 
			
		||||
    height: 1.064vw;
 | 
			
		||||
    // border-left: 10px solid transparent;
 | 
			
		||||
    // border-bottom: 10px solid #0175dc;
 | 
			
		||||
    // border-top: 10px solid transparent;
 | 
			
		||||
    // border-right: 10px solid #0175dc;
 | 
			
		||||
    border-left: 0.532vw solid transparent;
 | 
			
		||||
    border-bottom: 0.532vw solid #0175dc;
 | 
			
		||||
    border-top: 0.532vw solid transparent;
 | 
			
		||||
    border-right: 0.532vw solid #0175dc;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .gradient-to-right {
 | 
			
		||||
    background: linear-gradient(to right, #0c3f68cc, transparent);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .gradient-to-left {
 | 
			
		||||
    background: linear-gradient(to left, #0c3f68cc, transparent);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .body-gradient-to-right {
 | 
			
		||||
    background: linear-gradient(to right, #0003, transparent);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .body-gradient-to-left {
 | 
			
		||||
    background: linear-gradient(to left, #0003, transparent);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										56
									
								
								src/views/copilot/factoryData/components/ContainerIcon.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,56 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: ContainerIcon.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-09 16:41:36
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="container-icon" :style="bgStyle"></div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import prod from "@/assets/images/companyData/prod-minor.png";
 | 
			
		||||
import store from "@/assets/images/companyData/store.png";
 | 
			
		||||
import energy from "@/assets/images/companyData/energy.png";
 | 
			
		||||
import order from "@/assets/images/companyData/order.png";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ContainerIcon",
 | 
			
		||||
  components: {},
 | 
			
		||||
  props: {
 | 
			
		||||
    icon: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "prod",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    bgStyle() {
 | 
			
		||||
      return {
 | 
			
		||||
        prod:
 | 
			
		||||
          "background: url(" + prod + ") no-repeat center center / 100% 100%",
 | 
			
		||||
        store:
 | 
			
		||||
          "background: url(" + store + ") no-repeat center center / 100% 100%",
 | 
			
		||||
        energy:
 | 
			
		||||
          "background: url(" + energy + ") no-repeat center center / 100% 100%",
 | 
			
		||||
        order:
 | 
			
		||||
          "background: url(" + order + ") no-repeat center center / 100% 100%",
 | 
			
		||||
      }[this.icon];
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.container-icon {
 | 
			
		||||
  //   width: 32px;
 | 
			
		||||
  //   height: 32px;
 | 
			
		||||
  width: 1.701vw;
 | 
			
		||||
  height: 1.701vw;
 | 
			
		||||
  background: #ccc2;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										371
									
								
								src/views/copilot/factoryData/components/Energy.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,371 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="left-chart-base">
 | 
			
		||||
    <div class="legend">
 | 
			
		||||
      <span
 | 
			
		||||
        v-for="item in legend"
 | 
			
		||||
        :key="item.label"
 | 
			
		||||
        class="legend-item"
 | 
			
		||||
        :style="{ fontSize: isFullscreen ? '0.85vw' : '0.73vw' }"
 | 
			
		||||
        >{{ item.label }}</span
 | 
			
		||||
      >
 | 
			
		||||
    </div>
 | 
			
		||||
    <div id="factoryEnergyChart" style="width: 100%; height: 100%"></div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
<script>
 | 
			
		||||
import { debounce } from "@/utils/debounce";
 | 
			
		||||
import * as echarts from "echarts";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "Energy",
 | 
			
		||||
  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,
 | 
			
		||||
      chart: "",
 | 
			
		||||
      options: {
 | 
			
		||||
        color: ["#FFD160", "#2760FF", "#12FFF5"],
 | 
			
		||||
        grid: {
 | 
			
		||||
          left: "3%",
 | 
			
		||||
          right: "4%",
 | 
			
		||||
          bottom: "0",
 | 
			
		||||
          top: "15%",
 | 
			
		||||
          containLabel: true,
 | 
			
		||||
        },
 | 
			
		||||
        tooltip: {
 | 
			
		||||
          trigger: "axis",
 | 
			
		||||
        },
 | 
			
		||||
        xAxis: {
 | 
			
		||||
          axisTick: {
 | 
			
		||||
            show: false,
 | 
			
		||||
          },
 | 
			
		||||
          axisLine: {
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              color: "#4561AE",
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
          axisLabel: {
 | 
			
		||||
            color: "rgba(255, 255, 255, 0.7)",
 | 
			
		||||
            fontSize: 12,
 | 
			
		||||
          },
 | 
			
		||||
          data: this.xAxis,
 | 
			
		||||
        },
 | 
			
		||||
        yAxis: [
 | 
			
		||||
          {
 | 
			
		||||
            type: "value",
 | 
			
		||||
            name: "KW/h",
 | 
			
		||||
            nameTextStyle: {
 | 
			
		||||
              color: "rgba(255, 255, 255, 0.7)",
 | 
			
		||||
              fontSize: 12,
 | 
			
		||||
              align: "right",
 | 
			
		||||
            },
 | 
			
		||||
            axisTick: {
 | 
			
		||||
              show: false,
 | 
			
		||||
            },
 | 
			
		||||
            axisLabel: {
 | 
			
		||||
              color: "rgba(255, 255, 255, 0.7)",
 | 
			
		||||
              fontSize: 12,
 | 
			
		||||
            },
 | 
			
		||||
            axisLine: {
 | 
			
		||||
              show: true,
 | 
			
		||||
              lineStyle: {
 | 
			
		||||
                color: "#4561AE",
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
            splitLine: {
 | 
			
		||||
              lineStyle: {
 | 
			
		||||
                color: "#4561AE",
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            type: "value",
 | 
			
		||||
            name: "m³/h",
 | 
			
		||||
            nameTextStyle: {
 | 
			
		||||
              color: "rgba(255, 255, 255, 0.7)",
 | 
			
		||||
              fontSize: 12,
 | 
			
		||||
              align: "left",
 | 
			
		||||
            },
 | 
			
		||||
            axisTick: {
 | 
			
		||||
              show: false,
 | 
			
		||||
            },
 | 
			
		||||
            axisLabel: {
 | 
			
		||||
              color: "rgba(255, 255, 255, 0.7)",
 | 
			
		||||
              fontSize: 12,
 | 
			
		||||
            },
 | 
			
		||||
            axisLine: {
 | 
			
		||||
              show: true,
 | 
			
		||||
              lineStyle: {
 | 
			
		||||
                color: "#4561AE",
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
            splitLine: {
 | 
			
		||||
              lineStyle: {
 | 
			
		||||
                color: "#4561AE",
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
        ],
 | 
			
		||||
        series: [
 | 
			
		||||
          {
 | 
			
		||||
            name: "",
 | 
			
		||||
            data: [],
 | 
			
		||||
            type: "line",
 | 
			
		||||
            areaStyle: {
 | 
			
		||||
              color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
 | 
			
		||||
                { offset: 0, color: "#FFD160" + "80" },
 | 
			
		||||
                { offset: 0.5, color: "#FFD160" + "20" },
 | 
			
		||||
                { offset: 1, color: "#FFD160" + "00" },
 | 
			
		||||
              ]),
 | 
			
		||||
            },
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              width: 2,
 | 
			
		||||
            },
 | 
			
		||||
            symbol: "circle",
 | 
			
		||||
            symbolSize: 8,
 | 
			
		||||
            emphasis: {
 | 
			
		||||
              focus: "series",
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: "",
 | 
			
		||||
            data: [],
 | 
			
		||||
            type: "line",
 | 
			
		||||
            yAxisIndex: 1,
 | 
			
		||||
            areaStyle: {
 | 
			
		||||
              color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
 | 
			
		||||
                { offset: 0, color: "#2760FF" + "80" },
 | 
			
		||||
                { offset: 0.5, color: "#2760FF" + "20" },
 | 
			
		||||
                { offset: 1, color: "#2760FF" + "00" },
 | 
			
		||||
              ]),
 | 
			
		||||
            },
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              width: 2,
 | 
			
		||||
            },
 | 
			
		||||
            symbol: "circle",
 | 
			
		||||
            symbolSize: 8,
 | 
			
		||||
            emphasis: {
 | 
			
		||||
              focus: "series",
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: "",
 | 
			
		||||
            data: [],
 | 
			
		||||
            type: "line",
 | 
			
		||||
            yAxisIndex: 1,
 | 
			
		||||
            areaStyle: {
 | 
			
		||||
              color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
 | 
			
		||||
                { offset: 0, color: "#12FFF5" + "80" },
 | 
			
		||||
                { offset: 0.5, color: "#12FFF5" + "20" },
 | 
			
		||||
                { offset: 1, color: "#12FFF5" + "00" },
 | 
			
		||||
              ]),
 | 
			
		||||
            },
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              width: 2,
 | 
			
		||||
            },
 | 
			
		||||
            symbol: "circle",
 | 
			
		||||
            symbolSize: 8,
 | 
			
		||||
            emphasis: {
 | 
			
		||||
              focus: "series",
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
        ],
 | 
			
		||||
      },
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  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;
 | 
			
		||||
    //   actualOptions.series[2].data = val[2].data;
 | 
			
		||||
    //   actualOptions.series[2].name = val[2].name;
 | 
			
		||||
    //   this.actualOptions = actualOptions;
 | 
			
		||||
    //   this.initOptions(actualOptions);
 | 
			
		||||
    // },
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    // if (screenfull.isEnabled) {
 | 
			
		||||
    //   screenfull.on("change", () => {
 | 
			
		||||
    //     this.isFullscreen = screenfull.isFullscreen;
 | 
			
		||||
    //   });
 | 
			
		||||
    // }
 | 
			
		||||
    this.canvasReset();
 | 
			
		||||
    window.addEventListener("resize", this.canvasReset);
 | 
			
		||||
  },
 | 
			
		||||
  beforeDestroy() {
 | 
			
		||||
    if (this.chart) {
 | 
			
		||||
      this.chart.dispose();
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  destroyed() {
 | 
			
		||||
    window.removeEventListener("resize", this.canvasReset);
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    canvasReset() {
 | 
			
		||||
      debounce(() => {
 | 
			
		||||
        this.initChart();
 | 
			
		||||
      }, 500)();
 | 
			
		||||
    },
 | 
			
		||||
    initChart() {
 | 
			
		||||
      if (this.chart) {
 | 
			
		||||
        this.chart.dispose();
 | 
			
		||||
      }
 | 
			
		||||
      this.chart = echarts.init(document.getElementById("factoryEnergyChart"));
 | 
			
		||||
      const actualOptions = JSON.parse(JSON.stringify(this.options));
 | 
			
		||||
      actualOptions.series[0].data = this.series[0].data;
 | 
			
		||||
      actualOptions.series[0].name = this.series[0].name;
 | 
			
		||||
      actualOptions.series[1].data = this.series[1].data;
 | 
			
		||||
      actualOptions.series[1].name = this.series[1].name;
 | 
			
		||||
      actualOptions.series[2].data = this.series[2].data;
 | 
			
		||||
      actualOptions.series[2].name = this.series[2].name;
 | 
			
		||||
      this.actualOptions = actualOptions;
 | 
			
		||||
      this.chart.setOption(actualOptions);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.left-chart-base {
 | 
			
		||||
  // position: relative;
 | 
			
		||||
  height: 100%;
 | 
			
		||||
 | 
			
		||||
  .legend {
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    top: 5.2vh;
 | 
			
		||||
    right: 4vw;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  .legend-item {
 | 
			
		||||
    position: relative;
 | 
			
		||||
    // font-size: 12px;
 | 
			
		||||
    margin-right: 1.34vw;
 | 
			
		||||
 | 
			
		||||
    &::before {
 | 
			
		||||
      content: "";
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      // width: 10px;
 | 
			
		||||
      // height: 10px;
 | 
			
		||||
      width: 0.531vw;
 | 
			
		||||
      height: 0.531vw;
 | 
			
		||||
      background-color: #ccc;
 | 
			
		||||
      border-radius: 2px;
 | 
			
		||||
      margin-right: 0.22vw;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  .legend-item:nth-child(1):before {
 | 
			
		||||
    // width: 12px;
 | 
			
		||||
    // height: 2px;
 | 
			
		||||
    width: 0.638vw;
 | 
			
		||||
    height: 0.1064vw;
 | 
			
		||||
    background-color: #ffd160;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    top: 50%;
 | 
			
		||||
    // left: -16px;
 | 
			
		||||
    left: -0.851vw;
 | 
			
		||||
    transform: translateY(-50%);
 | 
			
		||||
  }
 | 
			
		||||
  .legend-item:nth-child(1):after {
 | 
			
		||||
    background-color: #ffd160;
 | 
			
		||||
    content: "";
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    // width: 6px;
 | 
			
		||||
    // height: 6px;
 | 
			
		||||
    width: 0.3191vw;
 | 
			
		||||
    height: 0.3191vw;
 | 
			
		||||
    border-radius: 100%;
 | 
			
		||||
    top: 50%;
 | 
			
		||||
    left: -0.851vw;
 | 
			
		||||
    // left: -16px;
 | 
			
		||||
    transform: translateY(-50%) translateX(50%);
 | 
			
		||||
  }
 | 
			
		||||
  .legend-item:nth-child(2):before {
 | 
			
		||||
    // width: 12px;
 | 
			
		||||
    // height: 2px;
 | 
			
		||||
    width: 0.638vw;
 | 
			
		||||
    height: 0.1064vw;
 | 
			
		||||
    background-color: #2760ff;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    top: 50%;
 | 
			
		||||
    // left: -16px;
 | 
			
		||||
    left: -0.851vw;
 | 
			
		||||
    transform: translateY(-50%);
 | 
			
		||||
  }
 | 
			
		||||
  .legend-item:nth-child(2):after {
 | 
			
		||||
    background-color: #2760ff;
 | 
			
		||||
    content: "";
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    // width: 6px;
 | 
			
		||||
    // height: 6px;
 | 
			
		||||
    width: 0.3191vw;
 | 
			
		||||
    height: 0.3191vw;
 | 
			
		||||
    border-radius: 100%;
 | 
			
		||||
    top: 50%;
 | 
			
		||||
    left: -0.851vw;
 | 
			
		||||
    // left: -16px;
 | 
			
		||||
    transform: translateY(-50%) translateX(50%);
 | 
			
		||||
  }
 | 
			
		||||
  .legend-item:nth-child(3):before {
 | 
			
		||||
    // width: 12px;
 | 
			
		||||
    // height: 2px;
 | 
			
		||||
    width: 0.638vw;
 | 
			
		||||
    height: 0.1064vw;
 | 
			
		||||
    background-color: #12fff5;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    top: 50%;
 | 
			
		||||
    // left: -16px;
 | 
			
		||||
    left: -0.851vw;
 | 
			
		||||
    transform: translateY(-50%);
 | 
			
		||||
  }
 | 
			
		||||
  .legend-item:nth-child(3):after {
 | 
			
		||||
    background-color: #12fff5;
 | 
			
		||||
    content: "";
 | 
			
		||||
    display: inline-block;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    // width: 6px;
 | 
			
		||||
    // height: 6px;
 | 
			
		||||
    width: 0.3191vw;
 | 
			
		||||
    height: 0.3191vw;
 | 
			
		||||
    border-radius: 100%;
 | 
			
		||||
    top: 50%;
 | 
			
		||||
    left: -0.851vw;
 | 
			
		||||
    // left: -16px;
 | 
			
		||||
    transform: translateY(-50%) translateX(50%);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										77
									
								
								src/views/copilot/factoryData/components/Order.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,77 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <dv-scroll-board
 | 
			
		||||
    v-if="aa"
 | 
			
		||||
    :config="config"
 | 
			
		||||
    style="width: 100%; height: 100%"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
<script>
 | 
			
		||||
import { debounce } from "@/utils/debounce";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "Order",
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      aa: true,
 | 
			
		||||
      config: {
 | 
			
		||||
        header: ["序号", "客户名称", "产品名称", "计划加工数量", "加工进度"],
 | 
			
		||||
        headerBGC: "rgba(0, 106, 205, 0.22)",
 | 
			
		||||
        oddRowBGC: "rgba(0, 106, 205, 0.22)",
 | 
			
		||||
        evenRowBGC: "rgba(rgba(2, 13, 45, 0.18)",
 | 
			
		||||
        data: [],
 | 
			
		||||
        rowNum: 12,
 | 
			
		||||
        waitTime: 3000,
 | 
			
		||||
        columnWidth: [50],
 | 
			
		||||
        align: ["center"],
 | 
			
		||||
        carousel: "page",
 | 
			
		||||
      },
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.getTableList();
 | 
			
		||||
    this.tableReset();
 | 
			
		||||
    window.addEventListener("resize", this.tableReset);
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    tableReset() {
 | 
			
		||||
      this.aa = false;
 | 
			
		||||
      debounce(() => {
 | 
			
		||||
        this.initTable();
 | 
			
		||||
      }, 500)();
 | 
			
		||||
    },
 | 
			
		||||
    initTable() {
 | 
			
		||||
      this.aa = true;
 | 
			
		||||
    },
 | 
			
		||||
    getTableList() {
 | 
			
		||||
      let _this = this;
 | 
			
		||||
      setTimeout(
 | 
			
		||||
        (function name() {
 | 
			
		||||
          _this.config.data = [
 | 
			
		||||
            ["1", "行1列1", "行1列2", "行1列3", "50%"],
 | 
			
		||||
            ["2", "行2列1", "行2列2", "行2列3", "50%"],
 | 
			
		||||
            ["3", "行3列1", "行3列2", "行3列3", "50%"],
 | 
			
		||||
            ["4", "行4列1", "行4列2", "行4列3", "50%"],
 | 
			
		||||
            ["5", "行5列1", "行5列2", "行5列3", "50%"],
 | 
			
		||||
            ["6", "行6列1", "行6列2", "行6列3", "50%"],
 | 
			
		||||
            ["7", "行7列1", "行7列2", "行7列3", "50%"],
 | 
			
		||||
            ["8", "行8列1", "行8列2", "行8列3", "50%"],
 | 
			
		||||
            ["9", "行9列1", "行9列2", "行9列3", "50%"],
 | 
			
		||||
            ["10", "行10列1", "行10列2", "行10列3", "50%"],
 | 
			
		||||
            ["11", "行11列1", "行11列2", "行11列3", "50%"],
 | 
			
		||||
            ["12", "行12列1", "行12列2", "行12列3", "50%"],
 | 
			
		||||
            ["13", "行13列1", "行13列2", "行13列3", "50%"],
 | 
			
		||||
            ["14", "行14列1", "行14列2", "行14列3", "50%"],
 | 
			
		||||
            ["15", "行15列1", "行15列2", "行15列3", "50%"],
 | 
			
		||||
            ["16", "行16列1", "行16列2", "行16列3", "50%"],
 | 
			
		||||
            ["17", "行17列1", "行17列2", "行17列3", "50%"],
 | 
			
		||||
            ["18", "行18列1", "行18列2", "行18列3", "50%"],
 | 
			
		||||
            ["19", "行19列1", "行19列2", "行19列3", "50%"],
 | 
			
		||||
            ["20", "行20列1", "行20列2", "行20列3", "50%"],
 | 
			
		||||
          ];
 | 
			
		||||
        })(),
 | 
			
		||||
        2000
 | 
			
		||||
      );
 | 
			
		||||
      this.initTable();
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										272
									
								
								src/views/copilot/factoryData/components/ProdMonitor.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,272 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="prod-monitor">
 | 
			
		||||
    <div class="fto-box">
 | 
			
		||||
      <div class="icon">
 | 
			
		||||
        <img
 | 
			
		||||
          src="./../assets/images/fto.png"
 | 
			
		||||
          alt=""
 | 
			
		||||
          style="width: 2.1875vw; height: 2.2875vw"
 | 
			
		||||
        />
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="middle-box">
 | 
			
		||||
        <span class="type">玻璃类型</span>
 | 
			
		||||
        <span class="type-name">FTO投入</span>
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="right-box">
 | 
			
		||||
        <span class="type">投入数量</span>
 | 
			
		||||
        <span class="num">8391222</span>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="std-box">
 | 
			
		||||
      <div class="icon">
 | 
			
		||||
        <img
 | 
			
		||||
          src="./../assets/images/std.png"
 | 
			
		||||
          alt=""
 | 
			
		||||
          style="width: 2.1875vw; height: 2.1875vw"
 | 
			
		||||
        />
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="middle-box">
 | 
			
		||||
        <div class="separate">
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type">玻璃类型</span>
 | 
			
		||||
            <span class="type-name">标准组检产量</span>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type">良品数量</span>
 | 
			
		||||
            <span class="type-name">740</span>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="right-box">
 | 
			
		||||
        <div class="separate">
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type">生产数量</span>
 | 
			
		||||
            <span class="num">783</span>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type1">良品率</span>
 | 
			
		||||
            <span class="num">96%</span>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="chip-box">
 | 
			
		||||
      <div class="icon">
 | 
			
		||||
        <img
 | 
			
		||||
          src="./../assets/images/chip.png"
 | 
			
		||||
          alt=""
 | 
			
		||||
          style="width: 2.1875vw; height: 2.1875vw"
 | 
			
		||||
        />
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="middle-box">
 | 
			
		||||
        <div class="separate">
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type">玻璃类型</span>
 | 
			
		||||
            <span class="type-name">芯片产量</span>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type">良品数量</span>
 | 
			
		||||
            <span class="type-name">740</span>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="right-box">
 | 
			
		||||
        <div class="separate">
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type">生产数量</span>
 | 
			
		||||
            <span class="num">783</span>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type1">良品率</span>
 | 
			
		||||
            <span class="num">96%</span>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="bipv-box">
 | 
			
		||||
      <div class="icon">
 | 
			
		||||
        <img
 | 
			
		||||
          src="./../assets/images/bipv.png"
 | 
			
		||||
          alt=""
 | 
			
		||||
          style="width: 2.1875vw; height: 2.1875vw"
 | 
			
		||||
        />
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="middle-box">
 | 
			
		||||
        <div class="separate">
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type">玻璃类型</span>
 | 
			
		||||
            <span class="type-name">BIPV产量</span>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type">良品数量</span>
 | 
			
		||||
            <span class="type-name">740</span>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class="right-box">
 | 
			
		||||
        <div class="separate">
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type">生产数量</span>
 | 
			
		||||
            <span class="num">783</span>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div>
 | 
			
		||||
            <span class="type1">良品率</span>
 | 
			
		||||
            <span class="num">96%</span>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ProdMonitor",
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
.prod-monitor {
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  gap: 6px;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  .fto-box,
 | 
			
		||||
  .std-box,
 | 
			
		||||
  .chip-box,
 | 
			
		||||
  .bipv-box {
 | 
			
		||||
    box-shadow: inset 0 0 12px 2px #fff3;
 | 
			
		||||
    border-radius: 4px;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    align-items: center;
 | 
			
		||||
    .icon {
 | 
			
		||||
      flex: 1;
 | 
			
		||||
      text-align: center;
 | 
			
		||||
    }
 | 
			
		||||
    .middle-box {
 | 
			
		||||
      flex: 2.086;
 | 
			
		||||
      position: relative;
 | 
			
		||||
    }
 | 
			
		||||
    .right-box {
 | 
			
		||||
      flex: 2.424;
 | 
			
		||||
      position: relative;
 | 
			
		||||
    }
 | 
			
		||||
    .type {
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      font-size: 0.9375vw;
 | 
			
		||||
      color: #6db6ff;
 | 
			
		||||
      position: relative;
 | 
			
		||||
      text-align: right;
 | 
			
		||||
      padding-right: 0.417vw;
 | 
			
		||||
      letter-spacing: 2px;
 | 
			
		||||
      width: 6.25vw;
 | 
			
		||||
    }
 | 
			
		||||
    .type1 {
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      font-size: 0.9375vw;
 | 
			
		||||
      color: #6db6ff;
 | 
			
		||||
      position: relative;
 | 
			
		||||
      text-align: right;
 | 
			
		||||
      padding-right: 0.6vw;
 | 
			
		||||
      width: 6.25vw;
 | 
			
		||||
      padding-left: 1.6vw;
 | 
			
		||||
      text-align: justify;
 | 
			
		||||
      text-align-last: justify;
 | 
			
		||||
    }
 | 
			
		||||
    .type-name {
 | 
			
		||||
      font-size: 1.042vw;
 | 
			
		||||
      color: #fff;
 | 
			
		||||
      position: relative;
 | 
			
		||||
      text-align: left;
 | 
			
		||||
      padding-left: 0.573vw;
 | 
			
		||||
    }
 | 
			
		||||
    .type-name::before {
 | 
			
		||||
      content: "";
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      width: 1px;
 | 
			
		||||
      height: 1.042vw;
 | 
			
		||||
      border: 1px solid;
 | 
			
		||||
      border-image: linear-gradient(
 | 
			
		||||
          180deg,
 | 
			
		||||
          rgba(0, 176, 243, 0),
 | 
			
		||||
          rgba(31, 143, 255, 1)
 | 
			
		||||
        )
 | 
			
		||||
        2 2;
 | 
			
		||||
      position: absolute;
 | 
			
		||||
      left: 0;
 | 
			
		||||
      top: 4px;
 | 
			
		||||
    }
 | 
			
		||||
    .num {
 | 
			
		||||
      font-size: 1.042vw;
 | 
			
		||||
      color: #fff;
 | 
			
		||||
      position: relative;
 | 
			
		||||
      text-align: left;
 | 
			
		||||
      padding-left: 0.573vw;
 | 
			
		||||
    }
 | 
			
		||||
    .num::before {
 | 
			
		||||
      content: "";
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      width: 1px;
 | 
			
		||||
      height: 1.042vw;
 | 
			
		||||
      border: 1px solid;
 | 
			
		||||
      border-image: linear-gradient(
 | 
			
		||||
          180deg,
 | 
			
		||||
          rgba(0, 176, 243, 0),
 | 
			
		||||
          rgba(31, 143, 255, 1)
 | 
			
		||||
        )
 | 
			
		||||
        2 2;
 | 
			
		||||
      position: absolute;
 | 
			
		||||
      left: 0;
 | 
			
		||||
      top: 4px;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  .fto-box {
 | 
			
		||||
    flex: 1;
 | 
			
		||||
    .type::before {
 | 
			
		||||
      content: "";
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      width: 1px;
 | 
			
		||||
      height: 1.6146vw;
 | 
			
		||||
      border: 1px solid;
 | 
			
		||||
      border-image: linear-gradient(
 | 
			
		||||
          135deg,
 | 
			
		||||
          rgba(0, 176, 243, 0),
 | 
			
		||||
          rgba(31, 143, 255, 1),
 | 
			
		||||
          rgba(31, 143, 255, 0)
 | 
			
		||||
        )
 | 
			
		||||
        2 2;
 | 
			
		||||
      position: absolute;
 | 
			
		||||
      left: 0;
 | 
			
		||||
      top: -2px;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  .std-box {
 | 
			
		||||
    flex: 1.3;
 | 
			
		||||
  }
 | 
			
		||||
  .chip-box {
 | 
			
		||||
    flex: 1.3;
 | 
			
		||||
  }
 | 
			
		||||
  .bipv-box {
 | 
			
		||||
    flex: 1.3;
 | 
			
		||||
  }
 | 
			
		||||
  .std-box,
 | 
			
		||||
  .chip-box,
 | 
			
		||||
  .bipv-box {
 | 
			
		||||
    .separate::before {
 | 
			
		||||
      content: "";
 | 
			
		||||
      display: inline-block;
 | 
			
		||||
      width: 1px;
 | 
			
		||||
      height: 3.125vw;
 | 
			
		||||
      border: 1px solid;
 | 
			
		||||
      border-image: linear-gradient(
 | 
			
		||||
          135deg,
 | 
			
		||||
          rgba(0, 176, 243, 0),
 | 
			
		||||
          rgba(31, 143, 255, 1),
 | 
			
		||||
          rgba(31, 143, 255, 0)
 | 
			
		||||
        )
 | 
			
		||||
        2 2;
 | 
			
		||||
      position: absolute;
 | 
			
		||||
      left: 0;
 | 
			
		||||
      top: -2px;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										170
									
								
								src/views/copilot/factoryData/components/Store.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,170 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div id="factoryStoreChart" style="width: 100%; height: 100%"></div>
 | 
			
		||||
</template>
 | 
			
		||||
<script>
 | 
			
		||||
import { debounce } from "@/utils/debounce";
 | 
			
		||||
import * as echarts from "echarts";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "Store",
 | 
			
		||||
  props: {
 | 
			
		||||
    vHeight: {
 | 
			
		||||
      type: Number,
 | 
			
		||||
      default: 34,
 | 
			
		||||
    },
 | 
			
		||||
    xAxis: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
    series: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      isFullscreen: false,
 | 
			
		||||
      actualOptions: null,
 | 
			
		||||
      chart: "",
 | 
			
		||||
      options: {
 | 
			
		||||
        grid: {
 | 
			
		||||
          left: "3%",
 | 
			
		||||
          right: "1%",
 | 
			
		||||
          bottom: "0",
 | 
			
		||||
          top: "10%",
 | 
			
		||||
          containLabel: true,
 | 
			
		||||
        },
 | 
			
		||||
        tooltip: {},
 | 
			
		||||
        xAxis: {
 | 
			
		||||
          axisTick: {
 | 
			
		||||
            show: false,
 | 
			
		||||
          },
 | 
			
		||||
          axisLine: {
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              color: "#4561AE",
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
          axisLabel: {
 | 
			
		||||
            color: "rgba(255, 255, 255, 0.7)",
 | 
			
		||||
            fontSize: 12,
 | 
			
		||||
          },
 | 
			
		||||
          data: this.xAxis,
 | 
			
		||||
        },
 | 
			
		||||
        yAxis: {
 | 
			
		||||
          name: "单位/片",
 | 
			
		||||
          nameTextStyle: {
 | 
			
		||||
            color: "rgba(255, 255, 255, 0.7)",
 | 
			
		||||
            fontSize: 12,
 | 
			
		||||
            align: "right",
 | 
			
		||||
          },
 | 
			
		||||
          axisTick: {
 | 
			
		||||
            show: false,
 | 
			
		||||
          },
 | 
			
		||||
          axisLabel: {
 | 
			
		||||
            color: "rgba(255, 255, 255, 0.7)",
 | 
			
		||||
            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,
 | 
			
		||||
          },
 | 
			
		||||
        ],
 | 
			
		||||
      },
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    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() {
 | 
			
		||||
    // if (screenfull.isEnabled) {
 | 
			
		||||
    //   screenfull.on("change", () => {
 | 
			
		||||
    //     this.isFullscreen = screenfull.isFullscreen;
 | 
			
		||||
    //   });
 | 
			
		||||
    // }
 | 
			
		||||
    this.canvasReset();
 | 
			
		||||
    window.addEventListener("resize", this.canvasReset);
 | 
			
		||||
  },
 | 
			
		||||
  beforeDestroy() {
 | 
			
		||||
    if (this.chart) {
 | 
			
		||||
      this.chart.dispose();
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  destroyed() {
 | 
			
		||||
    window.removeEventListener("resize", this.canvasReset);
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    canvasReset() {
 | 
			
		||||
      debounce(() => {
 | 
			
		||||
        this.initChart();
 | 
			
		||||
      }, 500)();
 | 
			
		||||
    },
 | 
			
		||||
    initChart() {
 | 
			
		||||
      if (this.chart) {
 | 
			
		||||
        this.chart.dispose();
 | 
			
		||||
      }
 | 
			
		||||
      this.chart = echarts.init(document.getElementById("factoryStoreChart"));
 | 
			
		||||
      const actualOptions = JSON.parse(JSON.stringify(this.options));
 | 
			
		||||
      actualOptions.series[0].data = this.series[0].data;
 | 
			
		||||
      actualOptions.series[0].name = this.series[0].name;
 | 
			
		||||
      this.actualOptions = actualOptions;
 | 
			
		||||
      this.chart.setOption(actualOptions);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style></style>
 | 
			
		||||
							
								
								
									
										185
									
								
								src/views/copilot/factoryData/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,185 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="factory-layout">
 | 
			
		||||
    <FactoryDataHeader
 | 
			
		||||
      :companyName="companyName"
 | 
			
		||||
      :companyId="companyId"
 | 
			
		||||
      :period="period"
 | 
			
		||||
      @updateCompany="updateCompany"
 | 
			
		||||
      @update:period="period = $event"
 | 
			
		||||
    />
 | 
			
		||||
    <div class="factory-section">
 | 
			
		||||
      <section class="top flex">
 | 
			
		||||
        <db-container title="生产监控" icon="prod">
 | 
			
		||||
          <prod-monitor />
 | 
			
		||||
        </db-container>
 | 
			
		||||
        <db-container title="仓库监控.当前" icon="store">
 | 
			
		||||
          <store :series="series" :xAxis="xAxis" />
 | 
			
		||||
        </db-container>
 | 
			
		||||
      </section>
 | 
			
		||||
      <section class="bottom flex">
 | 
			
		||||
        <db-container title="能源监控" icon="energy">
 | 
			
		||||
          <energy
 | 
			
		||||
            :legend="energyLegend"
 | 
			
		||||
            :series="energySeries"
 | 
			
		||||
            :xAxis="energyxAxis"
 | 
			
		||||
          />
 | 
			
		||||
        </db-container>
 | 
			
		||||
        <db-container title="订单监控" icon="order">
 | 
			
		||||
          <order />
 | 
			
		||||
        </db-container>
 | 
			
		||||
      </section>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="factory-footer">© 中建材智能自动化研究院有限公司</div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
<script>
 | 
			
		||||
import FactoryDataHeader from "./../components/FactoryDataHeader.vue";
 | 
			
		||||
import Container from "./components/Container.vue";
 | 
			
		||||
import ProdMonitor from "./components/ProdMonitor.vue";
 | 
			
		||||
import Store from "./components/Store.vue";
 | 
			
		||||
import Energy from "./components/Energy.vue";
 | 
			
		||||
import Order from "./components/Order.vue";
 | 
			
		||||
import { cockpitDataMonitor } from "@/api/produceData";
 | 
			
		||||
export default {
 | 
			
		||||
  name: "FactoryData",
 | 
			
		||||
  components: {
 | 
			
		||||
    FactoryDataHeader,
 | 
			
		||||
    DbContainer: Container,
 | 
			
		||||
    ProdMonitor,
 | 
			
		||||
    Store,
 | 
			
		||||
    Energy,
 | 
			
		||||
    Order,
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    const year = new Date().getFullYear();
 | 
			
		||||
    const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
 | 
			
		||||
    return {
 | 
			
		||||
      companyId: "1",
 | 
			
		||||
      companyName: "瑞昌中建材光电材料有限公司",
 | 
			
		||||
      period: "日",
 | 
			
		||||
 | 
			
		||||
      energyLegend: [
 | 
			
		||||
        { label: "电", color: "#FFD160" },
 | 
			
		||||
        { label: "水", color: "#2760FF" },
 | 
			
		||||
        { label: "气", color: "#12FFF5" },
 | 
			
		||||
      ],
 | 
			
		||||
      energyxAxis: [3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7],
 | 
			
		||||
 | 
			
		||||
      legend: [
 | 
			
		||||
        { label: `${year - 1}年`, color: "#12f7f1" },
 | 
			
		||||
        // { label: `${year}年`, color: "#58adfa" },
 | 
			
		||||
      ],
 | 
			
		||||
      xAxis: cities,
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    energySeries() {
 | 
			
		||||
      return [
 | 
			
		||||
        {
 | 
			
		||||
          name: "电",
 | 
			
		||||
          data: Array.from({ length: 7 }, () =>
 | 
			
		||||
            Math.floor(Math.random() * 1000)
 | 
			
		||||
          ),
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: "水",
 | 
			
		||||
          data: Array.from({ length: 7 }, () =>
 | 
			
		||||
            Math.floor(Math.random() * 1000)
 | 
			
		||||
          ),
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: "气",
 | 
			
		||||
          data: Array.from({ length: 7 }, () =>
 | 
			
		||||
            Math.floor(Math.random() * 1000)
 | 
			
		||||
          ),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
    },
 | 
			
		||||
    series() {
 | 
			
		||||
      // 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)
 | 
			
		||||
          ),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
      // }
 | 
			
		||||
 | 
			
		||||
      // return [
 | 
			
		||||
      //   {
 | 
			
		||||
      //     name: `${new Date().getFullYear() - 1}年`,
 | 
			
		||||
      //     data: ftoInvest.previous,
 | 
			
		||||
      //   },
 | 
			
		||||
      //   {
 | 
			
		||||
      //     name: `${new Date().getFullYear()}年`,
 | 
			
		||||
      //     data: ftoInvest.current,
 | 
			
		||||
      //   },
 | 
			
		||||
      // ];
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.getMes1();
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    updateCompany(obj) {
 | 
			
		||||
      this.companyId = obj.companyId;
 | 
			
		||||
      this.companyName = obj.companyName;
 | 
			
		||||
    },
 | 
			
		||||
    getMes1() {
 | 
			
		||||
      cockpitDataMonitor({
 | 
			
		||||
        factorys: [1],
 | 
			
		||||
        date: 4,
 | 
			
		||||
      }).then((res) => {
 | 
			
		||||
        console.log(res);
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
.factory-layout {
 | 
			
		||||
  padding: 16px;
 | 
			
		||||
  background: url(../../../assets/images/copilot-bg.png) 0 0 / 100% 100%
 | 
			
		||||
    no-repeat;
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  height: calc(100% + 38px);
 | 
			
		||||
  left: -16px;
 | 
			
		||||
  top: -8px;
 | 
			
		||||
  width: calc(100% + 30px);
 | 
			
		||||
  z-index: 1001;
 | 
			
		||||
  color: #fff;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  flex-direction: column;
 | 
			
		||||
  gap: 8px;
 | 
			
		||||
  .factory-section {
 | 
			
		||||
    flex: 1;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-direction: column;
 | 
			
		||||
    gap: 16px;
 | 
			
		||||
    .flex {
 | 
			
		||||
      display: flex;
 | 
			
		||||
      gap: 16px;
 | 
			
		||||
      flex: 1;
 | 
			
		||||
    }
 | 
			
		||||
    .top > div,
 | 
			
		||||
    .bottom > div {
 | 
			
		||||
      height: 100%;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  .factory-footer {
 | 
			
		||||
    /** position: absolute;
 | 
			
		||||
  bottom: 10px; **/
 | 
			
		||||
    height: 10px;
 | 
			
		||||
    width: 100%;
 | 
			
		||||
    color: rgb(80, 80, 80);
 | 
			
		||||
    user-select: none;
 | 
			
		||||
    font-size: 14px;
 | 
			
		||||
    letter-spacing: 1px;
 | 
			
		||||
    display: grid;
 | 
			
		||||
    place-content: center;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										38
									
								
								src/views/copilot/yield/components/BipvOutput.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,38 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: BipvOutput.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-17 09:55:12
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <DoubleRingWrapperVue data-source="BIPV产出" :period="period" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "BipvOutput",
 | 
			
		||||
  components: { DoubleRingWrapperVue },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.flex-1 {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.stretch {
 | 
			
		||||
  align-self: stretch;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										106
									
								
								src/views/copilot/yield/components/ChipInvest.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,106 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: FtoInvest.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:59:28
 | 
			
		||||
    description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <BarChartBase
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="ChipInvest"
 | 
			
		||||
    class="chip-invest-chart"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBase from "@/views/copilot/components/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 - 1}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年${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 { chipInvest } = this.$store.getters.copilot.yield;
 | 
			
		||||
      let dataList = null;
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = chipInvest?.current;
 | 
			
		||||
          break;
 | 
			
		||||
        default:
 | 
			
		||||
          dataList = [];
 | 
			
		||||
          dataList[0] = chipInvest?.previous;
 | 
			
		||||
          dataList[1] = chipInvest?.current;
 | 
			
		||||
      }
 | 
			
		||||
      return getTemplate(this.period, dataList);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getTemplate(period, dataList) {
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  return period == "日" || period == "周"
 | 
			
		||||
    ? [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "日" ? "昨日" : "本周",
 | 
			
		||||
          data: dataList ?? [],
 | 
			
		||||
        },
 | 
			
		||||
      ]
 | 
			
		||||
    : [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[0] : [],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year}年` : `${year}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[1] : [],
 | 
			
		||||
          // : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										38
									
								
								src/views/copilot/yield/components/ChipOutput.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,38 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: ChipOutput.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-17 09:55:12
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <DoubleRingWrapperVue data-source="芯片产出" :period="period" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "ChipOutput",
 | 
			
		||||
  components: { DoubleRingWrapperVue },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.flex-1 {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.stretch {
 | 
			
		||||
  align-self: stretch;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										108
									
								
								src/views/copilot/yield/components/FtoInvest.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,108 @@
 | 
			
		||||
<!--
 | 
			
		||||
    filename: FtoInvest.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-10 08:59:28
 | 
			
		||||
    description:
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <BarChartBase
 | 
			
		||||
    :legend="legend"
 | 
			
		||||
    :series="series"
 | 
			
		||||
    :xAxis="xAxis"
 | 
			
		||||
    in="ftoInvest"
 | 
			
		||||
    class="fto-chart"
 | 
			
		||||
  />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import BarChartBase from "@/views/copilot/components/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 - 1}年${month}月`, color: "#12f7f1" },
 | 
			
		||||
            { label: `${year}年${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 { ftoInvest } = this.$store.getters.copilot.yield;
 | 
			
		||||
      let dataList = null;
 | 
			
		||||
 | 
			
		||||
      switch (this.period) {
 | 
			
		||||
        case "日":
 | 
			
		||||
        case "周":
 | 
			
		||||
          dataList = ftoInvest?.current;
 | 
			
		||||
          break;
 | 
			
		||||
        default:
 | 
			
		||||
          dataList = [];
 | 
			
		||||
          dataList[0] = ftoInvest?.previous;
 | 
			
		||||
          dataList[1] = ftoInvest?.current;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return getTemplate(this.period, dataList);
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
function getTemplate(period, dataList) {
 | 
			
		||||
  const year = new Date().getFullYear();
 | 
			
		||||
  const month = new Date().getMonth() + 1;
 | 
			
		||||
  return period == "日" || period == "周"
 | 
			
		||||
    ? [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "日" ? "昨日" : "本周",
 | 
			
		||||
          data: dataList ?? [],
 | 
			
		||||
        },
 | 
			
		||||
      ]
 | 
			
		||||
    : [
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year - 1}年` : `${year - 1}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[0] : [],
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          name: period == "年" ? `${year}年` : `${year}年${month}月`,
 | 
			
		||||
          data: dataList ? dataList[1] : [],
 | 
			
		||||
          // : Array.from({ length: 7 }, () => Math.floor(Math.random() * 1000)),
 | 
			
		||||
        },
 | 
			
		||||
      ];
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										38
									
								
								src/views/copilot/yield/components/StdOutput.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,38 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    filename: StdOutput.vue
 | 
			
		||||
    author: liubin
 | 
			
		||||
    date: 2024-04-17 09:55:12
 | 
			
		||||
    description: 
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <DoubleRingWrapperVue data-source="标准组件产出" :period="period" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import DoubleRingWrapperVue from "./sub/ring/DoubleRingWrapper.vue";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  name: "StdOutput",
 | 
			
		||||
  components: { DoubleRingWrapperVue },
 | 
			
		||||
  props: {
 | 
			
		||||
    period: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: "日",
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {};
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped lang="scss">
 | 
			
		||||
.flex-1 {
 | 
			
		||||
  flex: 1;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.stretch {
 | 
			
		||||
  align-self: stretch;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										149
									
								
								src/views/copilot/yield/components/sub/city/CityData.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,149 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    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>
 | 
			
		||||
							
								
								
									
										59
									
								
								src/views/copilot/yield/components/sub/city/CityItem.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,59 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    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 "../gradient/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>
 | 
			
		||||
							
								
								
									
										55
									
								
								src/views/copilot/yield/components/sub/city/CityName.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,55 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    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 "@/views/copilot/assets/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>
 | 
			
		||||
							
								
								
									
										127
									
								
								src/views/copilot/yield/components/sub/city/CityValue.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,127 @@
 | 
			
		||||
<!-- 
 | 
			
		||||
    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 "../gradient/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>
 | 
			
		||||