projects/mescc/zhp #12
@ -1,3 +1,3 @@
|
|||||||
.dockerignore
|
.dockerignore
|
||||||
dist
|
#dist
|
||||||
node_modules
|
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
|
8
.env.dev
@ -1,3 +1,10 @@
|
|||||||
|
###
|
||||||
|
# @Author: zhp
|
||||||
|
# @Date: 2024-04-28 13:42:51
|
||||||
|
# @LastEditTime: 2024-04-28 13:43:03
|
||||||
|
# @LastEditors: zhp
|
||||||
|
# @Description:
|
||||||
|
###
|
||||||
# 开发环境配置
|
# 开发环境配置
|
||||||
ENV = 'development'
|
ENV = 'development'
|
||||||
|
|
||||||
@ -5,6 +12,7 @@ ENV = 'development'
|
|||||||
VUE_APP_TITLE = 芋道管理系统
|
VUE_APP_TITLE = 芋道管理系统
|
||||||
|
|
||||||
# 芋道管理系统/开发环境
|
# 芋道管理系统/开发环境
|
||||||
|
# VUE_APP_BASE_API = 'http://192.168.1.61:48080'
|
||||||
VUE_APP_BASE_API = 'http://glass.kszny.picaiba.com'
|
VUE_APP_BASE_API = 'http://glass.kszny.picaiba.com'
|
||||||
|
|
||||||
# 路由懒加载
|
# 路由懒加载
|
||||||
|
@ -2,15 +2,15 @@
|
|||||||
NODE_ENV = 'production'
|
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
|
VUE_APP_TENANT_ENABLE = true
|
||||||
|
24
Dockerfile
@ -1,21 +1,3 @@
|
|||||||
FROM node:16-alpine as build-stage
|
FROM busybox
|
||||||
|
LABEL maintainer thomas.hairong@gmail.com
|
||||||
WORKDIR /admim
|
COPY dist /html/
|
||||||
|
|
||||||
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
|
|
||||||
|
@ -54,6 +54,8 @@
|
|||||||
"highlight.js": "^11.9.0",
|
"highlight.js": "^11.9.0",
|
||||||
"js-beautify": "^1.15.1",
|
"js-beautify": "^1.15.1",
|
||||||
"jsencrypt": "3.3.1",
|
"jsencrypt": "3.3.1",
|
||||||
|
"lodash": "^4.17.21",
|
||||||
|
"mockjs": "^1.1.0",
|
||||||
"moment": "^2.30.1",
|
"moment": "^2.30.1",
|
||||||
"nprogress": "0.2.0",
|
"nprogress": "0.2.0",
|
||||||
"quill": "^1.3.7",
|
"quill": "^1.3.7",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-26 14:53:45
|
* @Date: 2024-04-26 14:53:45
|
||||||
* @LastEditTime: 2024-04-26 15:01:12
|
* @LastEditTime: 2024-05-06 14:55:33
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-26 14:53:45
|
* @Date: 2024-04-26 14:53:45
|
||||||
* @LastEditTime: 2024-04-26 15:09:10
|
* @LastEditTime: 2024-05-06 14:53:04
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
|
32
src/api/produceData/index.js
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
/*
|
||||||
|
* @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
|
||||||
|
})
|
||||||
|
}
|
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
|
||||||
|
})
|
||||||
|
}
|
BIN
src/assets/YouSheBiaoTiHei-2.ttf
Normal file
BIN
src/assets/bgearth.png
Normal file
Before Width: | Height: | Size: 7.6 MiB After Width: | Height: | Size: 7.6 MiB |
BIN
src/assets/images/copilot-bg.png
Normal file
Before Width: | Height: | Size: 6.5 MiB After Width: | Height: | Size: 6.5 MiB |
BIN
src/assets/images/export-icon.png
Normal file
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
BIN
src/assets/images/full-icon.png
Normal file
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
BIN
src/assets/images/homeindex/bipv-icon.png
Normal file
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
BIN
src/assets/images/homeindex/chip-icon-2.png
Normal file
Before Width: | Height: | Size: 723 B After Width: | Height: | Size: 723 B |
BIN
src/assets/images/homeindex/chip-icon.png
Normal file
Before Width: | Height: | Size: 609 B After Width: | Height: | Size: 609 B |
BIN
src/assets/images/homeindex/exit-fullscreen.png
Normal file
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
BIN
src/assets/images/homeindex/fto-icon.png
Normal file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
BIN
src/assets/images/homeindex/fullscreen.png
Normal file
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
BIN
src/assets/images/homeindex/header-bg.png
Normal file
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
BIN
src/assets/images/homeindex/std-icon.png
Normal file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
BIN
src/assets/pinicon.png
Normal file
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
95
src/main.js
@ -9,67 +9,78 @@ import Vue from 'vue'
|
|||||||
import Element from 'element-ui'
|
import Element from 'element-ui'
|
||||||
|
|
||||||
// 修改如下样式文件,覆盖样式,或者新增样式文件
|
// 修改如下样式文件,覆盖样式,或者新增样式文件
|
||||||
import './assets/styles/element-variables.scss'
|
import "./assets/styles/element-variables.scss";
|
||||||
import '@/assets/styles/index.scss' // global css
|
import "@/assets/styles/index.scss"; // global css
|
||||||
import '@/assets/styles/ruoyi.scss' // ruoyi css
|
import "@/assets/styles/ruoyi.scss"; // ruoyi css
|
||||||
|
|
||||||
import App from './App'
|
import App from "./App";
|
||||||
import store from './store'
|
import store from "./store";
|
||||||
import router from './router'
|
import router from "./router";
|
||||||
import directive from './directive' // directive
|
import directive from "./directive"; // directive
|
||||||
import plugins from './plugins' // plugins
|
import plugins from "./plugins"; // plugins
|
||||||
|
|
||||||
import './assets/icons' // icon
|
import "./assets/icons"; // icon
|
||||||
import './permission' // permission control
|
import "./permission"; // permission control
|
||||||
import { getDicts } from "@/api/system/dict/data";
|
import { getDicts } from "@/api/system/dict/data";
|
||||||
import { parseTime, resetForm, handleTree, addBeginAndEndTime, divide } from "@/utils/ruoyi";
|
import {
|
||||||
|
parseTime,
|
||||||
|
resetForm,
|
||||||
|
handleTree,
|
||||||
|
addBeginAndEndTime,
|
||||||
|
divide,
|
||||||
|
} from "@/utils/ruoyi";
|
||||||
import Pagination from "@/components/Pagination";
|
import Pagination from "@/components/Pagination";
|
||||||
// 自定义表格工具扩展
|
// 自定义表格工具扩展
|
||||||
import RightToolbar from "@/components/RightToolbar"
|
import RightToolbar from "@/components/RightToolbar";
|
||||||
// 代码高亮插件
|
// 代码高亮插件
|
||||||
// import hljs from 'highlight.js'
|
// import hljs from 'highlight.js'
|
||||||
// import 'highlight.js/styles/github-gist.css'
|
// import 'highlight.js/styles/github-gist.css'
|
||||||
import { DICT_TYPE, getDictDataLabel, getDictDatas, getDictDatas2 } from "@/utils/dict";
|
import {
|
||||||
|
DICT_TYPE,
|
||||||
|
getDictDataLabel,
|
||||||
|
getDictDatas,
|
||||||
|
getDictDatas2,
|
||||||
|
} from "@/utils/dict";
|
||||||
import CodeBrickZj from 'code-brick-zj';
|
import CodeBrickZj from 'code-brick-zj';
|
||||||
import './theme/index.css'; // 自定义主题包 - code-brick-zj
|
import "./theme/index.css"; // 自定义主题包 - code-brick-zj
|
||||||
|
|
||||||
// 全局方法挂载
|
// 全局方法挂载
|
||||||
Vue.prototype.getDicts = getDicts
|
Vue.prototype.getDicts = getDicts;
|
||||||
Vue.prototype.parseTime = parseTime
|
Vue.prototype.parseTime = parseTime;
|
||||||
Vue.prototype.resetForm = resetForm
|
Vue.prototype.resetForm = resetForm;
|
||||||
Vue.prototype.getDictDatas = getDictDatas
|
Vue.prototype.getDictDatas = getDictDatas;
|
||||||
Vue.prototype.getDictDatas2 = getDictDatas2
|
Vue.prototype.getDictDatas2 = getDictDatas2;
|
||||||
Vue.prototype.getDictDataLabel = getDictDataLabel
|
Vue.prototype.getDictDataLabel = getDictDataLabel;
|
||||||
Vue.prototype.DICT_TYPE = DICT_TYPE
|
Vue.prototype.DICT_TYPE = DICT_TYPE;
|
||||||
Vue.prototype.handleTree = handleTree
|
Vue.prototype.handleTree = handleTree;
|
||||||
Vue.prototype.addBeginAndEndTime = addBeginAndEndTime
|
Vue.prototype.addBeginAndEndTime = addBeginAndEndTime;
|
||||||
Vue.prototype.divide = divide
|
Vue.prototype.divide = divide;
|
||||||
|
|
||||||
// 全局组件挂载
|
// 全局组件挂载
|
||||||
Vue.component('DictTag', DictTag)
|
Vue.component("DictTag", DictTag);
|
||||||
Vue.component('Pagination', Pagination)
|
Vue.component("Pagination", Pagination);
|
||||||
Vue.component('RightToolbar', RightToolbar)
|
Vue.component("RightToolbar", RightToolbar);
|
||||||
// 字典标签组件
|
// 字典标签组件
|
||||||
import DictTag from '@/components/DictTag'
|
import DictTag from "@/components/DictTag";
|
||||||
// 头部标签插件
|
// 头部标签插件
|
||||||
import VueMeta from 'vue-meta'
|
import VueMeta from "vue-meta";
|
||||||
|
|
||||||
Vue.use(directive)
|
Vue.use(directive)
|
||||||
Vue.use(plugins)
|
Vue.use(plugins)
|
||||||
Vue.use(VueMeta)
|
Vue.use(VueMeta)
|
||||||
Vue.use(CodeBrickZj);
|
Vue.use(CodeBrickZj);
|
||||||
// Form Generator 组件需要使用到 tinymce
|
// Form Generator 组件需要使用到 tinymce
|
||||||
import Tinymce from '@/components/tinymce/index.vue'
|
import Tinymce from "@/components/tinymce/index.vue";
|
||||||
Vue.component('tinymce', Tinymce)
|
Vue.component("tinymce", Tinymce);
|
||||||
import '@/assets/icons'
|
import "@/assets/icons";
|
||||||
import request from "@/utils/request"
|
import request from "@/utils/request";
|
||||||
console.log(request)
|
console.log(request);
|
||||||
Vue.prototype.$axios = request
|
Vue.prototype.$axios = request;
|
||||||
import '@/styles/index.scss'
|
import "@/styles/index.scss";
|
||||||
|
|
||||||
// 默认点击背景不关闭弹窗
|
// 默认点击背景不关闭弹窗
|
||||||
import ElementUI from 'element-ui'
|
import ElementUI from "element-ui";
|
||||||
ElementUI.Dialog.props.closeOnClickModal.default = false
|
ElementUI.Dialog.props.closeOnClickModal.default = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If you don't want to use mock-server
|
* If you don't want to use mock-server
|
||||||
@ -84,11 +95,11 @@ Vue.use(Element, {
|
|||||||
size: localStorage.getItem("size") || "medium", // set element-ui default size
|
size: localStorage.getItem("size") || "medium", // set element-ui default size
|
||||||
});
|
});
|
||||||
|
|
||||||
Vue.config.productionTip = false
|
Vue.config.productionTip = false;
|
||||||
|
|
||||||
new Vue({
|
new Vue({
|
||||||
el: '#app',
|
el: "#app",
|
||||||
router,
|
router,
|
||||||
store,
|
store,
|
||||||
render: h => h(App)
|
render: (h) => h(App),
|
||||||
})
|
});
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2022-08-24 11:19:43
|
* @Date: 2022-08-24 11:19:43
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2024-04-02 09:34:56
|
* @LastEditTime: 2024-04-09 16:56:16
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
import { listData } from "@/api/system/dict/data"; //数据字典接口
|
import { listData } from "@/api/system/dict/data"; //数据字典接口
|
||||||
@ -14,7 +14,7 @@ export default {
|
|||||||
createURL: '', //新增接口
|
createURL: '', //新增接口
|
||||||
updateURL: '', //编辑提交接口
|
updateURL: '', //编辑提交接口
|
||||||
infoURL: '', //编辑时获取单条数据接口
|
infoURL: '', //编辑时获取单条数据接口
|
||||||
codeURL: '', //获取code接口(返回结果为dataForm.code字段)
|
codeURL: null, //获取code接口(返回结果为dataForm.code字段)
|
||||||
optionArrUrl: [], //需要获取下拉框的方法数组
|
optionArrUrl: [], //需要获取下拉框的方法数组
|
||||||
optionArr: {}, //需要获取下拉框的方法数组的返回结果
|
optionArr: {}, //需要获取下拉框的方法数组的返回结果
|
||||||
dictNameList: [], //数据字典name数组
|
dictNameList: [], //数据字典name数组
|
||||||
@ -35,7 +35,7 @@ export default {
|
|||||||
if (this.urlOptions.optionArrUrl.length > 0) {
|
if (this.urlOptions.optionArrUrl.length > 0) {
|
||||||
this.getArr()
|
this.getArr()
|
||||||
}
|
}
|
||||||
if (this.urlOptions.dictNameList > 0) {
|
if (this.urlOptions.dictNameList.length > 0) {
|
||||||
this.getDict()
|
this.getDict()
|
||||||
}
|
}
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
@ -78,7 +78,7 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 查询字典数据列表 */
|
/** 查询字典数据列表 */
|
||||||
getDict() {
|
getDict() {
|
||||||
this.dictNameList.forEach((item,index)=>{
|
this.urlOptions.dictNameList.forEach((item,index)=>{
|
||||||
const queryParams = {
|
const queryParams = {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 99,
|
pageSize: 99,
|
||||||
|
101
src/mixins/chart.js
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
import * as echarts from "echarts";
|
||||||
|
|
||||||
|
function __resizeHandler(entries) {
|
||||||
|
for (const entry of entries) {
|
||||||
|
if (entry.contentBoxSize) {
|
||||||
|
// manipulate contentBoxSize
|
||||||
|
const contentBoxSize = Array.isArray(entry.contentBoxSize)
|
||||||
|
? entry.contentBoxSize[0]
|
||||||
|
: entry.contentBoxSize;
|
||||||
|
this.chart_mixin_chartInstance.resize({
|
||||||
|
width:
|
||||||
|
contentBoxSize.inlineSize < this.MIN_WIDTH
|
||||||
|
? this.MIN_WIDTH
|
||||||
|
: contentBoxSize.inlineSize,
|
||||||
|
height: contentBoxSize.blockSize,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// manipulate contentRect
|
||||||
|
this.chart_mixin_chartInstance.resize({
|
||||||
|
width:
|
||||||
|
entry.contentRect.width < this.MIN_WIDTH
|
||||||
|
? this.MIN_WIDTH
|
||||||
|
: entry.contentRect.width,
|
||||||
|
height: entry.contentRect.height,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
const resizeObserver = new ResizeObserver(__resizeHandler.bind(this));
|
||||||
|
|
||||||
|
return {
|
||||||
|
MIN_WIDTH: 400,
|
||||||
|
chart_mixin_chartInstance: null,
|
||||||
|
chart_mixin_observer: resizeObserver,
|
||||||
|
chart_mixin_options: {
|
||||||
|
grid: {
|
||||||
|
left: "3%",
|
||||||
|
right: "4%",
|
||||||
|
bottom: "3%",
|
||||||
|
containLabel: true,
|
||||||
|
},
|
||||||
|
tooltip: {},
|
||||||
|
legend: {
|
||||||
|
data: ["Sales"],
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
data: [
|
||||||
|
"shirt",
|
||||||
|
"cardign",
|
||||||
|
"chiffon shirt",
|
||||||
|
"pants",
|
||||||
|
"heels",
|
||||||
|
"socks",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
yAxis: {},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "Sales",
|
||||||
|
type: "bar",
|
||||||
|
data: [5, 20, 36, 10, 10, 20],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
// this.$nextTick(() => {
|
||||||
|
// this.initChart().then(() => {
|
||||||
|
// this.initOptions(this.chart_mixin_options);
|
||||||
|
// this.initListener();
|
||||||
|
// });
|
||||||
|
// });
|
||||||
|
this.initChart();
|
||||||
|
this.initListener();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
initChart() {
|
||||||
|
(this.$refs.chart ||
|
||||||
|
console.warn('[mixins/chart] 注意是否有 ref="chart" 的元素存在')) &&
|
||||||
|
(this.chart_mixin_chartInstance = echarts.init(this.$refs.chart));
|
||||||
|
// return new Promise((resolve, reject) => {
|
||||||
|
// this.$refs.chart ? resolve(true) : reject(false);
|
||||||
|
// });
|
||||||
|
},
|
||||||
|
initOptions(options) {
|
||||||
|
this.chart_mixin_chartInstance.setOption(options);
|
||||||
|
},
|
||||||
|
initListener() {
|
||||||
|
this.chart_mixin_observer.observe(this.$refs.chart);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
beforeDestroy() {
|
||||||
|
if (this.chart_mixin_chartInstance) {
|
||||||
|
this.chart_mixin_chartInstance.dispose();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
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]
|
||||||
|
}
|
||||||
|
}
|
23
src/mixins/fullscreen.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
import screenfull from "screenfull";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isFullscreen: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
/** 全屏状态切换时,对柱子粗细和字体大小进行相应调整 */
|
||||||
|
isFullscreen(val) {
|
||||||
|
// 暴露一个全屏状态改变的回调函数
|
||||||
|
this.fullscreenCallback(val);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
if (screenfull.isEnabled) {
|
||||||
|
screenfull.on("change", () => {
|
||||||
|
this.isFullscreen = screenfull.isFullscreen;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
@ -18,6 +18,9 @@ const getters = {
|
|||||||
defaultRoutes:state => state.permission.defaultRoutes,
|
defaultRoutes:state => state.permission.defaultRoutes,
|
||||||
sidebarRouters:state => state.permission.sidebarRouters,
|
sidebarRouters:state => state.permission.sidebarRouters,
|
||||||
// 数据字典
|
// 数据字典
|
||||||
dict_datas: state => state.dict.dictDatas
|
dict_datas: state => state.dict.dictDatas,
|
||||||
|
// 驾驶舱和首页
|
||||||
|
home: state => state.copilot.home,
|
||||||
|
copilot: state => state.copilot.copilot,
|
||||||
}
|
}
|
||||||
export default getters
|
export default getters
|
||||||
|
@ -6,6 +6,7 @@ import tagsView from './modules/tagsView'
|
|||||||
import permission from './modules/permission'
|
import permission from './modules/permission'
|
||||||
import settings from './modules/settings'
|
import settings from './modules/settings'
|
||||||
import dict from './modules/dict'
|
import dict from './modules/dict'
|
||||||
|
import copilot from './modules/home'
|
||||||
import getters from './getters'
|
import getters from './getters'
|
||||||
|
|
||||||
Vue.use(Vuex)
|
Vue.use(Vuex)
|
||||||
@ -17,7 +18,8 @@ const store = new Vuex.Store({
|
|||||||
tagsView,
|
tagsView,
|
||||||
permission,
|
permission,
|
||||||
settings,
|
settings,
|
||||||
dict
|
dict,
|
||||||
|
copilot
|
||||||
},
|
},
|
||||||
getters
|
getters
|
||||||
})
|
})
|
||||||
|
266
src/store/modules/home.js
Normal file
@ -0,0 +1,266 @@
|
|||||||
|
import axios from "@/utils/request";
|
||||||
|
import { deepClone } from "../../utils";
|
||||||
|
|
||||||
|
/* 状态 */
|
||||||
|
const state = {
|
||||||
|
copilot: {
|
||||||
|
/* 产量驾驶舱 */
|
||||||
|
yield: {
|
||||||
|
ftoInvest: null,
|
||||||
|
chipInvest: null,
|
||||||
|
chipOutput: null,
|
||||||
|
stdOutput: null,
|
||||||
|
bipvOutput: null,
|
||||||
|
},
|
||||||
|
/* 能源驾驶舱 */
|
||||||
|
energy: {},
|
||||||
|
/* 效率驾驶舱 */
|
||||||
|
efficiency: {},
|
||||||
|
},
|
||||||
|
home: {
|
||||||
|
ftoInvest: null,
|
||||||
|
chipInvest: null,
|
||||||
|
chipOutput: null,
|
||||||
|
stdOutput: null,
|
||||||
|
bipvOutput: null,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const mutations = {
|
||||||
|
SET_HOME_INFO: (state, payload) => {
|
||||||
|
state.home.ftoInvest = payload.ftoInvest;
|
||||||
|
state.home.chipInvest = payload.chipInvest;
|
||||||
|
state.home.chipOutput = payload.chipOutput;
|
||||||
|
state.home.stdOutput = payload.stdOutput;
|
||||||
|
state.home.bipvOutput = payload.bipvOutput;
|
||||||
|
},
|
||||||
|
SET_COPILOT_INFO: (state, { type, payload }) => {
|
||||||
|
switch (type) {
|
||||||
|
case "yield":
|
||||||
|
state.copilot.yield.ftoInvest = payload.ftoInvest;
|
||||||
|
state.copilot.yield.chipInvest = payload.chipInvest;
|
||||||
|
state.copilot.yield.chipOutput = payload.chipOutput;
|
||||||
|
state.copilot.yield.stdOutput = payload.stdOutput;
|
||||||
|
state.copilot.yield.bipvOutput = payload.bipvOutput;
|
||||||
|
break;
|
||||||
|
case "energy":
|
||||||
|
state.copilot.energy = payload.data;
|
||||||
|
break;
|
||||||
|
case "efficiency":
|
||||||
|
state.copilot.efficiency = payload.data;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const actions = {
|
||||||
|
/** 初始化首页数据 */
|
||||||
|
async initHome({ commit }) {
|
||||||
|
const dataArr = await getHomeInfo();
|
||||||
|
const targetArr = await getHomeTarget();
|
||||||
|
const payload = splitCurrentAndPrevious(dataArr, targetArr);
|
||||||
|
commit("SET_HOME_INFO", payload);
|
||||||
|
},
|
||||||
|
/** 初始化驾驶舱数据 */
|
||||||
|
async initCopilot({ commit }, { period, source }) {
|
||||||
|
const fetcher = {
|
||||||
|
yield: getCopilotYield,
|
||||||
|
energy: null,
|
||||||
|
efficiency: null,
|
||||||
|
}[source];
|
||||||
|
// 获取产量数据
|
||||||
|
let { data: factoryList, type } = await fetcher(period);
|
||||||
|
let targetList = null;
|
||||||
|
if (source === "yield") {
|
||||||
|
// 获取目标数据
|
||||||
|
let { data } = await fetcher(period, true);
|
||||||
|
targetList = data;
|
||||||
|
}
|
||||||
|
const payload = splitCurrentAndPrevious(factoryList, targetList);
|
||||||
|
commit("SET_COPILOT_INFO", { type, payload });
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
namespaced: true,
|
||||||
|
state,
|
||||||
|
mutations,
|
||||||
|
actions,
|
||||||
|
};
|
||||||
|
|
||||||
|
// utils function
|
||||||
|
function splitCurrentAndPrevious(factoryListResponse, targetListResponse) {
|
||||||
|
const { chipInvest, ftoInvest, chipOutput, stdOutput, bipvOutput } = init();
|
||||||
|
if (factoryListResponse) {
|
||||||
|
for (const factory of factoryListResponse) {
|
||||||
|
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(),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function init() {
|
||||||
|
const t_ = {
|
||||||
|
current: Array(7).fill(0),
|
||||||
|
previous: Array(7).fill(0),
|
||||||
|
};
|
||||||
|
// 芯片投入
|
||||||
|
const chipInvest = deepClone(t_);
|
||||||
|
// FTO投入
|
||||||
|
const ftoInvest = deepClone(t_);
|
||||||
|
// 芯片产出
|
||||||
|
const chipOutput = {
|
||||||
|
...deepClone(t_),
|
||||||
|
target: Array(7).fill(0),
|
||||||
|
};
|
||||||
|
// 标准组件产出
|
||||||
|
const stdOutput = deepClone(chipOutput);
|
||||||
|
// BIPV产出
|
||||||
|
const bipvOutput = deepClone(chipOutput);
|
||||||
|
|
||||||
|
return {
|
||||||
|
chipInvest,
|
||||||
|
ftoInvest,
|
||||||
|
chipOutput,
|
||||||
|
stdOutput,
|
||||||
|
bipvOutput,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function random_default() {
|
||||||
|
return 0;
|
||||||
|
let a = Math.floor(Math.random() * 1000);
|
||||||
|
while (a < 600) {
|
||||||
|
a = Math.floor(Math.random() * 1000);
|
||||||
|
}
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 接口 */
|
||||||
|
async function getHomeInfo() {
|
||||||
|
const { code, data } = await axios.post("/ip/prod-output/query-by-date", {
|
||||||
|
factorys: [],
|
||||||
|
date: 4,
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
console.warn("getHomeInfo failed, code: ", code);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getHomeTarget() {
|
||||||
|
const { code, data } = await axios.post("/ip/prod-target/query-by-date", {
|
||||||
|
factorys: [],
|
||||||
|
date: 4,
|
||||||
|
});
|
||||||
|
if (code == 0) {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
console.warn("getHomeTarget failed, code: ", code);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function fetcher(type = "yield", params) {
|
||||||
|
const { code, data } = await axios.post(
|
||||||
|
type == "yield"
|
||||||
|
? // 产量 数据
|
||||||
|
"/ip/prod-output/query-by-date"
|
||||||
|
: // 目标数据
|
||||||
|
"/ip/prod-target/query-by-date",
|
||||||
|
{
|
||||||
|
...params,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
if (code == 0) {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
console.warn("getCopilotYield failed, code: ", code);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {*} period 周期: 日周月年
|
||||||
|
* @param {*} target 是否获取目标数据:默认 否
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
async function getCopilotYield(period, target = false) {
|
||||||
|
// 请求参数,直接一次性获取所有工厂
|
||||||
|
let queryParams = {
|
||||||
|
factorys: [],
|
||||||
|
date: 4,
|
||||||
|
};
|
||||||
|
|
||||||
|
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 fetcher(target ? "target" : "yield", queryParams),
|
||||||
|
type: "yield",
|
||||||
|
};
|
||||||
|
}
|
69
src/views/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>
|
226
src/views/copilot/components/Container.vue
Normal file
@ -0,0 +1,226 @@
|
|||||||
|
<!--
|
||||||
|
filename: Container.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-09 10:44:09
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="copilot-container">
|
||||||
|
<!-- refresh btn -->
|
||||||
|
<button
|
||||||
|
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>
|
58
src/views/copilot/components/ContainerIcon.vue
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<!--
|
||||||
|
filename: ContainerIcon.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-09 16:41:36
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="container-icon" :style="bgStyle"></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
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 std from "@/assets/images/homeindex/std-icon.png";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "ContainerIcon",
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
icon: {
|
||||||
|
type: String,
|
||||||
|
default: "cube",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
bgStyle() {
|
||||||
|
return {
|
||||||
|
cube:
|
||||||
|
"background: url(" + cube + ") no-repeat center center / 100% 100%",
|
||||||
|
chip:
|
||||||
|
"background: url(" + chip + ") no-repeat center center / 100% 100%",
|
||||||
|
chip2:
|
||||||
|
"background: url(" + chip2 + ") no-repeat center center / 100% 100%",
|
||||||
|
bipv:
|
||||||
|
"background: url(" + bipv + ") no-repeat center center / 100% 100%",
|
||||||
|
std: "background: url(" + std + ") 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>
|
127
src/views/copilot/components/CopilotHeader.vue
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
<!--
|
||||||
|
filename: CopilotHeader.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-16 15:14:01
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="copilot-header">
|
||||||
|
<section class="menu">
|
||||||
|
<CopilotButton
|
||||||
|
v-for="i in ['产量', '效率', '能源']"
|
||||||
|
:key="i"
|
||||||
|
:label="i"
|
||||||
|
:active="i === active"
|
||||||
|
@click="() => $emit('update:active', i)"
|
||||||
|
/>
|
||||||
|
</section>
|
||||||
|
<section class="menu">
|
||||||
|
<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">{{ active }}驾驶舱</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import CopilotButton from "./button.vue";
|
||||||
|
import screenfull from "screenfull";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "CopilotHeader",
|
||||||
|
components: { CopilotButton },
|
||||||
|
props: {
|
||||||
|
active: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
period: {
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isFullscreen: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
methods: {
|
||||||
|
toggleFullScreen() {
|
||||||
|
this.isFullscreen = !this.isFullscreen;
|
||||||
|
|
||||||
|
screenfull.toggle(document.querySelector(".copilot-layout"));
|
||||||
|
// 矫正宽度
|
||||||
|
// const el = document.querySelector(".copilot-layout");
|
||||||
|
// el.style.width = this.isFullscreen ? "100vw" : "calc(100vw - 54px)";
|
||||||
|
// el.style.left = this.isFullscreen ? "0" : "54px";
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
@font-face {
|
||||||
|
font-family: 优设标题黑;
|
||||||
|
src: url(../../../assets/YouSheBiaoTiHei-2.ttf);
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-header {
|
||||||
|
display: flex;
|
||||||
|
gap: 12px;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-header > section {
|
||||||
|
width: 24vw;
|
||||||
|
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: 54px;
|
||||||
|
line-height: 70px;
|
||||||
|
letter-spacing: 5px;
|
||||||
|
font-family: 优设标题黑;
|
||||||
|
color: #6db6ff;
|
||||||
|
text-align: right;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
</style>
|
90
src/views/copilot/components/button.vue
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
<!--
|
||||||
|
filename: button.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-16 15:02:34
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<button
|
||||||
|
class="copilot-btn"
|
||||||
|
:class="[active ? 'active' : '']"
|
||||||
|
@click="$emit('click', label)"
|
||||||
|
>
|
||||||
|
{{ label }}
|
||||||
|
</button>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "CopilotButton",
|
||||||
|
props: {
|
||||||
|
label: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
active: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
button {
|
||||||
|
appearance: none;
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.copilot-btn {
|
||||||
|
flex: 1;
|
||||||
|
position: relative;
|
||||||
|
background: #006acd40;
|
||||||
|
backdrop-filter: blur(3px);
|
||||||
|
text-align: center;
|
||||||
|
padding: 12px;
|
||||||
|
padding-left: 20px;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 22px;
|
||||||
|
letter-spacing: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-btn.active {
|
||||||
|
background: linear-gradient(
|
||||||
|
to top,
|
||||||
|
#159aff99,
|
||||||
|
#159aff44,
|
||||||
|
#006acd40
|
||||||
|
) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-btn::before,
|
||||||
|
.copilot-btn::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;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-btn::before {
|
||||||
|
left: 0;
|
||||||
|
border-left-color: #007be4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-btn::after {
|
||||||
|
right: 0;
|
||||||
|
border-right-color: #007be4;
|
||||||
|
}
|
||||||
|
</style>
|
38
src/views/copilot/components/charts/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 "./base/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/components/charts/ChipInvest.vue
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
<!--
|
||||||
|
filename: FtoInvest.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-10 08:59:28
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<bar-chart-base
|
||||||
|
:legend="legend"
|
||||||
|
:series="series"
|
||||||
|
:xAxis="xAxis"
|
||||||
|
in="ChipInvest"
|
||||||
|
class="chip-invest-chart"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import BarChartBase from "./base/BarChartBase.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "ChipInvest",
|
||||||
|
components: { BarChartBase },
|
||||||
|
data() {
|
||||||
|
// 城市数组的顺序必须是固定的
|
||||||
|
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
|
||||||
|
return {
|
||||||
|
xAxis: cities,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
period: {
|
||||||
|
type: String,
|
||||||
|
default: "日",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
legend() {
|
||||||
|
switch (this.period) {
|
||||||
|
case "日":
|
||||||
|
return [{ label: "昨日", color: "#12f7f1" }];
|
||||||
|
case "周":
|
||||||
|
return [{ label: "本周", color: "#12f7f1" }];
|
||||||
|
case "月": {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
const month = new Date().getMonth() + 1;
|
||||||
|
return [
|
||||||
|
{ label: `${year - 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>
|
38
src/views/copilot/components/charts/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 "./base/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/components/charts/FtoInvest.vue
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
<!--
|
||||||
|
filename: FtoInvest.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-10 08:59:28
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<bar-chart-base
|
||||||
|
:legend="legend"
|
||||||
|
:series="series"
|
||||||
|
:xAxis="xAxis"
|
||||||
|
in="ftoInvest"
|
||||||
|
class="fto-chart"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import BarChartBase from "./base/BarChartBase.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "FtoInvest",
|
||||||
|
components: { BarChartBase },
|
||||||
|
data() {
|
||||||
|
// 城市数组的顺序必须是固定的
|
||||||
|
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
|
||||||
|
return {
|
||||||
|
xAxis: cities,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
period: {
|
||||||
|
type: String,
|
||||||
|
default: "日",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
legend() {
|
||||||
|
switch (this.period) {
|
||||||
|
case "日":
|
||||||
|
return [{ label: "昨日", color: "#12f7f1" }];
|
||||||
|
case "周":
|
||||||
|
return [{ label: "本周", color: "#12f7f1" }];
|
||||||
|
case "月": {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
const month = new Date().getMonth() + 1;
|
||||||
|
return [
|
||||||
|
{ label: `${year - 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>
|
38
src/views/copilot/components/charts/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 "./base/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>
|
257
src/views/copilot/components/charts/base/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 ChartContainerVue from "../../../../components/ChartContainer.vue";
|
||||||
|
import chartMixin from "@/mixins/chart.js";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "BarChartBase",
|
||||||
|
components: {
|
||||||
|
ChartContainer: ChartContainerVue,
|
||||||
|
},
|
||||||
|
mixins: [chartMixin],
|
||||||
|
props: {
|
||||||
|
vHeight: {
|
||||||
|
type: Number,
|
||||||
|
default: 34,
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
series: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
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>
|
148
src/views/copilot/components/charts/base/CityData.vue
Normal file
@ -0,0 +1,148 @@
|
|||||||
|
<!--
|
||||||
|
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>
|
58
src/views/copilot/components/charts/base/CityItem.vue
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<!--
|
||||||
|
filename: CityItem.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-17 09:55:12
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="city-item inner-shadow">
|
||||||
|
<CityName :value="location" />
|
||||||
|
<CityValue :value="value+''" :period="period" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import CityNameVue from "./CityName.vue";
|
||||||
|
import CityValueVue from "./CityValue.vue";
|
||||||
|
import GradientTextVue from "./GradientText.vue";
|
||||||
|
export default {
|
||||||
|
name: "CityItem",
|
||||||
|
components: {
|
||||||
|
GradientTextVue,
|
||||||
|
CityName: CityNameVue,
|
||||||
|
CityValue: CityValueVue,
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
location: {
|
||||||
|
type: String,
|
||||||
|
default: "",
|
||||||
|
},
|
||||||
|
value: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
period: {
|
||||||
|
type: String,
|
||||||
|
default: "日",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
mounted() {},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.city-item {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inner-shadow {
|
||||||
|
box-shadow: inset 0 0 12px 2px #fff3;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
</style>
|
55
src/views/copilot/components/charts/base/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 "./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/components/charts/base/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 "./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>
|
220
src/views/copilot/components/charts/base/DoubleRingChart.vue
Normal file
@ -0,0 +1,220 @@
|
|||||||
|
<!--
|
||||||
|
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 "./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],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
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 "../../select.vue";
|
||||||
|
import DoubleRingChartVue from "./DoubleRingChart.vue";
|
||||||
|
import CityData from "./CityData.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "DoubleRingWrapper",
|
||||||
|
components: { CopilotSelect, DoubleRingChartVue, CityData },
|
||||||
|
props: {
|
||||||
|
dataSource: {
|
||||||
|
type: String,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
period: {
|
||||||
|
type: String,
|
||||||
|
default: "日",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
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>
|
64
src/views/copilot/components/charts/base/GradientText.vue
Normal file
@ -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,145 @@
|
|||||||
|
export default ({
|
||||||
|
titleValue,
|
||||||
|
subtitle,
|
||||||
|
previousSum,
|
||||||
|
currentSum,
|
||||||
|
targetSum,
|
||||||
|
}) => ({
|
||||||
|
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",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
// 背景 series
|
||||||
|
{
|
||||||
|
type: "pie",
|
||||||
|
name: "当前目标",
|
||||||
|
radius: ["70%", "85%"],
|
||||||
|
center: ["50%", "52%"],
|
||||||
|
emptyCircleStyle: {
|
||||||
|
color: "#042c5f33",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// 数据 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: [
|
||||||
|
{ offset: 0, color: "#4CF0E811" },
|
||||||
|
{ offset: 1, color: "#4CF0E8" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value:
|
||||||
|
targetSum > currentSum
|
||||||
|
? targetSum - currentSum
|
||||||
|
: targetSum == 0
|
||||||
|
? currentSum == 0
|
||||||
|
? 1
|
||||||
|
: 0
|
||||||
|
: 0,
|
||||||
|
|
||||||
|
name: "未达成累计",
|
||||||
|
itemStyle: { color: "transparent" },
|
||||||
|
label: { show: false },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// 数据 series2 - 2023累计
|
||||||
|
{
|
||||||
|
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: "-",
|
||||||
|
itemStyle: { color: "transparent" },
|
||||||
|
label: { show: false },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
@ -0,0 +1,10 @@
|
|||||||
|
export default {
|
||||||
|
getData: async function (url) {
|
||||||
|
//
|
||||||
|
return await new Promise((resolve, reject) => {
|
||||||
|
setTimeout(() => {
|
||||||
|
resolve([90119, 40801, 44028]);
|
||||||
|
}, 1200);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
BIN
src/views/copilot/components/charts/base/icon.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
0
src/views/copilot/components/name.vue
Normal file
94
src/views/copilot/components/select.vue
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
<!--
|
||||||
|
filename: select.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-17 09:50:03
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div style="display: inline-block; text-align: center">
|
||||||
|
<div class="copilot-select">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
v-for="item in options"
|
||||||
|
:key="item"
|
||||||
|
@click="currentActive = item"
|
||||||
|
:class="[item == currentActive ? 'active' : '']"
|
||||||
|
>
|
||||||
|
{{ item }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "CopilotSelect",
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
options: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
currentActive: this.options[0],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
currentActive: {
|
||||||
|
handler(val) {
|
||||||
|
this.$emit(
|
||||||
|
"update:active",
|
||||||
|
[
|
||||||
|
"瑞昌",
|
||||||
|
"邯郸",
|
||||||
|
"株洲",
|
||||||
|
"佳木斯",
|
||||||
|
"成都",
|
||||||
|
"凯盛光伏",
|
||||||
|
"蚌埠兴科",
|
||||||
|
].indexOf(val)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.copilot-select {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
background: #01306c;
|
||||||
|
border-radius: 4px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
color: #fff;
|
||||||
|
padding: 8px 12px;
|
||||||
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.active,
|
||||||
|
button:hover {
|
||||||
|
background: #1d74d8;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:not(:first-child)::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 20%;
|
||||||
|
left: -1px;
|
||||||
|
width: 2px;
|
||||||
|
height: 60%;
|
||||||
|
background: #02236d;
|
||||||
|
}
|
||||||
|
</style>
|
84
src/views/copilot/container.vue
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
<!--
|
||||||
|
filename: container.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-16 14:51:25
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="copilot-layout">
|
||||||
|
<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" />
|
||||||
|
<EfficiencyCopilot v-if="page == '效率'" :period="period" />
|
||||||
|
|
||||||
|
<div class="copilot-footer">© 中建材智能自动化研究院有限公司</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import CopilotHeaderVue from "./components/CopilotHeader.vue";
|
||||||
|
import YieldCopilot from "./yield/index.vue";
|
||||||
|
import EnergyCopilot from "./energy/index.vue";
|
||||||
|
import EfficiencyCopilot from "./efficiency/index.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "CopilotContainer",
|
||||||
|
components: {
|
||||||
|
CopilotHeaderVue,
|
||||||
|
YieldCopilot,
|
||||||
|
EnergyCopilot,
|
||||||
|
EfficiencyCopilot,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
page: "产量",
|
||||||
|
period: "日",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
// 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;
|
||||||
|
width: calc(100% + 30px);
|
||||||
|
z-index: 1001;
|
||||||
|
color: #fff;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-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>
|
42
src/views/copilot/efficiency/index.vue
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
<!--
|
||||||
|
filename: index.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-16 14:40:15
|
||||||
|
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>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Container from "../../dashboard/components/Container.vue";
|
||||||
|
export default {
|
||||||
|
name: "EfficiencyCopilot",
|
||||||
|
components: { DbContainer: Container },
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.efficiency-copilot {
|
||||||
|
flex: 1;
|
||||||
|
display: grid;
|
||||||
|
gap: 16px;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
grid-template-rows: 1fr 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.efficiency-copilot > div {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
25
src/views/copilot/energy/index.vue
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<!--
|
||||||
|
filename: index.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-16 14:40:15
|
||||||
|
description: 能源驾驶舱
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="energy-copilot">能源驾驶舱</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "EnergyCopilot",
|
||||||
|
components: {},
|
||||||
|
props: {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped></style>
|
94
src/views/copilot/yield/index.vue
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
<!--
|
||||||
|
filename: index.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-16 14:40:15
|
||||||
|
description: 产量驾驶舱
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="yield-copilot">
|
||||||
|
<section class="top flex">
|
||||||
|
<db-container class="std-yield" title="标准组件产出" icon="std">
|
||||||
|
<std-output :period="period" />
|
||||||
|
</db-container>
|
||||||
|
<db-container class="chip-yield" title="芯片产出" icon="chip2">
|
||||||
|
<chip-output :period="period" />
|
||||||
|
</db-container>
|
||||||
|
<db-container class="bipv-yield" title="BIPV产出" icon="bipv">
|
||||||
|
<bipv-output :period="period" />
|
||||||
|
</db-container>
|
||||||
|
</section>
|
||||||
|
<section class="bottom flex">
|
||||||
|
<db-container class="fto-involve" title="FTO投入">
|
||||||
|
<fto-invest :period="period" />
|
||||||
|
</db-container>
|
||||||
|
<db-container class="chip-involve" title="芯片投入" icon="chip">
|
||||||
|
<chip-invest :period="period" />
|
||||||
|
</db-container>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Container from "../components/Container.vue";
|
||||||
|
import StdOutputVue from "../components/charts/StdOutput.vue";
|
||||||
|
import ChipOutputVue from "../components/charts/ChipOutput.vue";
|
||||||
|
import FtoInvestVue from "../components/charts/FtoInvest.vue";
|
||||||
|
import BipvOutputVue from "../components/charts/BipvOutput.vue";
|
||||||
|
import ChipInvestVue from "../components/charts/ChipInvest.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "YieldCopilot",
|
||||||
|
components: {
|
||||||
|
DbContainer: Container,
|
||||||
|
StdOutput: StdOutputVue,
|
||||||
|
ChipOutput: ChipOutputVue,
|
||||||
|
BipvOutput: BipvOutputVue,
|
||||||
|
FtoInvest: FtoInvestVue,
|
||||||
|
ChipInvest: ChipInvestVue,
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
period: {
|
||||||
|
type: String,
|
||||||
|
default: "日",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
period: {
|
||||||
|
handler(val) {
|
||||||
|
val && this.fetchData(val);
|
||||||
|
},
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
fetchData(period = "日") {
|
||||||
|
console.log(`产量驾驶舱,获取${period}数据`);
|
||||||
|
this.$store.dispatch("copilot/initCopilot", { period, source: "yield" });
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.yield-copilot {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flex {
|
||||||
|
display: flex;
|
||||||
|
gap: 16px;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.top > div,
|
||||||
|
.bottom > div {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-15 10:49:13
|
* @Date: 2024-04-15 10:49:13
|
||||||
* @LastEditTime: 2024-04-26 15:06:28
|
* @LastEditTime: 2024-05-06 14:55:56
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@ -49,9 +49,9 @@ export default {
|
|||||||
listQuery: {
|
listQuery: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 10,
|
size: 10,
|
||||||
factoryId: null,
|
// factoryId: null,
|
||||||
total: 0,
|
// total: 0,
|
||||||
type: null,
|
// type: null,
|
||||||
// reportType: 2,
|
// reportType: 2,
|
||||||
reportTime: []
|
reportTime: []
|
||||||
},
|
},
|
||||||
|
89
src/views/dashboard/charts/Bipv.vue
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
<!--
|
||||||
|
filename: Bipv.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-10 15:39:54
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<right-chart-base
|
||||||
|
:legend="legend"
|
||||||
|
:series="series"
|
||||||
|
:xAxis="xAxis"
|
||||||
|
:vHeight="20.5"
|
||||||
|
class="bipv-chart"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import RightChartBase from "./RightChartBase.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "BipvChart",
|
||||||
|
components: { RightChartBase },
|
||||||
|
data() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
// 城市数组的顺序必须是固定的
|
||||||
|
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
|
||||||
|
return {
|
||||||
|
legend: [
|
||||||
|
{ label: `${year}年目标值`, color: "#f3c000" },
|
||||||
|
{ label: `${year - 1}年`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年`, color: "#58adfa" },
|
||||||
|
],
|
||||||
|
xAxis: cities,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
series() {
|
||||||
|
const bipvOutput = this.$store.getters.home.bipvOutput;
|
||||||
|
// const bipvTarget = this.$store.getters.home.bipvTarget;
|
||||||
|
|
||||||
|
if (
|
||||||
|
!bipvOutput ||
|
||||||
|
!bipvOutput.current ||
|
||||||
|
!bipvOutput.previous ||
|
||||||
|
!bipvOutput.target
|
||||||
|
) {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: "样例数据--2024年目标值",
|
||||||
|
data: Array.from({ length: 7 }, () =>
|
||||||
|
Math.floor(Math.random() * 1000)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "样例数据--2023年",
|
||||||
|
data: Array.from({ length: 7 }, () =>
|
||||||
|
Math.floor(Math.random() * 1000)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "样例数据--2024年",
|
||||||
|
data: Array.from({ length: 7 }, () =>
|
||||||
|
Math.floor(Math.random() * 1000)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear()}年目标值`,
|
||||||
|
data: bipvOutput.target,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear() - 1}年`,
|
||||||
|
data: bipvOutput.previous,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear()}年`,
|
||||||
|
data: bipvOutput.current,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss"></style>
|
70
src/views/dashboard/charts/ChipInvest.vue
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<!--
|
||||||
|
filename: chip-invest.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-10 08:59:28
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<left-chart-base
|
||||||
|
:legend="legend"
|
||||||
|
:series="series"
|
||||||
|
:xAxis="xAxis"
|
||||||
|
class="chip-invest-chart"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import LeftChartBase from "./LeftChartBase.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "chip-investChart",
|
||||||
|
components: { LeftChartBase },
|
||||||
|
data() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
// 城市数组的顺序必须是固定的
|
||||||
|
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
|
||||||
|
return {
|
||||||
|
legend: [
|
||||||
|
{ label: `${year - 1}年`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年`, color: "#58adfa" },
|
||||||
|
],
|
||||||
|
xAxis: cities,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
series() {
|
||||||
|
const chipInvest = this.$store.getters.home.chipInvest;
|
||||||
|
console.log("FTO ==> ", chipInvest);
|
||||||
|
|
||||||
|
if (!chipInvest || !chipInvest.current || !chipInvest.previous) {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: "样例数据--2023年",
|
||||||
|
data: Array.from({ length: 7 }, () =>
|
||||||
|
Math.floor(Math.random() * 1000)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "样例数据--2024年",
|
||||||
|
data: Array.from({ length: 7 }, () =>
|
||||||
|
Math.floor(Math.random() * 1000)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear() - 1}年`,
|
||||||
|
data: chipInvest.previous,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear()}年`,
|
||||||
|
data: chipInvest.current,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
231
src/views/dashboard/charts/ChipYield.vue
Normal file
@ -0,0 +1,231 @@
|
|||||||
|
<!--
|
||||||
|
filename: ChipYield.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-11 10:46:47
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="chip-yield">
|
||||||
|
<chip-yield-chart :factory="activeLoc" />
|
||||||
|
<section class="right-part">
|
||||||
|
<div class="yield-location">
|
||||||
|
<section class="btn-group">
|
||||||
|
<button
|
||||||
|
@click="activeLoc = '1'"
|
||||||
|
:class="activeLoc === '1' ? 'active' : ''"
|
||||||
|
>
|
||||||
|
成都
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
@click="activeLoc = '2'"
|
||||||
|
:class="activeLoc === '2' ? 'active' : ''"
|
||||||
|
>
|
||||||
|
邯郸
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
@click="activeLoc = '3'"
|
||||||
|
:class="activeLoc === '3' ? 'active' : ''"
|
||||||
|
>
|
||||||
|
株洲
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
@click="activeLoc = '4'"
|
||||||
|
:class="activeLoc === '4' ? 'active' : ''"
|
||||||
|
>
|
||||||
|
瑞昌
|
||||||
|
</button>
|
||||||
|
</section>
|
||||||
|
<section class="btn-group">
|
||||||
|
<button
|
||||||
|
@click="activeLoc = '5'"
|
||||||
|
:class="activeLoc === '5' ? 'active' : ''"
|
||||||
|
class="fixwidth"
|
||||||
|
>
|
||||||
|
佳木斯
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
@click="activeLoc = '6'"
|
||||||
|
:class="activeLoc === '6' ? 'active' : ''"
|
||||||
|
>
|
||||||
|
凯盛光伏
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
@click="activeLoc = '7'"
|
||||||
|
:class="activeLoc === '7' ? 'active' : ''"
|
||||||
|
>
|
||||||
|
蚌埠兴科
|
||||||
|
</button>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<div class="yield-summary">
|
||||||
|
<div class="legend">
|
||||||
|
<span class="legend-label">2024年累计</span>
|
||||||
|
<span class="legend-value deep-green">{{ output.current }}</span>
|
||||||
|
</div>
|
||||||
|
<div class="legend">
|
||||||
|
<span class="legend-label">2024年目标</span>
|
||||||
|
<span class="legend-value">{{ output.target }}</span>
|
||||||
|
</div>
|
||||||
|
<div class="legend">
|
||||||
|
<span class="legend-label">2023年累计</span>
|
||||||
|
<span class="legend-value deep-blue">{{ output.previous }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import ChipYieldChart from "./ChipYieldChart.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "ChipYield",
|
||||||
|
components: { ChipYieldChart },
|
||||||
|
props: {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
activeLoc: "1",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
output() {
|
||||||
|
// ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"]
|
||||||
|
const chipOutput = this.$store.getters.home.chipOutput;
|
||||||
|
if (
|
||||||
|
!chipOutput ||
|
||||||
|
!chipOutput.target ||
|
||||||
|
!chipOutput.current ||
|
||||||
|
!chipOutput.previous
|
||||||
|
)
|
||||||
|
return {
|
||||||
|
target: 0,
|
||||||
|
current: 0,
|
||||||
|
previous: 0,
|
||||||
|
};
|
||||||
|
const index =
|
||||||
|
this.activeLoc == "1"
|
||||||
|
? 4
|
||||||
|
: this.activeLoc == "2"
|
||||||
|
? 1
|
||||||
|
: this.activeLoc == "3"
|
||||||
|
? 2
|
||||||
|
: this.activeLoc == "4"
|
||||||
|
? 0
|
||||||
|
: this.activeLoc == "5"
|
||||||
|
? 3
|
||||||
|
: this.activeLoc == "6"
|
||||||
|
? 5
|
||||||
|
: 6;
|
||||||
|
return {
|
||||||
|
target: parseInt(chipOutput.target[index]).toLocaleString(),
|
||||||
|
current: parseInt(chipOutput.current[index]).toLocaleString(),
|
||||||
|
previous: parseInt(chipOutput.previous[index]).toLocaleString(),
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.chip-yield {
|
||||||
|
height: 0;
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
gap: 12px;
|
||||||
|
|
||||||
|
.yield-location {
|
||||||
|
margin-top: 2.2vh;
|
||||||
|
|
||||||
|
.btn-group {
|
||||||
|
margin-top: 8px;
|
||||||
|
display: flex;
|
||||||
|
border-radius: 4px;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
button {
|
||||||
|
flex: 1;
|
||||||
|
appearance: none;
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
cursor: pointer;
|
||||||
|
background: #01306c;
|
||||||
|
color: #fff;
|
||||||
|
padding: 8px 6px;
|
||||||
|
font-size: 0.63vw;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.fixwidth {
|
||||||
|
flex: unset;
|
||||||
|
width: 2.765vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:not(:first-child)::before {
|
||||||
|
content: "";
|
||||||
|
display: inline-block;
|
||||||
|
width: 2px;
|
||||||
|
height: 60%;
|
||||||
|
background: #052141;
|
||||||
|
position: absolute;
|
||||||
|
top: 20%;
|
||||||
|
left: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.active {
|
||||||
|
background: #1d74d8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.yield-summary {
|
||||||
|
margin-top: 3vh;
|
||||||
|
display: grid;
|
||||||
|
gap: 0.56vw;
|
||||||
|
grid-auto-rows: 40px;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
|
||||||
|
.legend {
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 1px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
font-size: 0.725vw;
|
||||||
|
padding-left: 0.88vw;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 20%;
|
||||||
|
left: 0;
|
||||||
|
width: 0.52vw;
|
||||||
|
height: 0.52vw;
|
||||||
|
border-radius: 2px;
|
||||||
|
background: #ccc;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:first-child::before {
|
||||||
|
background: #11f0e8;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:nth-child(2)::before {
|
||||||
|
background: #003982;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:last-child::before {
|
||||||
|
background: #0551c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deep-blue {
|
||||||
|
color: #0551c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
.deep-green {
|
||||||
|
color: #11f0e8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
269
src/views/dashboard/charts/ChipYieldChart.vue
Normal file
@ -0,0 +1,269 @@
|
|||||||
|
<!--
|
||||||
|
filename: ChipYield.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-11 10:46:47
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<chart-container class="chip-yield-chart" :noScroll="true">
|
||||||
|
<div
|
||||||
|
ref="chart"
|
||||||
|
style="width: 10vw"
|
||||||
|
:style="{ height: vHeight + 'vh' }"
|
||||||
|
></div>
|
||||||
|
</chart-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import ChartContainerVue from "../../components/ChartContainer.vue";
|
||||||
|
import chartMixin from "@/mixins/chart.js";
|
||||||
|
import screenfull from "screenfull";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "ChipYield",
|
||||||
|
components: { ChartContainer: ChartContainerVue },
|
||||||
|
mixins: [chartMixin],
|
||||||
|
props: {
|
||||||
|
vHeight: {
|
||||||
|
type: Number,
|
||||||
|
default: 22,
|
||||||
|
},
|
||||||
|
factory: {
|
||||||
|
type: String,
|
||||||
|
default: "1",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
return {
|
||||||
|
isFullscreen: false,
|
||||||
|
options: {
|
||||||
|
grid: {
|
||||||
|
left: 0,
|
||||||
|
right: 0,
|
||||||
|
bottom: 0,
|
||||||
|
top: 0,
|
||||||
|
containLabel: true,
|
||||||
|
},
|
||||||
|
tooltip: {},
|
||||||
|
title: {
|
||||||
|
text: "0%",
|
||||||
|
left: "48%",
|
||||||
|
top: "40%",
|
||||||
|
textAlign: "center",
|
||||||
|
textStyle: {
|
||||||
|
fontWeight: 600,
|
||||||
|
fontSize: 32,
|
||||||
|
color: "#fffd",
|
||||||
|
},
|
||||||
|
subtext: `\u2002${year}年累计产出\u2002`,
|
||||||
|
subtextStyle: {
|
||||||
|
fontSize: 12,
|
||||||
|
fontWeight: 100,
|
||||||
|
color: "#fffd",
|
||||||
|
align: "right",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
// 背景 series - 2024计划
|
||||||
|
{
|
||||||
|
type: "pie",
|
||||||
|
name: `${year}目标`,
|
||||||
|
radius: ["70%", "85%"],
|
||||||
|
center: ["50%", "52%"],
|
||||||
|
emptyCircleStyle: {
|
||||||
|
color: "#042c5f33",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// 数据 series - 2024累计
|
||||||
|
{
|
||||||
|
type: "pie",
|
||||||
|
radius: ["70%", "85%"],
|
||||||
|
center: ["50%", "52%"],
|
||||||
|
avoidLabelOvervlap: false,
|
||||||
|
label: {
|
||||||
|
show: false,
|
||||||
|
// position: "center",
|
||||||
|
},
|
||||||
|
labelLine: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
data: [
|
||||||
|
{
|
||||||
|
value: 90,
|
||||||
|
name: `${year}累计产出`,
|
||||||
|
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: "#4CF0E811" },
|
||||||
|
{ offset: 1, color: "#4CF0E8" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 20,
|
||||||
|
name: "-",
|
||||||
|
itemStyle: { color: "transparent" },
|
||||||
|
label: { show: false },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// 数据 series2 - 2023累计
|
||||||
|
{
|
||||||
|
type: "pie",
|
||||||
|
radius: ["55%", "70%"],
|
||||||
|
center: ["50%", "52%"],
|
||||||
|
avoidLabelOvervlap: false,
|
||||||
|
label: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
labelLine: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
data: [
|
||||||
|
{
|
||||||
|
value: 90,
|
||||||
|
name: `${year - 1}累计产出`,
|
||||||
|
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: 0,
|
||||||
|
name: "-",
|
||||||
|
itemStyle: { color: "transparent" },
|
||||||
|
label: { show: false },
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
output() {
|
||||||
|
const chipOutput = this.$store.getters.home.chipOutput;
|
||||||
|
if (
|
||||||
|
!chipOutput ||
|
||||||
|
!chipOutput.target ||
|
||||||
|
!chipOutput.current ||
|
||||||
|
!chipOutput.previous
|
||||||
|
)
|
||||||
|
return {
|
||||||
|
target: 0,
|
||||||
|
current: 0,
|
||||||
|
previous: 0,
|
||||||
|
};
|
||||||
|
const index =
|
||||||
|
this.factory == "1"
|
||||||
|
? 4
|
||||||
|
: this.factory == "2"
|
||||||
|
? 1
|
||||||
|
: this.factory == "3"
|
||||||
|
? 2
|
||||||
|
: this.factory == "4"
|
||||||
|
? 0
|
||||||
|
: this.factory == "5"
|
||||||
|
? 3
|
||||||
|
: this.factory == "6"
|
||||||
|
? 5
|
||||||
|
: 6;
|
||||||
|
return {
|
||||||
|
target: chipOutput.target[index], // parseInt(chipOutput.target[index]).toLocaleString(),
|
||||||
|
current: chipOutput.current[index], // parseInt(chipOutput.current[index]).toLocaleString(),
|
||||||
|
previous: chipOutput.previous[index], // parseInt(chipOutput.previous[index]).toLocaleString(),
|
||||||
|
};
|
||||||
|
},
|
||||||
|
actualOptions() {
|
||||||
|
const options = JSON.parse(JSON.stringify(this.options));
|
||||||
|
// 标题
|
||||||
|
if (!this.output.target) options.title.text = "0%";
|
||||||
|
else
|
||||||
|
options.title.text =
|
||||||
|
(this.output.current / this.output.target) * 100 + "%";
|
||||||
|
// 外环
|
||||||
|
if (
|
||||||
|
this.output.current == this.output.target &&
|
||||||
|
this.output.current == 0
|
||||||
|
) {
|
||||||
|
options.series[1].data[0].value = 0;
|
||||||
|
options.series[1].data[1].value = 100;
|
||||||
|
} else {
|
||||||
|
options.series[1].data[0].value = this.output.current;
|
||||||
|
options.series[1].data[1].value =
|
||||||
|
this.output.target - this.output.current;
|
||||||
|
}
|
||||||
|
// 内环
|
||||||
|
if (this.output.previous == 0) {
|
||||||
|
options.series[2].data[0].value = 0;
|
||||||
|
options.series[2].data[1].value = 100;
|
||||||
|
} else {
|
||||||
|
options.series[2].data[0].value = this.output.previous;
|
||||||
|
options.series[2].data[1].value = 0;
|
||||||
|
}
|
||||||
|
return options;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
/** 全屏状态切换时,对柱子粗细和字体大小进行相应调整 */
|
||||||
|
isFullscreen(val) {
|
||||||
|
// this.options.title.top = val ? "40%" : "37%";
|
||||||
|
this.options.title.textStyle.fontSize = val ? 48 : 32;
|
||||||
|
this.options.title.subtextStyle.fontSize = val ? 18 : 12;
|
||||||
|
// this.options.title.subtextStyle.fontSize = val ? 18 : 14;
|
||||||
|
this.initOptions(this.actualOptions);
|
||||||
|
},
|
||||||
|
factory(val) {
|
||||||
|
this.initOptions(this.actualOptions);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
console.log("mounted", this.actualOptions);
|
||||||
|
/** 清除 MIN_WIDTH, 此处比较特殊, 需要这么一步, 去除 chart mixin 的滚动条功能 */
|
||||||
|
this.MIN_WIDTH = 0;
|
||||||
|
this.initOptions(this.actualOptions);
|
||||||
|
debugger;
|
||||||
|
|
||||||
|
if (screenfull.isEnabled) {
|
||||||
|
screenfull.on("change", () => {
|
||||||
|
this.isFullscreen = screenfull.isFullscreen;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.chip-yield-chart {
|
||||||
|
height: 100%;
|
||||||
|
flex: 1;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
</style>
|
68
src/views/dashboard/charts/Fto.vue
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
<!--
|
||||||
|
filename: fto.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-10 08:59:28
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<left-chart-base
|
||||||
|
:legend="legend"
|
||||||
|
:series="series"
|
||||||
|
:xAxis="xAxis"
|
||||||
|
class="fto-chart"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import LeftChartBase from "./LeftChartBase.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "FtoChart",
|
||||||
|
components: { LeftChartBase },
|
||||||
|
data() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
// 城市数组的顺序必须是固定的
|
||||||
|
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
|
||||||
|
return {
|
||||||
|
legend: [
|
||||||
|
{ label: `${year - 1}年`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年`, color: "#58adfa" },
|
||||||
|
],
|
||||||
|
xAxis: cities,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
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)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "样例数据--2024年",
|
||||||
|
data: Array.from({ length: 7 }, () =>
|
||||||
|
Math.floor(Math.random() * 1000)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear() - 1}年`,
|
||||||
|
data: ftoInvest.previous,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear()}年`,
|
||||||
|
data: ftoInvest.current,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
260
src/views/dashboard/charts/LeftChartBase.vue
Normal file
@ -0,0 +1,260 @@
|
|||||||
|
<!--
|
||||||
|
filename: left-chart-base
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-10 08:59:28
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<chart-container class="left-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: 22vw"
|
||||||
|
:style="{ height: vHeight + 'vh' }"
|
||||||
|
></div>
|
||||||
|
</chart-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import screenfull from "screenfull";
|
||||||
|
import ChartContainerVue from "../../components/ChartContainer.vue";
|
||||||
|
import chartMixin from "@/mixins/chart.js";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "LeftChartBase",
|
||||||
|
components: {
|
||||||
|
ChartContainer: ChartContainerVue,
|
||||||
|
},
|
||||||
|
mixins: [chartMixin],
|
||||||
|
props: {
|
||||||
|
vHeight: {
|
||||||
|
type: Number,
|
||||||
|
default: 34,
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
series: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isFullscreen: false,
|
||||||
|
actualOptions: null,
|
||||||
|
options: {
|
||||||
|
grid: {
|
||||||
|
left: "3%",
|
||||||
|
right: "4%",
|
||||||
|
bottom: "0",
|
||||||
|
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">
|
||||||
|
.left-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: 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 {
|
||||||
|
background-color: #12f7f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.legend-item:nth-child(2):before {
|
||||||
|
background-color: #58adfa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** add more */
|
||||||
|
// .legend-item:nth-child(3):before {
|
||||||
|
// background-color: #f7f1;
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
</style>
|
325
src/views/dashboard/charts/RightChartBase.vue
Normal file
@ -0,0 +1,325 @@
|
|||||||
|
<!--
|
||||||
|
filename: right-chart-base
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-10 08:59:28
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<chart-container class="right-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: 22vw"
|
||||||
|
:style="{ height: vHeight + 'vh' }"
|
||||||
|
></div>
|
||||||
|
</chart-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import screenfull from "screenfull";
|
||||||
|
import ChartContainerVue from "../../components/ChartContainer.vue";
|
||||||
|
import chartMixin from "@/mixins/chart.js";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "RightChartBase",
|
||||||
|
components: {
|
||||||
|
ChartContainer: ChartContainerVue,
|
||||||
|
},
|
||||||
|
mixins: [chartMixin],
|
||||||
|
props: {
|
||||||
|
vHeight: {
|
||||||
|
type: Number,
|
||||||
|
default: 34,
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
series: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isFullscreen: false,
|
||||||
|
options: {
|
||||||
|
grid: {
|
||||||
|
left: "3%",
|
||||||
|
right: "4%",
|
||||||
|
bottom: "0",
|
||||||
|
top: "18%",
|
||||||
|
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: "", // "2024年目标值",
|
||||||
|
type: "line",
|
||||||
|
lineStyle: {
|
||||||
|
color: "#f3c000",
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
color: "#f3c000",
|
||||||
|
},
|
||||||
|
areaStyle: {
|
||||||
|
color: {
|
||||||
|
type: "linear",
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
x2: 0,
|
||||||
|
y2: 1,
|
||||||
|
colorStops: [
|
||||||
|
{
|
||||||
|
offset: 0,
|
||||||
|
color: "#f3c000", // 0% 处的颜色
|
||||||
|
},
|
||||||
|
{
|
||||||
|
offset: 0.55,
|
||||||
|
color: "#f3c00033",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
offset: 1,
|
||||||
|
color: "transparent", // 100% 处的颜色
|
||||||
|
},
|
||||||
|
],
|
||||||
|
global: false, // 缺省为 false
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data: [], // this.series[0].data,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "", // "2023年",
|
||||||
|
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[1].data,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "", // "2024年",
|
||||||
|
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[2].data,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
actualOptions: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
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() {
|
||||||
|
this.actualOptions = this.options;
|
||||||
|
this.initOptions(this.options);
|
||||||
|
|
||||||
|
if (screenfull.isEnabled) {
|
||||||
|
screenfull.on("change", () => {
|
||||||
|
this.isFullscreen = screenfull.isFullscreen;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.right-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: 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: #f3c000;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
// left: -16px;
|
||||||
|
left: -0.851vw;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
.legend-item:nth-child(1):after {
|
||||||
|
background-color: #f3c000;
|
||||||
|
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 {
|
||||||
|
background-color: #12f7f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.legend-item:nth-child(3):before {
|
||||||
|
background-color: #58adfa;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** add more */
|
||||||
|
// .legend-item:nth-child(3):before {
|
||||||
|
// background-color: #f7f1;
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
</style>
|
84
src/views/dashboard/charts/StdChart.vue
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
<!--
|
||||||
|
filename: Bipv.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-10 15:39:54
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<right-chart-base
|
||||||
|
:legend="legend"
|
||||||
|
:series="series"
|
||||||
|
:xAxis="xAxis"
|
||||||
|
:vHeight="20.5"
|
||||||
|
class="std-chart"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import RightChartBase from "./RightChartBase.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "StdChart",
|
||||||
|
components: { RightChartBase },
|
||||||
|
|
||||||
|
data() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
// 城市数组的顺序必须是固定的
|
||||||
|
const cities = ["瑞昌", "邯郸", "株洲", "佳木斯", "成都", "凯盛", "蚌埠"];
|
||||||
|
return {
|
||||||
|
legend: [
|
||||||
|
{ label: `${year}年目标值`, color: "#f3c000" },
|
||||||
|
{ label: `${year - 1}年`, color: "#12f7f1" },
|
||||||
|
{ label: `${year}年`, color: "#58adfa" },
|
||||||
|
],
|
||||||
|
xAxis: cities,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
series() {
|
||||||
|
const stdOutput = this.$store.getters.home.stdOutput;
|
||||||
|
|
||||||
|
if (!stdOutput || !stdOutput.current || !stdOutput.previous) {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: "样例数据--2024年目标值",
|
||||||
|
data: Array.from({ length: 7 }, () =>
|
||||||
|
Math.floor(Math.random() * 1000)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "样例数据--2023年",
|
||||||
|
data: Array.from({ length: 7 }, () =>
|
||||||
|
Math.floor(Math.random() * 1000)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "样例数据--2024年",
|
||||||
|
data: Array.from({ length: 7 }, () =>
|
||||||
|
Math.floor(Math.random() * 1000)
|
||||||
|
),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear()}年目标值`,
|
||||||
|
data: stdOutput.target,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear() - 1}年`,
|
||||||
|
data: stdOutput.previous,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: `${new Date().getFullYear()}年`,
|
||||||
|
data: stdOutput.current,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss"></style>
|
129
src/views/dashboard/components/CompanyInfo.vue
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
<!--
|
||||||
|
filename: CompanyInfo.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-08 15:27:04
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="company-info" :style="styles">
|
||||||
|
<div class="corner bl"></div>
|
||||||
|
<div class="corner br"></div>
|
||||||
|
<h2>{{ info.companyName }}</h2>
|
||||||
|
<ul>
|
||||||
|
<li v-for="item in info.items" :key="item.label">
|
||||||
|
{{ item.label }} {{ item.value | currency }}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "CompanyInfo",
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
info: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
position: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
default: () => ({ x: 0, y: 0 }),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
filters: {
|
||||||
|
currency(value) {
|
||||||
|
return value.toLocaleString();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
styles() {
|
||||||
|
return {
|
||||||
|
left: `${this.position.x}%`,
|
||||||
|
top: `${this.position.y}%`,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@font-face {
|
||||||
|
font-family: 优设标题黑;
|
||||||
|
src: url(../../../assets/YouSheBiaoTiHei-2.ttf);
|
||||||
|
}
|
||||||
|
|
||||||
|
.company-info {
|
||||||
|
color: #fff;
|
||||||
|
background: #4443;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 9999;
|
||||||
|
// padding: 14px;
|
||||||
|
padding: 0.745vw;
|
||||||
|
backdrop-filter: blur(2px);
|
||||||
|
border-radius: 4px;
|
||||||
|
transform: translate(-50%, -100%);
|
||||||
|
box-shadow: inset 0 0 12px 2px #fff3;
|
||||||
|
// 在这里设置一个总的字体大小 不失为一个好的选择
|
||||||
|
font-size: 1vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
margin: 6px 0;
|
||||||
|
font-family: 优设标题黑;
|
||||||
|
color: #fff;
|
||||||
|
// font-size: 24px;
|
||||||
|
font-size: 1.276em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul,
|
||||||
|
li {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
font-size: 0.851em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.corner {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
// width: 12px;
|
||||||
|
// height: 12px;
|
||||||
|
width: 0.639vw;
|
||||||
|
height: 0.639vw;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bl {
|
||||||
|
left: 0;
|
||||||
|
border-left: 0.1596vw solid #ffa600;
|
||||||
|
border-bottom: 0.1596vw solid #ffa600;
|
||||||
|
// border-left: 3px solid #ffa600;
|
||||||
|
// border-bottom: 3px solid #ffa600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.br {
|
||||||
|
right: 0;
|
||||||
|
// border-right: 3px solid #ffa600;
|
||||||
|
// border-bottom: 3px solid #ffa600;
|
||||||
|
border-right: 0.1596vw solid #ffa600;
|
||||||
|
border-bottom: 0.1596vw solid #ffa600;
|
||||||
|
}
|
||||||
|
</style>
|
203
src/views/dashboard/components/Container.vue
Normal file
@ -0,0 +1,203 @@
|
|||||||
|
<!--
|
||||||
|
filename: Container.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-09 10:44:09
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="dashboard-container">
|
||||||
|
<!-- refresh btn -->
|
||||||
|
<button
|
||||||
|
v-if="0"
|
||||||
|
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">
|
||||||
|
.dashboard-container {
|
||||||
|
height: 0;
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
position: relative;
|
||||||
|
box-shadow: inset 0 0 20px 1px #fff1;
|
||||||
|
|
||||||
|
// &::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>
|
58
src/views/dashboard/components/ContainerIcon.vue
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<!--
|
||||||
|
filename: ContainerIcon.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-09 16:41:36
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="container-icon" :style="bgStyle"></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
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 std from "@/assets/images/homeindex/std-icon.png";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "ContainerIcon",
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
icon: {
|
||||||
|
type: String,
|
||||||
|
default: "cube",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
bgStyle() {
|
||||||
|
return {
|
||||||
|
cube:
|
||||||
|
"background: url(" + cube + ") no-repeat center center / 100% 100%",
|
||||||
|
chip:
|
||||||
|
"background: url(" + chip + ") no-repeat center center / 100% 100%",
|
||||||
|
chip2:
|
||||||
|
"background: url(" + chip2 + ") no-repeat center center / 100% 100%",
|
||||||
|
bipv:
|
||||||
|
"background: url(" + bipv + ") no-repeat center center / 100% 100%",
|
||||||
|
std: "background: url(" + std + ") 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>
|
102
src/views/dashboard/components/Header.vue
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
<!--
|
||||||
|
filename: Header.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2024-04-09 09:04:12
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<header class="dashboard-header">
|
||||||
|
<div class="btn" :style="btnStyle" @click="toggleFullscreen"></div>
|
||||||
|
<h1>发电玻璃智能管控平台地图总览</h1>
|
||||||
|
<span class="side left">晴转多云 14℃</span>
|
||||||
|
<span class="side right">23:12|星期一|2023.12.13</span>
|
||||||
|
</header>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import screenfull from "screenfull";
|
||||||
|
import fullscreenIcon from "@/assets/images/homeindex/fullscreen.png";
|
||||||
|
import fullscreenExitIcon from "@/assets/images/homeindex/exit-fullscreen.png";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "DashboardHeader",
|
||||||
|
components: {},
|
||||||
|
props: {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isFullscreen: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
btnStyle() {
|
||||||
|
return {
|
||||||
|
backgroundImage: `url(${
|
||||||
|
this.isFullscreen ? fullscreenExitIcon : fullscreenIcon
|
||||||
|
})`,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
toggleFullscreen() {
|
||||||
|
screenfull.toggle();
|
||||||
|
this.isFullscreen = !this.isFullscreen;
|
||||||
|
// 矫正宽度
|
||||||
|
const el = document.querySelector(".dashboard-factory-all");
|
||||||
|
el.style.width = this.isFullscreen ? "100vw" : "calc(100vw - 54px)";
|
||||||
|
el.style.left = this.isFullscreen ? "0" : "54px";
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.dashboard-header {
|
||||||
|
height: 8vh;
|
||||||
|
background: url(../../../assets/images/homeindex/header-bg.png) no-repeat 0 0 /
|
||||||
|
100% 100%;
|
||||||
|
position: relative;
|
||||||
|
display: grid;
|
||||||
|
place-content: center;
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
width: 2vw;
|
||||||
|
height: 2vw;
|
||||||
|
top: 50%;
|
||||||
|
right: 1.18vw;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
background-position: 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
// font-size: 32px;
|
||||||
|
font-size: 1.65vw;
|
||||||
|
// line-height: 45px;
|
||||||
|
line-height: 1.25;
|
||||||
|
letter-spacing: 0.32vw;
|
||||||
|
user-select: none;
|
||||||
|
text-shadow: 0 4px 0 rgba(0, 0, 0, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.side {
|
||||||
|
position: absolute;
|
||||||
|
font-size: 1.18vw;
|
||||||
|
// line-height: 24px;
|
||||||
|
line-height: 1.277vw;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
color: #69b4ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left {
|
||||||
|
left: 22vw;
|
||||||
|
top: 4.9vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
right: 15vw;
|
||||||
|
top: 4.9vh;
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-15 10:49:13
|
* @Date: 2024-04-15 10:49:13
|
||||||
* @LastEditTime: 2024-04-28 10:19:11
|
* @LastEditTime: 2024-05-06 09:24:02
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@ -93,7 +93,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import { parseTime } from '../../core/mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import { getEnergyPage } from '@/api/energy';
|
import { getEnergyPage } from '@/api/energy';
|
||||||
// import inputTable from './inputTable.vue';
|
// import inputTable from './inputTable.vue';
|
||||||
import lineChart from './lineChart';
|
import lineChart from './lineChart';
|
||||||
@ -116,27 +116,6 @@ export default {
|
|||||||
},
|
},
|
||||||
date1: undefined,
|
date1: undefined,
|
||||||
date2: undefined,
|
date2: undefined,
|
||||||
// weekNum: undefined,
|
|
||||||
dataList: [
|
|
||||||
{
|
|
||||||
id:'first',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'second',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'third',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'fourth',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'fifth',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'sixth',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
// getDataListURL: getGlassPage,
|
// getDataListURL: getGlassPage,
|
||||||
// exportURL: exportGlasscExcel
|
// exportURL: exportGlasscExcel
|
||||||
@ -216,13 +195,14 @@ export default {
|
|||||||
type:'button',
|
type:'button',
|
||||||
btnName: '导出',
|
btnName: '导出',
|
||||||
name: 'export',
|
name: 'export',
|
||||||
color: 'warning',
|
plain: true,
|
||||||
|
color: 'primary',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
type: 'title',
|
type: 'title',
|
||||||
label: '成本管理',
|
label: '能源管理',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
timeList: [
|
timeList: [
|
||||||
@ -258,8 +238,9 @@ export default {
|
|||||||
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
prop: 'userName',
|
prop: 'createTime',
|
||||||
label: '日期',
|
label: '日期',
|
||||||
|
filter: parseTime,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'nickName',
|
prop: 'nickName',
|
||||||
@ -465,6 +446,8 @@ export default {
|
|||||||
},
|
},
|
||||||
async getDataList() {
|
async getDataList() {
|
||||||
const res = await getEnergyPage(this.listQuery)
|
const res = await getEnergyPage(this.listQuery)
|
||||||
|
this.tableData = res.data.list
|
||||||
|
// this.dataProps = res.data.list.map()
|
||||||
},
|
},
|
||||||
add0(m) {
|
add0(m) {
|
||||||
return m < 10 ? '0' + m : m
|
return m < 10 ? '0' + m : m
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-15 10:49:13
|
* @Date: 2024-04-15 10:49:13
|
||||||
* @LastEditTime: 2024-04-26 15:18:15
|
* @LastEditTime: 2024-05-07 08:40:58
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@ -11,18 +11,18 @@
|
|||||||
<!-- <el-alert title="自定义 close-text" type="warning" close-text="知道了">
|
<!-- <el-alert title="自定义 close-text" type="warning" close-text="知道了">
|
||||||
</el-alert> -->
|
</el-alert> -->
|
||||||
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
||||||
<el-form-item label="时间维度" prop="reportTime">
|
<el-form-item label="时间维度" prop="mode">
|
||||||
<el-select clearable v-model="timeSelect" placeholder="请选择">
|
<el-select clearable v-model="listQuery.mode" placeholder="请选择">
|
||||||
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="timeSelect === 'month'" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.mode === 2" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker clearable v-model="listQuery.reportTime" type="monthrange" range-separator="至"
|
<el-date-picker clearable v-model="listQuery.reportTime" type="monthrange" range-separator="至"
|
||||||
start-placeholder="开始月份" end-placeholder="结束月份" @change="changeTime">
|
start-placeholder="开始月份" end-placeholder="结束月份" @change="changeTime">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="timeSelect === 'year'" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.mode === 3" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker clearable v-model="listQuery.reportTime[0]" value-format="yyyy" type="year"
|
<el-date-picker clearable v-model="listQuery.reportTime[0]" value-format="yyyy" type="year"
|
||||||
placeholder="开始时间">
|
placeholder="开始时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
@ -31,8 +31,8 @@
|
|||||||
@change="getYear">
|
@change="getYear">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="工厂名称" prop="factoryId">
|
<el-form-item label="工厂名称" prop="factorys">
|
||||||
<el-select clearable v-model="listQuery.factoryId" placeholder="请选择工厂名称">
|
<el-select clearable v-model="listQuery.factorys" placeholder="请选择工厂名称" multiple>
|
||||||
<el-option v-for="item in factoryList" :key="item.id" :label="item.name" :value="item.id">
|
<el-option v-for="item in factoryList" :key="item.id" :label="item.name" :value="item.id">
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@ -56,8 +56,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="app-container" style="margin-top: 18px;flex-grow: 1; padding: 16px;">
|
<div class="app-container" style="margin-top: 18px;flex-grow: 1; padding: 16px;">
|
||||||
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
||||||
<base-table :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize"
|
<base-table :table-props="tableProps" :page="listQuery.current" :limit="listQuery.size" :table-data="tableData">
|
||||||
:table-data="tableData">
|
|
||||||
</base-table>
|
</base-table>
|
||||||
</div>
|
</div>
|
||||||
<!-- <inputTable :date="date" :data="tableData" :time="[startTimeStamp, endTimeStamp]" :sum="all"
|
<!-- <inputTable :date="date" :data="tableData" :time="[startTimeStamp, endTimeStamp]" :sum="all"
|
||||||
@ -71,7 +70,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import { parseTime } from '../../core/mixins/code-filter';
|
import { parseTime } from '@/mixins/code-filter';
|
||||||
import { getEpPage } from '@/api/greenest/index';
|
import { getEpPage } from '@/api/greenest/index';
|
||||||
// import inputTable from './inputTable.vue';
|
// import inputTable from './inputTable.vue';
|
||||||
import lineChart from './lineChart';
|
import lineChart from './lineChart';
|
||||||
@ -84,13 +83,17 @@ export default {
|
|||||||
return {
|
return {
|
||||||
listQuery: {
|
listQuery: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 999,
|
size: 10,
|
||||||
// factoryId: null,
|
factorys: [],
|
||||||
|
mode: 2,
|
||||||
|
beginTime: undefined,
|
||||||
|
endTime: undefined,
|
||||||
// total: 0,
|
// total: 0,
|
||||||
// type: null,
|
// type: null,
|
||||||
// reportType: 2,
|
// reportType: 2,
|
||||||
reportTime: []
|
reportTime: []
|
||||||
},
|
},
|
||||||
|
dynamicProps: [],
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
// getDataListURL: getGlassPage,
|
// getDataListURL: getGlassPage,
|
||||||
// exportURL: exportGlasscExcel
|
// exportURL: exportGlasscExcel
|
||||||
@ -103,19 +106,43 @@ export default {
|
|||||||
],
|
],
|
||||||
timeList: [
|
timeList: [
|
||||||
{
|
{
|
||||||
value: 'month',
|
value: 2,
|
||||||
label:'月'
|
label:'月'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'year',
|
value: 3,
|
||||||
label: '年'
|
label: '年'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
factoryList: [
|
factoryList: [
|
||||||
{
|
{
|
||||||
name: '测试',
|
id: 0,
|
||||||
id:1
|
name: '瑞昌中建材光电材料有限公司'
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: '邯郸中建材光电材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: '中建材株洲光电材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
name: '佳木斯中建材光电材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
name: '成都中建材光电材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
name: '凯盛光伏材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
name: '蚌埠兴科玻璃有限公司'
|
||||||
|
},
|
||||||
],
|
],
|
||||||
typeList: [
|
typeList: [
|
||||||
{
|
{
|
||||||
@ -131,82 +158,42 @@ export default {
|
|||||||
id: 2,
|
id: 2,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
tableProps: [
|
tableProps: [],
|
||||||
// {
|
// startTimeStamp:null, //开始时间
|
||||||
// prop: 'createTime',
|
// endTimeStamp:null, //结束时间
|
||||||
// label: '添加时间',
|
// date:'凯盛玻璃控股成员企业2024生产数据',
|
||||||
// fixed: true,
|
|
||||||
// width: 180,
|
|
||||||
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
|
||||||
// },
|
|
||||||
{
|
|
||||||
prop: 'userName',
|
|
||||||
label: '日期',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'nickName',
|
|
||||||
label: '工厂名称',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'datas',
|
|
||||||
label: '废水(t)',
|
|
||||||
// subcomponent: row
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'unit',
|
|
||||||
label: '废气(m³)',
|
|
||||||
// subcomponent: row
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'remark',
|
|
||||||
label: 'VOC(g/L)',
|
|
||||||
// subcomponent: row
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'kg',
|
|
||||||
label: '固体废弃物-可回收(kg)',
|
|
||||||
// subcomponent: row
|
|
||||||
}
|
|
||||||
],
|
|
||||||
timeSelect:'month',
|
|
||||||
startTimeStamp:null, //开始时间
|
|
||||||
endTimeStamp:null, //结束时间
|
|
||||||
date:'凯盛玻璃控股成员企业2024生产数据',
|
|
||||||
// reportTime: '',
|
// reportTime: '',
|
||||||
startTimeStamp: '',
|
// startTimeStamp: '',
|
||||||
endTimeStamp: '',
|
// endTimeStamp: '',
|
||||||
tableData: [
|
tableData: [],
|
||||||
{
|
|
||||||
userName: 'userName',
|
|
||||||
nickName: '用户名',
|
|
||||||
datas:'111111'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
userName: 'userName',
|
|
||||||
nickName: '用户名',
|
|
||||||
datas: '111111'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
userName: 'userName',
|
|
||||||
nickName: '用户名',
|
|
||||||
datas: '111111'
|
|
||||||
// subcomponent: row
|
|
||||||
}
|
|
||||||
],
|
|
||||||
// proLineList: [],
|
// proLineList: [],
|
||||||
// all: {}
|
// all: {}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getDict()
|
this.getDict()
|
||||||
this.getCurrentYearFirst()
|
// this.getCurrentYearFirst()
|
||||||
// this.getDataList()
|
// this.getDataList()
|
||||||
},
|
},
|
||||||
|
// computed: {
|
||||||
|
// tableProps() {
|
||||||
|
// return [
|
||||||
|
// {
|
||||||
|
// prop: 'createTime',
|
||||||
|
// label: '日期',
|
||||||
|
// filter: parseTime
|
||||||
|
// },
|
||||||
|
// ...this.dynamicProps,
|
||||||
|
// ];
|
||||||
|
// },
|
||||||
|
// },
|
||||||
methods: {
|
methods: {
|
||||||
buttonClick() {
|
buttonClick() {
|
||||||
|
|
||||||
},
|
},
|
||||||
getYear(e) {
|
getYear(e) {
|
||||||
|
this.listQuery.beginTime = this.listQuery.reportTime ? new Date(new Date(new Date(this.listQuery.reportTime[0]).setMonth(0, 1)).setHours(0, 0, 0)).getTime() : undefined
|
||||||
|
this.listQuery.endTime = this.listQuery.reportTime ? new Date(new Date(new Date(this.listQuery.reportTime[1]).setMonth(11, 31)).setHours(23,59,59)).getTime() : undefined
|
||||||
if (this.listQuery.reportTime[0] && e - this.listQuery.reportTime[0] > 10) {
|
if (this.listQuery.reportTime[0] && e - this.listQuery.reportTime[0] > 10) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '年份起止时间不能超过十年',
|
message: '年份起止时间不能超过十年',
|
||||||
@ -218,20 +205,22 @@ export default {
|
|||||||
},
|
},
|
||||||
changeTime() {
|
changeTime() {
|
||||||
if (this.listQuery.reportTime) {
|
if (this.listQuery.reportTime) {
|
||||||
this.createStartDate = moment(new Date(this.listQuery.reportTime[0]), 'yyyy-MM-dd hh:mm:ss');
|
this.listQuery.beginTime = this.listQuery.reportTime ? new Date(this.listQuery.reportTime[0]).getTime() : undefined
|
||||||
this.createEndDate = moment(new Date(this.listQuery.reportTime[1]), 'yyyy-MM-dd hh:mm:ss');
|
this.listQuery.endTime = this.listQuery.reportTime ? new Date(this.listQuery.reportTime[1]).getTime() : undefined
|
||||||
|
// this.createStartDate = moment(new Date(this.listQuery.reportTime[0]), 'yyyy-MM-dd hh:mm:ss');
|
||||||
|
// this.createEndDate = moment(new Date(this.listQuery.reportTime[1]), 'yyyy-MM-dd hh:mm:ss');
|
||||||
const numDays = (new Date(this.listQuery.reportTime[1]).getTime() - new Date(this.listQuery.reportTime[0]).getTime()) / (24 * 3600 * 1000); if (numDays > 730) {
|
const numDays = (new Date(this.listQuery.reportTime[1]).getTime() - new Date(this.listQuery.reportTime[0]).getTime()) / (24 * 3600 * 1000); if (numDays > 730) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '时间范围不能超过24个月',
|
message: '时间范围不能超过24个月',
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
});
|
});
|
||||||
this.listQuery.reportTime = [];
|
this.listQuery.reportTime = [];
|
||||||
this.createStartDate = '';
|
// this.createStartDate = '';
|
||||||
this.createEndDate = '';
|
// this.createEndDate = '';
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.createStartDate = '';
|
// this.createStartDate = '';
|
||||||
this.createEndDate = '';
|
// this.createEndDate = '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async getDict() {
|
async getDict() {
|
||||||
@ -264,63 +253,109 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
async getDataList() {
|
async getDataList() {
|
||||||
const res = getEpPage(this.listQuery)
|
// this.tableData = []
|
||||||
console.log(res)
|
// this.tabl
|
||||||
|
|
||||||
|
const res = await getEpPage(this.listQuery)
|
||||||
|
let arr =[
|
||||||
|
{
|
||||||
|
prop: 'createTime',
|
||||||
|
label: '日期',
|
||||||
|
// filter: parseTime
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'factory',
|
||||||
|
label: '工厂名称',
|
||||||
|
filter: (val) => ['瑞昌中建材光电材料有限公司', '邯郸中建材光电材料有限公司', '中建材株洲光电材料有限公司', '佳木斯中建材光电材料有限公司', '成都中建材光电材料有限公司', '凯盛光伏材料有限公司', '蚌埠兴科玻璃有限公司'][val]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
// console.log(dataArr);
|
||||||
|
// for (let i = 0; i < res.data.list.length-1; i++) {
|
||||||
|
// if (r[i].createTime != r[i + 1].createTime ) {
|
||||||
|
// this.data.a.push(r[i])
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// console.log(res.data);
|
||||||
|
// this.dynamicProps = []
|
||||||
|
const dateList = []
|
||||||
|
const processList = []
|
||||||
|
const factoryList = []
|
||||||
|
|
||||||
|
res.data.records.forEach(ele => {
|
||||||
|
// 表头
|
||||||
|
dateList.push(ele.environmentalProtectionName)
|
||||||
|
// 列数
|
||||||
|
processList.push(ele.createTime)
|
||||||
|
factoryList.push(ele.factory)
|
||||||
|
})
|
||||||
|
this.dateProps = Array.from(new Set(dateList))
|
||||||
|
// this.processArray = Array.from(new Set(processList))
|
||||||
|
// this.factoryArray = Array.from(new Set(factoryList))
|
||||||
|
// this.factoryArray.forEach(item => {
|
||||||
|
// const props =
|
||||||
|
// arr.push(props)
|
||||||
|
// })
|
||||||
|
// res.data.records.forEach(ele => {
|
||||||
|
// if (this.factoryArray.some(ele.factory) && this.factoryArray.some(ele.createTime)) {
|
||||||
|
// arr.push({
|
||||||
|
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
// // 表头
|
||||||
|
// // dateList.push(ele.environmentalProtectionName)
|
||||||
|
// // 列数
|
||||||
|
// // processList.push(ele.createTime)
|
||||||
|
// // factoryList.push(ele.factory)
|
||||||
|
// })
|
||||||
|
this.dateProps.forEach(item => {
|
||||||
|
const props = {
|
||||||
|
'prop': item,
|
||||||
|
'label': item
|
||||||
|
}
|
||||||
|
arr.push(props)
|
||||||
|
})
|
||||||
|
this.tableProps = arr
|
||||||
|
this.tableData = this.mergeGrade(res.data.records)
|
||||||
|
console.log(this.tableData)
|
||||||
|
// // 构造表格数据
|
||||||
|
// this.total = this.processArray.length
|
||||||
|
// this.processArray.forEach(process => {
|
||||||
|
// const listData = {
|
||||||
|
// 'createTime': process,
|
||||||
|
// 'factory':null
|
||||||
|
// }
|
||||||
|
// res.data.records.forEach((r,index) => {
|
||||||
|
// if (process === r.createTime) {
|
||||||
|
// // const temp = Object.keys(r).filter(keys => keys !== 'reportDate' && keys !== 'factory' && keys !== 'environmentalProtectionName' && keys !== 'id' && keys !== 'createTime')
|
||||||
|
// // const item = Object.keys(r).filter(keys => keys !== 'reportDate' && keys !== 'environmentalProtectionValue' && keys !== 'environmentalProtectionName' && keys !== 'id' && keys !== 'createTime')
|
||||||
|
// // console.log(r[item[0]]);
|
||||||
|
// listData[r.environmentalProtectionName] = r.environmentalProtectionValue
|
||||||
|
// listData.factory = r.factory
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// console.log(listData);
|
||||||
|
// this.tableData.push(listData)
|
||||||
|
// })
|
||||||
},
|
},
|
||||||
add0(m) {
|
|
||||||
return m < 10 ? '0' + m : m
|
mergeGrade(grade) {
|
||||||
|
if (!Array.isArray(grade)) return []
|
||||||
|
const newGrade = []
|
||||||
|
grade.forEach(item => {
|
||||||
|
const index = newGrade.findIndex(subItem => subItem.factory === item.factory && subItem.createTime === item.createTime)
|
||||||
|
if (index > -1) {
|
||||||
|
newGrade[index][item.environmentalProtectionName] = item.environmentalProtectionValue
|
||||||
|
} else {
|
||||||
|
newGrade.push({
|
||||||
|
factory: item.factory,
|
||||||
|
createTime: item.groupTime,
|
||||||
|
[item.environmentalProtectionName]: item.environmentalProtectionValue
|
||||||
|
// grades: { [item.class]: item.grade }
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return newGrade
|
||||||
},
|
},
|
||||||
format(shijianchuo) {
|
|
||||||
//shijianchuo是整数,否则要parseInt转换
|
|
||||||
var time = moment(new Date(shijianchuo)).format('YYYY-MM-DD HH:mm:ss')
|
|
||||||
// console.log(time)
|
|
||||||
// var y = time.getFullYear();
|
|
||||||
// var m = time.getMonth() + 1;
|
|
||||||
// var d = time.getDate();
|
|
||||||
// var h = time.getHours();
|
|
||||||
// var mm = time.getMinutes();
|
|
||||||
// var s = time.getSeconds();
|
|
||||||
return time
|
|
||||||
},
|
|
||||||
// changeTime(val) {
|
|
||||||
// if (val) {
|
|
||||||
// // console.log(val)
|
|
||||||
// // console.log(val.setHours(7, 0, 0))
|
|
||||||
// // console.log(val.setHours(7, 0, 0) + 24 * 60 * 60 * 1000)
|
|
||||||
// // let time = this.format(val.setHours(7, 0, 0))
|
|
||||||
// this.endTimeStamp = this.format(val.setHours(7, 0, 0)) //+ ' 00:00:00' //new Date(this.startTimeStamp + ' 00:00:00').getTime() / 1000
|
|
||||||
// this.startTimeStamp = this.format(val.setHours(7, 0, 1) - 24 * 60 * 60 * 1000) //+ ' 23:59:59' //new Date(this.endTimeStamp + ' 23:59:59').getTime() / 1000
|
|
||||||
// // console.log(this.listQuery.reportTime);
|
|
||||||
// this.listQuery.reportTime[0] = this.format(val.setHours(7, 0, 1)) //+ ' 00:00:00' //new Date(this.startTimeStamp + ' 00:00:00').getTime() / 1000
|
|
||||||
// this.listQuery.reportTime[1] = this.format(val.setHours(7, 0, 0) + 24 * 60 * 60 * 1000) //+ ' 23:59:59' //new Date(this.endTimeStamp + ' 23:59:59').getTime() / 1000
|
|
||||||
// console.log(this.listQuery.reportTime);
|
|
||||||
// } else {
|
|
||||||
// this.listQuery.reportTime = []
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
//时间戳转为yy-mm-dd hh:mm:ss
|
|
||||||
timeFun(unixtimestamp) {
|
|
||||||
var unixtimestamp = new Date(unixtimestamp);
|
|
||||||
var year = 1900 + unixtimestamp.getYear();
|
|
||||||
var month = "0" + (unixtimestamp.getMonth() + 1);
|
|
||||||
var date = "0" + unixtimestamp.getDate();
|
|
||||||
return year + "-" + month.substring(month.length - 2, month.length) + "-" + date.substring(date.length - 2, date.length)
|
|
||||||
},
|
|
||||||
buttonClick(val) {
|
|
||||||
this.listQuery.reportTime = val.reportTime ? val.reportTime : undefined;
|
|
||||||
switch (val.btnName) {
|
|
||||||
case 'search':
|
|
||||||
this.listQuery.pageNo = 1;
|
|
||||||
this.listQuery.pageSize = 10;
|
|
||||||
this.getDataList();
|
|
||||||
break;
|
|
||||||
case 'export':
|
|
||||||
this.handleExport();
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
console.log(val);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
// 处理查询参数
|
// 处理查询参数
|
||||||
|
@ -1,98 +1,286 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="dashboard-editor-container">
|
<div class="dashboard-factory-all">
|
||||||
<!-- 首页http://localhost:81/index 数据展示 -->
|
<div id="map-container">
|
||||||
<panel-group @handleSetLineChartData="handleSetLineChartData" />
|
<div class="databoard">
|
||||||
|
<db-header class="db-header"></db-header>
|
||||||
<el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
|
<div class="db-body">
|
||||||
<line-chart :chart-data="lineChartData" />
|
<div class="db-left">
|
||||||
</el-row>
|
<db-container
|
||||||
|
icon="cube"
|
||||||
<el-row :gutter="32">
|
title="FTO投入"
|
||||||
<el-col :xs="24" :sm="24" :lg="8">
|
@refresh="() => (ftoKey = Math.random())"
|
||||||
<div class="chart-wrapper">
|
>
|
||||||
<raddar-chart />
|
<fto-chart :key="ftoKey" />
|
||||||
|
</db-container>
|
||||||
|
<db-container
|
||||||
|
icon="chip2"
|
||||||
|
title="芯片投入"
|
||||||
|
@refresh="() => (chipInvestKey = Math.random())"
|
||||||
|
>
|
||||||
|
<chip-invest-chart :key="chipInvestKey" />
|
||||||
|
</db-container>
|
||||||
|
</div>
|
||||||
|
<div class="db-right">
|
||||||
|
<db-container
|
||||||
|
side="right"
|
||||||
|
icon="chip"
|
||||||
|
title="芯片产出"
|
||||||
|
@refresh="() => (chipYieldKey = Math.random())"
|
||||||
|
>
|
||||||
|
<chip-yield-chart :key="chipYieldKey" />
|
||||||
|
</db-container>
|
||||||
|
<db-container
|
||||||
|
side="right"
|
||||||
|
icon="std"
|
||||||
|
title="标准组件产出"
|
||||||
|
@refresh="() => (stdKey = Math.random())"
|
||||||
|
>
|
||||||
|
<std-chart :key="stdKey" />
|
||||||
|
</db-container>
|
||||||
|
<db-container
|
||||||
|
side="right"
|
||||||
|
icon="bipv"
|
||||||
|
title="BIPV产出"
|
||||||
|
@refresh="() => (bipvKey = Math.random())"
|
||||||
|
>
|
||||||
|
<bipv-chart :key="bipvKey" />
|
||||||
|
</db-container>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</div>
|
||||||
<el-col :xs="24" :sm="24" :lg="8">
|
</div>
|
||||||
<div class="chart-wrapper">
|
<company-info
|
||||||
<pie-chart />
|
v-if="visible"
|
||||||
</div>
|
:info="info"
|
||||||
</el-col>
|
:position="hintPosition"
|
||||||
<el-col :xs="24" :sm="24" :lg="8">
|
@close="closeHint"
|
||||||
<div class="chart-wrapper">
|
/>
|
||||||
<bar-chart />
|
|
||||||
</div>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import PanelGroup from './dashboard/PanelGroup'
|
import store from "@/store";
|
||||||
import LineChart from './dashboard/LineChart'
|
import DashboardHeader from "./dashboard/components/Header.vue";
|
||||||
import RaddarChart from './dashboard/RaddarChart'
|
import CompanyInfo from "./dashboard/components/CompanyInfo.vue";
|
||||||
import PieChart from './dashboard/PieChart'
|
import Container from "./dashboard/components/Container.vue";
|
||||||
import BarChart from './dashboard/BarChart'
|
import FtoChart from "./dashboard/charts/Fto.vue";
|
||||||
|
import ChipInvestChart from "./dashboard/charts/ChipInvest.vue";
|
||||||
|
import BipvChart from "./dashboard/charts/Bipv.vue";
|
||||||
|
import ChipYieldChart from "./dashboard/charts/ChipYield.vue";
|
||||||
|
import StdChart from "./dashboard/charts/StdChart.vue";
|
||||||
|
|
||||||
const lineChartData = {
|
const LOCATIONS = [
|
||||||
newVisitis: {
|
// 佳木斯
|
||||||
expectedData: [100, 120, 161, 134, 105, 160, 165],
|
{ x: 67, y: 20 },
|
||||||
actualData: [120, 82, 91, 154, 162, 140, 145]
|
// 成都
|
||||||
},
|
{ x: 46, y: 56 },
|
||||||
messages: {
|
// 蚌埠1
|
||||||
expectedData: [200, 192, 120, 144, 160, 130, 140],
|
{ x: 60, y: 52 },
|
||||||
actualData: [180, 160, 151, 106, 145, 150, 130]
|
// 蚌埠2
|
||||||
},
|
{ x: 61, y: 53 },
|
||||||
purchases: {
|
// 江西 瑞昌
|
||||||
expectedData: [80, 100, 121, 104, 105, 90, 100],
|
{ x: 60, y: 58 },
|
||||||
actualData: [120, 90, 100, 138, 142, 130, 130]
|
// 湖南 株洲
|
||||||
},
|
{ x: 56, y: 60 },
|
||||||
shoppings: {
|
// 邯郸
|
||||||
expectedData: [130, 140, 141, 142, 145, 150, 160],
|
{ x: 58, y: 45 },
|
||||||
actualData: [120, 82, 91, 154, 162, 140, 130]
|
];
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Index',
|
name: "Index",
|
||||||
components: {
|
components: {
|
||||||
PanelGroup,
|
CompanyInfo,
|
||||||
LineChart,
|
DbHeader: DashboardHeader,
|
||||||
RaddarChart,
|
DbContainer: Container,
|
||||||
PieChart,
|
FtoChart,
|
||||||
BarChart
|
ChipInvestChart,
|
||||||
|
ChipYieldChart,
|
||||||
|
BipvChart,
|
||||||
|
StdChart,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
lineChartData: lineChartData.newVisitis
|
visible: false,
|
||||||
}
|
hintPosition: null,
|
||||||
|
ftoKey: Math.random(),
|
||||||
|
chipInvestKey: Math.random(),
|
||||||
|
chipYieldKey: Math.random(),
|
||||||
|
stdKey: Math.random(),
|
||||||
|
bipvKey: Math.random(),
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.$store.dispatch("copilot/initHome");
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.initPins();
|
||||||
|
|
||||||
|
// 调整 echarts 大小
|
||||||
|
window.onresize = () => {};
|
||||||
|
});
|
||||||
|
},
|
||||||
|
beforeRouteEnter(to, from, next) {
|
||||||
|
next((vm) => {
|
||||||
|
store.dispatch("app/closeSideBar", { withoutAnimation: true });
|
||||||
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleSetLineChartData(type) {
|
initPins() {
|
||||||
this.lineChartData = lineChartData[type]
|
LOCATIONS.map((loc) => {
|
||||||
}
|
const pin = document.createElement("div");
|
||||||
}
|
pin.className = "pin";
|
||||||
}
|
pin.style.left = `${loc.x}%`;
|
||||||
|
pin.style.top = `${loc.y}%`;
|
||||||
|
pin.addEventListener("mouseenter", () => {
|
||||||
|
this.showHint(loc);
|
||||||
|
});
|
||||||
|
pin.addEventListener("mouseleave", () => {
|
||||||
|
this.closeHint();
|
||||||
|
});
|
||||||
|
document.getElementById("map-container").appendChild(pin);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
closeHint() {
|
||||||
|
this.visible = false;
|
||||||
|
this.hintPosition = null;
|
||||||
|
},
|
||||||
|
showHint(position) {
|
||||||
|
const homeStore = this.$store.getters.home;
|
||||||
|
this.hintPosition = position;
|
||||||
|
const templateInfo = {
|
||||||
|
companyName: "",
|
||||||
|
items: [
|
||||||
|
{ label: "FTO投入", value: 0 }, // Math.floor(Math.random() * 1000000) },
|
||||||
|
{ label: "芯片产出", value: 0 }, // Math.floor(Math.random() * 10000000) },
|
||||||
|
{ label: "芯片投入", value: 0 }, // Math.floor(Math.random() * 1000000) },
|
||||||
|
{ label: "标准组件产出", value: 0 }, // Math.floor(Math.random() * 1000000) },
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
if (position === LOCATIONS[0]) {
|
||||||
|
templateInfo.companyName = "佳木斯中建材光电材料有限公司";
|
||||||
|
templateInfo.items[0].value = homeStore.ftoInvest.current[3];
|
||||||
|
templateInfo.items[2].value = homeStore.chipInvest.current[3];
|
||||||
|
templateInfo.items[1].value = homeStore.chipOutput.current[3];
|
||||||
|
templateInfo.items[3].value = homeStore.stdOutput.current[3];
|
||||||
|
} else if (position === LOCATIONS[1]) {
|
||||||
|
templateInfo.companyName = "成都中建材光电材料有限公司";
|
||||||
|
templateInfo.items[0].value = homeStore.ftoInvest.current[4];
|
||||||
|
templateInfo.items[2].value = homeStore.chipInvest.current[4];
|
||||||
|
templateInfo.items[1].value = homeStore.chipOutput.current[4];
|
||||||
|
templateInfo.items[3].value = homeStore.stdOutput.current[4];
|
||||||
|
} else if (position === LOCATIONS[2]) {
|
||||||
|
templateInfo.companyName = "蚌埠兴科玻璃有限公司";
|
||||||
|
templateInfo.items[0].value = homeStore.ftoInvest.current[6];
|
||||||
|
templateInfo.items[2].value = homeStore.chipInvest.current[6];
|
||||||
|
templateInfo.items[1].value = homeStore.chipOutput.current[6];
|
||||||
|
templateInfo.items[3].value = homeStore.stdOutput.current[6];
|
||||||
|
} else if (position === LOCATIONS[3]) {
|
||||||
|
templateInfo.companyName = "凯盛光伏材料有限公司(本部)";
|
||||||
|
templateInfo.items[0].value = homeStore.ftoInvest.current[5];
|
||||||
|
templateInfo.items[2].value = homeStore.chipInvest.current[5];
|
||||||
|
templateInfo.items[1].value = homeStore.chipOutput.current[5];
|
||||||
|
templateInfo.items[3].value = homeStore.stdOutput.current[5];
|
||||||
|
} else if (position === LOCATIONS[4]) {
|
||||||
|
templateInfo.companyName = "瑞昌中建材光电材料有限公司";
|
||||||
|
templateInfo.items[0].value = homeStore.ftoInvest.current[0];
|
||||||
|
templateInfo.items[2].value = homeStore.chipInvest.current[0];
|
||||||
|
templateInfo.items[1].value = homeStore.chipOutput.current[0];
|
||||||
|
templateInfo.items[3].value = homeStore.stdOutput.current[0];
|
||||||
|
} else if (position === LOCATIONS[5]) {
|
||||||
|
templateInfo.companyName = "中建材(株洲)光电材料有限公司";
|
||||||
|
templateInfo.items[0].value = homeStore.ftoInvest.current[2];
|
||||||
|
templateInfo.items[2].value = homeStore.chipInvest.current[2];
|
||||||
|
templateInfo.items[1].value = homeStore.chipOutput.current[2];
|
||||||
|
templateInfo.items[3].value = homeStore.stdOutput.current[2];
|
||||||
|
} else if (position === LOCATIONS[6]) {
|
||||||
|
templateInfo.companyName = "中建材(邯郸)光电材料有限公司";
|
||||||
|
templateInfo.items[0].value = homeStore.ftoInvest.current[1];
|
||||||
|
templateInfo.items[2].value = homeStore.chipInvest.current[1];
|
||||||
|
templateInfo.items[1].value = homeStore.chipOutput.current[1];
|
||||||
|
templateInfo.items[3].value = homeStore.stdOutput.current[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
this.info = templateInfo;
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.visible = true;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style>
|
||||||
.dashboard-editor-container {
|
.hideSidebar.mobile .dashboard-factory-all {
|
||||||
padding: 32px;
|
left: 0 !important;
|
||||||
background-color: rgb(240, 242, 245);
|
width: 100vw !important;
|
||||||
position: relative;
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
.chart-wrapper {
|
<style lang="scss" scoped>
|
||||||
background: #fff;
|
.dashboard-factory-all {
|
||||||
padding: 16px 16px 0;
|
background: #151516;
|
||||||
margin-bottom: 32px;
|
position: fixed;
|
||||||
}
|
top: 0;
|
||||||
|
left: 54px;
|
||||||
|
height: 100vh;
|
||||||
|
width: calc(100vw - 54px);
|
||||||
|
z-index: 1001;
|
||||||
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:1024px) {
|
#map-container {
|
||||||
.chart-wrapper {
|
height: 100%;
|
||||||
padding: 8px;
|
background: url(../assets/bgearth.png) no-repeat 0 0 / 100% 100%;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.databoard {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.db-body {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.db-left,
|
||||||
|
.db-right {
|
||||||
|
// width: 420px;
|
||||||
|
width: 24vw;
|
||||||
|
padding: 20px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.pin {
|
||||||
|
display: inline-block;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 9998;
|
||||||
|
width: 1.702vw;
|
||||||
|
height: 1.702vw;
|
||||||
|
/*
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
*/
|
||||||
|
background: url(../assets/pinicon.png) no-repeat 0 0 / 100% 100%;
|
||||||
|
transition: transform 0.1s linear;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pin:hover {
|
||||||
|
transform: scale(1.2);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2023-11-06 15:15:30
|
* @Date: 2023-11-06 15:15:30
|
||||||
* @LastEditTime: 2024-04-17 15:37:39
|
* @LastEditTime: 2024-05-07 09:31:54
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@ -156,10 +156,9 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import basicAdd from './basic-add';
|
// import basicAdd from './basic-add';
|
||||||
// import {
|
import {
|
||||||
// createQualityScrapLog, updateQualityScrapLog, getQualityScrapLog, getWorkOrderList,
|
getProduceDataDetail
|
||||||
// getTeamList, getDetList, getLineList
|
} from "@/api/produceData";
|
||||||
// } from "@/api/base/qualityScrapLog";
|
|
||||||
// import { getList, } from "@/api/base/qualityScrapType";
|
// import { getList, } from "@/api/base/qualityScrapType";
|
||||||
import SmallTitle from './SmallTitle';
|
import SmallTitle from './SmallTitle';
|
||||||
export default {
|
export default {
|
||||||
@ -223,8 +222,11 @@ export default {
|
|||||||
// this.getCurrentTime()
|
// this.getCurrentTime()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init() {
|
init(id) {
|
||||||
this.visible = true
|
this.visible = true
|
||||||
|
if (id) {
|
||||||
|
getProduceDataDetail()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// getCurrentTime() {
|
// getCurrentTime() {
|
||||||
// // new Date().Format("yyyy-MM-dd HH:mm:ss")
|
// // new Date().Format("yyyy-MM-dd HH:mm:ss")
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-15 10:49:13
|
* @Date: 2024-04-15 10:49:13
|
||||||
* @LastEditTime: 2024-04-17 16:32:43
|
* @LastEditTime: 2024-05-07 09:18:01
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
@ -10,17 +10,17 @@
|
|||||||
<div class="app-container" style="padding: 16px 24px 0;height: auto; flex-grow: 1;">
|
<div class="app-container" style="padding: 16px 24px 0;height: auto; flex-grow: 1;">
|
||||||
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
<el-form :model="listQuery" :inline="true" ref="dataForm" class="blueTip">
|
||||||
<el-form-item label="时间维度" prop="reportTime">
|
<el-form-item label="时间维度" prop="reportTime">
|
||||||
<el-select clearable v-model="timeSelect" placeholder="请选择">
|
<el-select clearable v-model="listQuery.date" placeholder="请选择">
|
||||||
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
<el-option v-for="item in timeList" :key="item.value" :label="item.label" :value="item.value">
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="timeSelect === 'day'" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.date === 0" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker clearable v-model="listQuery.reportTime" type="datetimerange" range-separator="至"
|
<el-date-picker clearable v-model="listQuery.reportTime" type="datetimerange" range-separator="至"
|
||||||
start-placeholder="开始日期" value-format="yyyy-MM-dd HH:mm:ss" @change="changeDayTime" end-placeholder="结束日期">
|
start-placeholder="开始日期" value-format="yyyy-MM-dd HH:mm:ss" @change="changeDayTime" end-placeholder="结束日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="timeSelect === 'week'" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.date === 1" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker clearable v-model="listQuery.reportTime[0]" type="week" format="yyyy 第 WW 周" placeholder="选择周"
|
<el-date-picker clearable v-model="listQuery.reportTime[0]" type="week" format="yyyy 第 WW 周" placeholder="选择周"
|
||||||
style="width: 180px" @change="onValueChange">
|
style="width: 180px" @change="onValueChange">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
@ -32,12 +32,12 @@
|
|||||||
{{ date1 }} 至 {{ date2 }},共 {{ weekNum }} 周
|
{{ date1 }} 至 {{ date2 }},共 {{ weekNum }} 周
|
||||||
</span>
|
</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="timeSelect === 'month'" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.date === 2" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker clearable v-model="listQuery.reportTime" type="monthrange" range-separator="至"
|
<el-date-picker clearable v-model="listQuery.reportTime" type="monthrange" range-separator="至"
|
||||||
start-placeholder="开始月份" end-placeholder="结束月份" @change="changeTime">
|
start-placeholder="开始月份" end-placeholder="结束月份" @change="changeTime">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-show="timeSelect === 'year'" label="时间范围" prop="reportTime">
|
<el-form-item v-show="listQuery.date === 3" label="时间范围" prop="reportTime">
|
||||||
<el-date-picker clearable v-model="listQuery.reportTime[0]" value-format="yyyy" type="year"
|
<el-date-picker clearable v-model="listQuery.reportTime[0]" value-format="yyyy" type="year"
|
||||||
placeholder="开始时间">
|
placeholder="开始时间">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
@ -46,8 +46,8 @@
|
|||||||
@change="getYear">
|
@change="getYear">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="工厂名称" prop="factoryId">
|
<el-form-item label="工厂名称" prop="factorys">
|
||||||
<el-select clearable v-model="listQuery.factoryId" placeholder="请选择工厂名称">
|
<el-select clearable v-model="listQuery.factorys" placeholder="请选择工厂名称" multiple >
|
||||||
<el-option v-for="item in factoryList" :key="item.id" :label="item.name" :value="item.id">
|
<el-option v-for="item in factoryList" :key="item.id" :label="item.name" :value="item.id">
|
||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
@ -98,7 +98,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import { parseTime } from '../../core/mixins/code-filter';
|
// import { parseTime } from '../../core/mixins/code-filter';
|
||||||
// import { getGlassPage, exportGlasscExcel } from '@/api/report/glass';
|
import { getProduceDataPage } from '@/api/produceData';
|
||||||
// import inputTable from './inputTable.vue';
|
// import inputTable from './inputTable.vue';
|
||||||
import lineChart from './lineChart';
|
import lineChart from './lineChart';
|
||||||
import moment from 'moment'
|
import moment from 'moment'
|
||||||
@ -114,12 +114,15 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 10,
|
size: 10,
|
||||||
pageNo: 1,
|
current: 1,
|
||||||
factoryId: null,
|
factorys: [],
|
||||||
total: 0,
|
total: 0,
|
||||||
type: null,
|
date: 1,
|
||||||
|
type:undefined,
|
||||||
// reportType: 2,
|
// reportType: 2,
|
||||||
|
beginTime: undefined,
|
||||||
|
endTime:undefined,
|
||||||
reportTime: []
|
reportTime: []
|
||||||
},
|
},
|
||||||
detailOrUpdateVisible:false,
|
detailOrUpdateVisible:false,
|
||||||
@ -255,24 +258,24 @@ export default {
|
|||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
type: 'title',
|
type: 'title',
|
||||||
label: '成本管理',
|
label: '生产数据管理',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
timeList: [
|
timeList: [
|
||||||
{
|
{
|
||||||
value: 'day',
|
value: 0,
|
||||||
label: '日'
|
label: '日'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'week',
|
value: 1,
|
||||||
label: '周'
|
label: '周'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'month',
|
value: 2,
|
||||||
label:'月'
|
label:'月'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: 'year',
|
value: 3,
|
||||||
label: '年'
|
label: '年'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@ -283,67 +286,38 @@ export default {
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
tableProps: [
|
tableProps: [
|
||||||
// {
|
|
||||||
// prop: 'createTime',
|
|
||||||
// label: '添加时间',
|
|
||||||
// fixed: true,
|
|
||||||
// width: 180,
|
|
||||||
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
|
||||||
// },
|
|
||||||
{
|
{
|
||||||
prop: 'userName',
|
prop: 'createTime',
|
||||||
label: '日期',
|
label: '日期',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'nickName',
|
prop: 'factory',
|
||||||
label: '工厂名称',
|
label: '工厂名称',
|
||||||
|
filter: (val) => ['瑞昌中建材光电材料有限公司', '邯郸中建材光电材料有限公司', '中建材株洲光电材料有限公司', '佳木斯中建材光电材料有限公司', '成都中建材光电材料有限公司', '凯盛光伏材料有限公司', '蚌埠兴科玻璃有限公司'][val]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'type',
|
prop: 'glassType',
|
||||||
label: '玻璃类型',
|
label: '玻璃类型',
|
||||||
|
filter: (val) => ['玻璃芯片', '标准组件', 'BIPV'][val]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'inNum',
|
prop: 'inputNumber',
|
||||||
label: '投入数量',
|
label: '投入数量',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'putNum',
|
prop: 'outputNumber',
|
||||||
label: '产出数量',
|
label: '产出数量',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'goodNum',
|
prop: 'goodNumber',
|
||||||
label: '良品数量',
|
label: '良品数量',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'goodYelid',
|
prop: 'yieldRate',
|
||||||
label: '良品率%',
|
label: '良品率%',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
timeSelect:'day',
|
tableData: [],
|
||||||
startTimeStamp:null, //开始时间
|
|
||||||
endTimeStamp:null, //结束时间
|
|
||||||
// date:'凯盛玻璃控股成员企业2024生产数据',
|
|
||||||
// reportTime: '',
|
|
||||||
startTimeStamp: '',
|
|
||||||
endTimeStamp: '',
|
|
||||||
tableData: [
|
|
||||||
{
|
|
||||||
userName: 'userName',
|
|
||||||
nickName: '用户名',
|
|
||||||
datas:'111111'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
userName: 'userName',
|
|
||||||
nickName: '用户名',
|
|
||||||
datas: '111111'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
userName: 'userName',
|
|
||||||
nickName: '用户名',
|
|
||||||
datas: '111111'
|
|
||||||
// subcomponent: row
|
|
||||||
}
|
|
||||||
],
|
|
||||||
// proLineList: [],
|
// proLineList: [],
|
||||||
// all: {}
|
// all: {}
|
||||||
};
|
};
|
||||||
@ -521,6 +495,9 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
async getDataList() {
|
async getDataList() {
|
||||||
|
const res = await getProduceDataPage(this.listQuery)
|
||||||
|
console.log(res)
|
||||||
|
this.tableData = res.data.records
|
||||||
},
|
},
|
||||||
add0(m) {
|
add0(m) {
|
||||||
return m < 10 ? '0' + m : m
|
return m < 10 ? '0' + m : m
|
||||||
|
@ -1,22 +1,24 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: zhp
|
* @Author: zhp
|
||||||
* @Date: 2024-04-15 10:49:13
|
* @Date: 2024-04-15 10:49:13
|
||||||
* @LastEditTime: 2024-04-17 16:15:42
|
* @LastEditTime: 2024-04-29 16:10:36
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div style="display: flex; flex-direction: column; min-height: calc(100vh - 96px - 31px)">
|
<div style="display: flex; flex-direction: column; min-height: calc(100vh - 96px - 31px)">
|
||||||
<div class="app-container" style="padding: 16px 24px 0;height: auto; flex-grow: 1;">
|
<div class="app-container" style="padding: 16px 24px 0;height: 400px; flex-grow: 1;">
|
||||||
<search-bar :formConfigs="mainFormConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
<search-bar :formConfigs="mainFormConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
||||||
<el-row :gutter="24">
|
<div class="content">
|
||||||
<el-col :span="12" v-for="item in dataList" :key="item.id">
|
<!-- v-for 遍历父级div-->
|
||||||
<line-chart :id="item.id" class="yearChart" ref="lineChart" style="height: 40vh;width: 100%"></line-chart>
|
<div class="main" :span="12" v-for="(item,index) in chartData" :key="index">
|
||||||
</el-col>
|
<line-chart :data="item" ref="lineChart" style="height: 600px;width: 100%" />
|
||||||
<!-- <el-col :span="12">
|
</div>
|
||||||
<line-chart :id=" 'second' " class="yearChart" ref="lineChart" style="height: 40vh;width: 100%"></line-chart>
|
</div>
|
||||||
</el-col> -->
|
<!-- <el-row :gutter="24">
|
||||||
</el-row>
|
<el-col>
|
||||||
|
</el-col>
|
||||||
|
</el-row> -->
|
||||||
</div>
|
</div>
|
||||||
<div class="app-container" style="margin-top: 18px;flex-grow: 1; height: auto; padding: 16px;">
|
<div class="app-container" style="margin-top: 18px;flex-grow: 1; height: auto; padding: 16px;">
|
||||||
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
||||||
@ -24,19 +26,12 @@
|
|||||||
:table-data="tableData">
|
:table-data="tableData">
|
||||||
</base-table>
|
</base-table>
|
||||||
</div>
|
</div>
|
||||||
<!-- <inputTable :date="date" :data="tableData" :time="[startTimeStamp, endTimeStamp]" :sum="all"
|
|
||||||
:type="listQuery.reportType" @refreshDataList="getDataList" /> -->
|
|
||||||
<!-- <pagination
|
|
||||||
:limit.sync="listQuery.pageSize"
|
|
||||||
:page.sync="listQuery.pageNo"
|
|
||||||
:total="listQuery.total"
|
|
||||||
@pagination="getDataList" /> -->
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import { parseTime } from '../../core/mixins/code-filter';
|
// import { parseTime } from '../../core/mixins/code-filter';
|
||||||
// import { getGlassPage, exportGlasscExcel } from '@/api/report/glass';
|
import { getStockPage } from '@/api/wareHouse';
|
||||||
// import inputTable from './inputTable.vue';
|
// import inputTable from './inputTable.vue';
|
||||||
import lineChart from './lineChart';
|
import lineChart from './lineChart';
|
||||||
import moment from 'moment'
|
import moment from 'moment'
|
||||||
@ -46,35 +41,12 @@ export default {
|
|||||||
components: { lineChart },
|
components: { lineChart },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
chartData:[],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
factoryId: null,
|
factory:undefined,
|
||||||
total: 0,
|
|
||||||
type: null,
|
|
||||||
// reportType: 2,
|
|
||||||
reportTime: []
|
|
||||||
},
|
},
|
||||||
dataList: [
|
|
||||||
{
|
|
||||||
id:'first',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'second',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'third',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'fourth',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'fifth',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'sixth',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
// getDataListURL: getGlassPage,
|
// getDataListURL: getGlassPage,
|
||||||
// exportURL: exportGlasscExcel
|
// exportURL: exportGlasscExcel
|
||||||
@ -84,8 +56,37 @@ export default {
|
|||||||
type: 'select',
|
type: 'select',
|
||||||
label: '工厂名称',
|
label: '工厂名称',
|
||||||
placeholder: '请选择工厂名称',
|
placeholder: '请选择工厂名称',
|
||||||
param: 'factoryId',
|
param: 'factory',
|
||||||
selectOptions: [],
|
selectOptions: [
|
||||||
|
{
|
||||||
|
id: 0,
|
||||||
|
name: '瑞昌中建材光电材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: '邯郸中建材光电材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: '中建材株洲光电材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
name: '佳木斯中建材光电材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
name: '成都中建材光电材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
name: '凯盛光伏材料有限公司'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
name: '蚌埠兴科玻璃有限公司'
|
||||||
|
},
|
||||||
|
],
|
||||||
clearable:true,
|
clearable:true,
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
@ -155,7 +156,8 @@ export default {
|
|||||||
type:'button',
|
type:'button',
|
||||||
btnName: '导出',
|
btnName: '导出',
|
||||||
name: 'export',
|
name: 'export',
|
||||||
color: 'warning',
|
plain: true,
|
||||||
|
color: 'primary',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
formConfig: [
|
formConfig: [
|
||||||
@ -189,23 +191,25 @@ export default {
|
|||||||
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
// filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
prop: 'userName',
|
prop: 'factory',
|
||||||
label: '工厂名称',
|
label: '工厂名称',
|
||||||
|
filter: (val) => ['瑞昌中建材光电材料有限公司', '邯郸中建材光电材料有限公司', '中建材株洲光电材料有限公司', '佳木斯中建材光电材料有限公司', '成都中建材光电材料有限公司', '凯盛光伏材料有限公司', '蚌埠兴科玻璃有限公司'][val]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'nickName',
|
prop: 'glassType',
|
||||||
label: '玻璃类型',
|
label: '玻璃类型',
|
||||||
|
filter: (val) => ['玻璃芯片', '标准组件', 'BIPV'][val]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'product',
|
prop: 'productSpecification',
|
||||||
label: '产品规格',
|
label: '产品规格',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'num',
|
prop: 'stockNumber',
|
||||||
label: '库存数量',
|
label: '库存数量',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'yeild',
|
prop: 'specificationProportion',
|
||||||
label: '规格占比',
|
label: '规格占比',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@ -216,69 +220,27 @@ export default {
|
|||||||
// reportTime: '',
|
// reportTime: '',
|
||||||
startTimeStamp: '',
|
startTimeStamp: '',
|
||||||
endTimeStamp: '',
|
endTimeStamp: '',
|
||||||
tableData: [
|
tableData: [],
|
||||||
{
|
|
||||||
userName: 'userName',
|
|
||||||
nickName: '用户名',
|
|
||||||
datas:'111111'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
userName: 'userName',
|
|
||||||
nickName: '用户名',
|
|
||||||
datas: '111111'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
userName: 'userName',
|
|
||||||
nickName: '用户名',
|
|
||||||
datas: '111111'
|
|
||||||
// subcomponent: row
|
|
||||||
}
|
|
||||||
],
|
|
||||||
// proLineList: [],
|
// proLineList: [],
|
||||||
// all: {}
|
// all: {}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getDict()
|
this.getDict()
|
||||||
|
console.log(this.$refs.lineChart)
|
||||||
// this.getCurrentYearFirst()
|
// this.getCurrentYearFirst()
|
||||||
// this.getDataList()
|
this.getDataList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
buttonClick() {
|
buttonClick() {
|
||||||
|
|
||||||
},
|
},
|
||||||
// handleTime() {
|
|
||||||
// this.$forceUpdate()
|
|
||||||
// // this.$nextTick(() => [
|
|
||||||
|
|
||||||
// // ])
|
|
||||||
// },
|
|
||||||
// getCurrentYearFirst() {
|
|
||||||
// let date = new Date();
|
|
||||||
// date.setDate(1);
|
|
||||||
// date.setMonth(0);
|
|
||||||
// this.reportTime = date;
|
|
||||||
// this.startTimeStamp = this.timeFun(new Date(new Date().getFullYear(), 0, 1, 7, 0, 1).getTime()); //开始时间
|
|
||||||
// this.endTimeStamp = this.timeFun(new Date(new Date().getFullYear(), 11, 31, 7, 0, 0).getTime()); //结束时间
|
|
||||||
// this.listQuery.reportTime[0] = parseTime(new Date(new Date().getFullYear(), 0, 1, 7, 0, 1).getTime()) //+ ' 00:00:00' //new Date(this.startTimeStamp + ' 00:00:00').getTime() / 1000
|
|
||||||
// this.listQuery.reportTime[1] = parseTime(new Date(new Date().getFullYear(), 11, 31, 7, 0, 0).getTime()) //+ ' 23:59:59' //new Date(this.endTimeStamp + ' 23:59:59').getTime() / 100
|
|
||||||
// },
|
|
||||||
changeTime(val) {
|
changeTime(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
// let timeStamp = val.getTime(); //标准时间转为时间戳,毫秒级别
|
|
||||||
// this.endTimeStamp = this.timeFun(new Date(val.getFullYear(), 11, 31, 7, 0, 0).getTime()); //开始时间
|
|
||||||
// this.startTimeStamp = this.timeFun(new Date(val.getFullYear(), 0, 1, 7, 0, 1).getTime()); //结束时间
|
|
||||||
// this.listQuery.reportTime[0] = parseTime(new Date(val.getFullYear(), 0, 1, 7, 0, 1).getTime()) //+ ' 00:00:00' //new Date(this.startTimeStamp + ' 00:00:00').getTime() / 1000
|
|
||||||
// this.listQuery.reportTime[1] = parseTime(new Date(val.getFullYear(), 11, 31, 7, 0, 0).getTime()) //+ ' 23:59:59' //new Date(this.endTimeStamp + ' 23:59:59').getTime() / 1000
|
|
||||||
} else {
|
} else {
|
||||||
this.listQuery.reportTime = []
|
this.listQuery.reportTime = []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async getDict() {
|
async getDict() {
|
||||||
this.$refs.lineChart.initChart()
|
|
||||||
// 产线列表
|
|
||||||
// const res = await getCorePLList();
|
|
||||||
// this.proLineList = res.data;
|
|
||||||
},
|
},
|
||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
multipliedByHundred(str) {
|
multipliedByHundred(str) {
|
||||||
@ -304,6 +266,35 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
async getDataList() {
|
async getDataList() {
|
||||||
|
getStockPage(this.listQuery).then((res) => {
|
||||||
|
this.tableData = res.data.list
|
||||||
|
let arr = res.data.list.map((ele) => {
|
||||||
|
return {
|
||||||
|
factory: ele.factory === 0 ? '瑞昌中建材光电材料有限公司' : ele.factory === 1 ? '邯郸中建材光电材料有限公司' : ele.factory === 2 ? '中建材株洲光电材料有限公司' : ele.factory === 3 ? '佳木斯中建材光电材料有限公司' : ele.factory === 4 ? '成都中建材光电材料有限公司' : ele.factory === 5 ? '凯盛光伏材料有限公司' : '蚌埠兴科玻璃有限公司',
|
||||||
|
name: ele.glassType === 0 ? '玻璃芯片' : ele.glassType === 1 ? '标准组件' : 'BIPV',
|
||||||
|
num: ele.stockNumber
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.checkSameData(arr)
|
||||||
|
this, this.$nextTick(() => [
|
||||||
|
this.$refs.lineChart.initChart()
|
||||||
|
])
|
||||||
|
})
|
||||||
|
},
|
||||||
|
checkSameData(data) {
|
||||||
|
let dataInfo = {}
|
||||||
|
data.forEach((item, index) => {
|
||||||
|
let { factory } = item;
|
||||||
|
if (!dataInfo[factory]) {
|
||||||
|
dataInfo[factory] = {
|
||||||
|
factory,
|
||||||
|
child: []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dataInfo[factory].child.push(item)
|
||||||
|
})
|
||||||
|
this.chartData = Object.values(dataInfo); // list 转换成功的数据
|
||||||
|
// console.log(this.chartData[0])
|
||||||
},
|
},
|
||||||
add0(m) {
|
add0(m) {
|
||||||
return m < 10 ? '0' + m : m
|
return m < 10 ? '0' + m : m
|
||||||
@ -311,21 +302,10 @@ export default {
|
|||||||
format(shijianchuo) {
|
format(shijianchuo) {
|
||||||
//shijianchuo是整数,否则要parseInt转换
|
//shijianchuo是整数,否则要parseInt转换
|
||||||
var time = moment(new Date(shijianchuo)).format('YYYY-MM-DD HH:mm:ss')
|
var time = moment(new Date(shijianchuo)).format('YYYY-MM-DD HH:mm:ss')
|
||||||
// console.log(time)
|
|
||||||
// var y = time.getFullYear();
|
|
||||||
// var m = time.getMonth() + 1;
|
|
||||||
// var d = time.getDate();
|
|
||||||
// var h = time.getHours();
|
|
||||||
// var mm = time.getMinutes();
|
|
||||||
// var s = time.getSeconds();
|
|
||||||
return time
|
return time
|
||||||
},
|
},
|
||||||
changeTime(val) {
|
changeTime(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
// console.log(val)
|
|
||||||
// console.log(val.setHours(7, 0, 0))
|
|
||||||
// console.log(val.setHours(7, 0, 0) + 24 * 60 * 60 * 1000)
|
|
||||||
// let time = this.format(val.setHours(7, 0, 0))
|
|
||||||
this.endTimeStamp = this.format(val.setHours(7, 0, 0)) //+ ' 00:00:00' //new Date(this.startTimeStamp + ' 00:00:00').getTime() / 1000
|
this.endTimeStamp = this.format(val.setHours(7, 0, 0)) //+ ' 00:00:00' //new Date(this.startTimeStamp + ' 00:00:00').getTime() / 1000
|
||||||
this.startTimeStamp = this.format(val.setHours(7, 0, 1) - 24 * 60 * 60 * 1000) //+ ' 23:59:59' //new Date(this.endTimeStamp + ' 23:59:59').getTime() / 1000
|
this.startTimeStamp = this.format(val.setHours(7, 0, 1) - 24 * 60 * 60 * 1000) //+ ' 23:59:59' //new Date(this.endTimeStamp + ' 23:59:59').getTime() / 1000
|
||||||
// console.log(this.listQuery.reportTime);
|
// console.log(this.listQuery.reportTime);
|
||||||
@ -336,7 +316,6 @@ export default {
|
|||||||
this.listQuery.reportTime = []
|
this.listQuery.reportTime = []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
//时间戳转为yy-mm-dd hh:mm:ss
|
//时间戳转为yy-mm-dd hh:mm:ss
|
||||||
timeFun(unixtimestamp) {
|
timeFun(unixtimestamp) {
|
||||||
var unixtimestamp = new Date(unixtimestamp);
|
var unixtimestamp = new Date(unixtimestamp);
|
||||||
@ -346,11 +325,13 @@ export default {
|
|||||||
return year + "-" + month.substring(month.length - 2, month.length) + "-" + date.substring(date.length - 2, date.length)
|
return year + "-" + month.substring(month.length - 2, month.length) + "-" + date.substring(date.length - 2, date.length)
|
||||||
},
|
},
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
this.listQuery.reportTime = val.reportTime ? val.reportTime : undefined;
|
// this.listQuery.reportTime = val.reportTime ? val.reportTime : undefined;
|
||||||
|
console.log(val)
|
||||||
switch (val.btnName) {
|
switch (val.btnName) {
|
||||||
case 'search':
|
case 'search':
|
||||||
this.listQuery.pageNo = 1;
|
this.listQuery.pageNo = 1
|
||||||
this.listQuery.pageSize = 10;
|
this.listQuery.pageSize = 10
|
||||||
|
this.listQuery.factory = val.factory ? val.factory : undefined
|
||||||
this.getDataList();
|
this.getDataList();
|
||||||
break;
|
break;
|
||||||
case 'export':
|
case 'export':
|
||||||
@ -421,4 +402,18 @@ export default {
|
|||||||
height: calc(100vh - 134px);
|
height: calc(100vh - 134px);
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
/* grid-template-columns: 1fr 1fr 1fr; */
|
||||||
|
gap: 20px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main {
|
||||||
|
width: calc((100% - 46px)/2);
|
||||||
|
/* border: 1px solid #D0D0D0; */
|
||||||
|
height: 400px;
|
||||||
|
/* background-color: #FFFFFF; */
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2022-01-21 14:43:06
|
* @Date: 2022-01-21 14:43:06
|
||||||
* @LastEditors: zhp
|
* @LastEditors: zhp
|
||||||
* @LastEditTime: 2024-04-16 14:16:17
|
* @LastEditTime: 2024-04-29 16:00:13
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -25,6 +25,10 @@ export default {
|
|||||||
type: String,
|
type: String,
|
||||||
default: 'OverviewLine'
|
default: 'OverviewLine'
|
||||||
},
|
},
|
||||||
|
data:{
|
||||||
|
type: Object,
|
||||||
|
default: () => {}
|
||||||
|
},
|
||||||
// className: {
|
// className: {
|
||||||
// type: String,
|
// type: String,
|
||||||
// default: 'epChart'
|
// default: 'epChart'
|
||||||
@ -39,7 +43,7 @@ export default {
|
|||||||
},
|
},
|
||||||
height: {
|
height: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '35vh'
|
default: '400px'
|
||||||
},
|
},
|
||||||
legendPosition: {
|
legendPosition: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -117,7 +121,7 @@ export default {
|
|||||||
initChart() {
|
initChart() {
|
||||||
console.log(1111)
|
console.log(1111)
|
||||||
let num = 0
|
let num = 0
|
||||||
this.chartData && this.chartData.length > 0 && this.chartData.map(i => {
|
this.data.child && this.data.child.length > 0 && this.data.child.map(i => {
|
||||||
num += i.num
|
num += i.num
|
||||||
})
|
})
|
||||||
if (
|
if (
|
||||||
@ -154,7 +158,7 @@ export default {
|
|||||||
textStyle: {
|
textStyle: {
|
||||||
color: 'rgba(140, 140, 140, 1)'
|
color: 'rgba(140, 140, 140, 1)'
|
||||||
},
|
},
|
||||||
data: this.chartData && this.chartData.length > 0 && this.chartData.map((item, index) => ({
|
data: this.data.child && this.data.child.length > 0 && this.data.child.map((item, index) => ({
|
||||||
name: item.name,
|
name: item.name,
|
||||||
itemStyle: {
|
itemStyle: {
|
||||||
color: this.colors[index % 4]
|
color: this.colors[index % 4]
|
||||||
@ -162,7 +166,7 @@ export default {
|
|||||||
}))
|
}))
|
||||||
},
|
},
|
||||||
series: [{
|
series: [{
|
||||||
name: 'ISRA缺陷检测',
|
name: this.data.factory,
|
||||||
type: 'pie',
|
type: 'pie',
|
||||||
// position:outerHeight,
|
// position:outerHeight,
|
||||||
center: ['50%', '40%'],
|
center: ['50%', '40%'],
|
||||||
@ -183,7 +187,7 @@ export default {
|
|||||||
},
|
},
|
||||||
formatter: (params) => {
|
formatter: (params) => {
|
||||||
//调用自定义显示格式
|
//调用自定义显示格式
|
||||||
return this.getEqualNewlineString(params.value + " | " + params.percent.toFixed(0) + "%" + "\n" + params.name, 10);
|
return this.getEqualNewlineString(params.value + " | " + params.percent.toFixed(0) + "%" + "\n\n" + params.name, 10);
|
||||||
},
|
},
|
||||||
textStyle: { // 提示文字的样式
|
textStyle: { // 提示文字的样式
|
||||||
// color: 'rgba(0, 0, 0, 0.65)',
|
// color: 'rgba(0, 0, 0, 0.65)',
|
||||||
@ -196,7 +200,7 @@ export default {
|
|||||||
length: 25,
|
length: 25,
|
||||||
length2: 100,
|
length2: 100,
|
||||||
},
|
},
|
||||||
data: this.chartData && this.chartData.length > 0 && this.chartData.map((item, index) => ({
|
data: this.data.child && this.data.child.length > 0 && this.data.child.map((item, index) => ({
|
||||||
name: item.name,
|
name: item.name,
|
||||||
value: item.num,
|
value: item.num,
|
||||||
label: {
|
label: {
|
||||||
|