flx:提交总览大屏和项目看板

This commit is contained in:
X_Rian 2024-06-19 22:24:42 +08:00
parent d430f578c4
commit 4f99277a9f
7 changed files with 32 additions and 10 deletions

View File

@ -4,8 +4,8 @@ NODE_ENV = 'development'
# 本地环境接口地址(/api/index.ts文件中使用)
# 后端本地
# VITE_API_URL = 'http://192.168.34.155:19111'
VITE_API_URL = 'http://192.168.34.221:9111' #雄哥本地
# VITE_API_URL = 'http://182.90.224.237:51234' #雄哥远程
# VITE_API_URL = 'http://192.168.34.221:9111' #雄哥本地
VITE_API_URL = 'http://182.90.224.237:51234' #雄哥远程
# VITE_API_URL = 'http://192.168.34.221:28889'
# VITE_API_URL = 'http://121.196.214.246/api'
# VITE_API_URL = 'http://jxj.zhgdyun.com:100'

View File

@ -29,9 +29,9 @@ export const BASE_IMAGE_URL = import.meta.env.VITE_BASE_IMAGE_URL;
// export const COMPANY: string = "as"; //鞍山项目
// export const COMPANY: string = "agjt"; //鞍钢集团
// export const COMPANY: string = "agjtLive"; //鞍钢集团现场大屏
export const COMPANY: string = "agjtCommand"; //鞍钢集团指挥部大屏
// export const COMPANY: string = "agjtCommand"; //鞍钢集团指挥部大屏
// export const COMPANY: string = "agjtProjectKanban"; //鞍钢集团项目看板大屏
// export const COMPANY: string = "agjtOverviewScreen"; //鞍钢集团项目总览
export const COMPANY: string = "agjtOverviewScreen"; //鞍钢集团项目总览
// export const COMPANY: string = "cqna"; //重庆市南岸区
// export const COMPANY: string = "slx"; //苏立信项目
// export const COMPANY: string = "hfqc"; //合肥启程项目

View File

@ -25,9 +25,9 @@ export const staticRouter: RouteRecordRaw[] = [
path: "/large",
name: "大屏",
// component: () => import("@/views/sevenLargeScreen/indexL.vue"), //七参数标准版
component: () => import("@/views/commandScreen/indexCommand.vue"), //指挥部大屏
// component: () => import("@/views/commandScreen/indexCommand.vue"), //指挥部大屏
// component: () => import("@/views/agjtLiveScreen/indexLive.vue"), //鞍钢现场大屏
// component: () => import("@/views/overviewScreen/indexCommand.vue"), //总览大屏
component: () => import("@/views/overviewScreen/indexCommand.vue"), //总览大屏
// component: () => import("@/views/agjtProjectKanban/indexL.vue"), //鞍钢集团项目看板大屏
// component: () => import("@/views/sevenLargeScreen/indexL_syhy.vue"), // 只有一级路由(盘锦、嘉兴、鄱湖美湾医疗项目需切换至该首页)
children: [

View File

@ -123,7 +123,7 @@ const drawOneEchart = () => {
},
series: [
{
name: "Access From",
// name: "Access From",
type: "pie",
top: "2%",
radius: ["35%", "60%"],

View File

@ -1,7 +1,7 @@
<template>
<div class="leftTop">
<Card title="各企业本周数据统计">
<el-carousel @change="onChange" style="width: 100%; height: 100%">
<el-carousel @change="onChange" indicator-position="none" style="width: 100%; height: 100%">
<el-carousel-item v-for="item in enterpriseInfo.dataList" :key="item.enterpriseId" style="width: 100%; height: 100%">
<div class="box-content">
<div class="top-content">
@ -231,5 +231,16 @@ onMounted(async () => {
border-radius: 50%;
opacity: 1;
}
.el-carousel__arrow--left {
// top: 70px;
left: -8px;
font-size: 15px;
}
.el-carousel__arrow--right {
// top: 70px;
right: -8px;
font-size: 15px;
}
}
</style>

View File

@ -187,7 +187,7 @@ function drawBar() {
},
series: [
{
name: "Access From",
// name: "Access From",
type: "pie",
radius: ["35%", "60%"],
avoidLabelOverlap: false,

View File

@ -41,7 +41,7 @@
</div>
<div class="enterprise-box">
<Card title="各企业本周数据统计">
<el-carousel @change="onChange" style="width: 100%; height: 100%">
<el-carousel @change="onChange" indicator-position="none" style="width: 100%; height: 100%">
<el-carousel-item v-for="item in enterpriseInfo.dataList" :key="item.enterpriseId" style="width: 100%; height: 100%">
<div class="enterprise-info">
<div>{{ item.enterpriseName }}</div>
@ -1133,6 +1133,17 @@ onMounted(async () => {
border-radius: 50%;
opacity: 1;
}
.el-carousel__arrow--left {
// top: 70px;
left: -8px;
font-size: 15px;
}
.el-carousel__arrow--right {
// top: 70px;
right: -8px;
font-size: 15px;
}
}
.scroll {