Compare commits
	
		
			12 Commits
		
	
	
		
			projects/l
			...
			projects/l
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| c9c8f82910 | |||
| d859ba62c8 | |||
| 31bafae4aa | |||
| 67b6b88863 | |||
| 
						 | 
					9f3cdcb1c4 | ||
| 
						 | 
					f11dfe04d5 | ||
| 428a0752eb | |||
| 4e801873b9 | |||
| 
						 | 
					463706663a | ||
| 
						 | 
					e8638687b1 | ||
| 6c46083d4a | |||
| 4da1e6f0b1 | 
							
								
								
									
										2
									
								
								.env.dev
									
									
									
									
									
								
							
							
						
						@@ -13,7 +13,7 @@ VUE_APP_TITLE = 智能监控分析系统
 | 
			
		||||
 | 
			
		||||
# 芋道管理系统/开发环境
 | 
			
		||||
# VUE_APP_BASE_API = 'http://192.168.8.22:48080'
 | 
			
		||||
VUE_APP_BASE_API = 'http://172.16.32.79:48082'
 | 
			
		||||
VUE_APP_BASE_API = 'http://172.16.33.65:48082'
 | 
			
		||||
 | 
			
		||||
# 路由懒加载
 | 
			
		||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
  "license": "MIT",
 | 
			
		||||
  "scripts": {
 | 
			
		||||
    "local": "vue-cli-service serve --mode local",
 | 
			
		||||
    "dev": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --mode dev",
 | 
			
		||||
    "dev": "vue-cli-service serve --mode dev",
 | 
			
		||||
    "front": "vue-cli-service serve --mode front",
 | 
			
		||||
    "build:prod": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build --mode prod",
 | 
			
		||||
    "build:stage": "vue-cli-service build --mode stage",
 | 
			
		||||
@@ -47,6 +47,7 @@
 | 
			
		||||
    "axios": "0.27.2",
 | 
			
		||||
    "benz-amr-recorder": "^1.1.5",
 | 
			
		||||
    "bpmn-js-token-simulation": "0.10.0",
 | 
			
		||||
    "chinese-lunar": "^0.1.4",
 | 
			
		||||
    "clipboard": "2.0.8",
 | 
			
		||||
    "code-brick-zj": "^1.0.2",
 | 
			
		||||
    "core-js": "^3.26.0",
 | 
			
		||||
 
 | 
			
		||||
@@ -27,8 +27,8 @@ export function getNewCTNow(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
		url: '/analysis/production-analysis/getNewCTNow',
 | 
			
		||||
		method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
		data: data,
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
// 获取产线平衡分析数据趋势图(new)
 | 
			
		||||
export function getNewCTCharts(data) {
 | 
			
		||||
@@ -39,9 +39,10 @@ export function getNewCTCharts(data) {
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 获取产线平衡分析数据设备list(new)
 | 
			
		||||
export function getNewCTDet(id) {
 | 
			
		||||
export function getNewCTDet(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/analysis/production-analysis/getNewCTDet?lineId='+id,
 | 
			
		||||
    method: 'get',
 | 
			
		||||
  })
 | 
			
		||||
		url: '/analysis/production-analysis/getNewCTDet',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data:data
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -41,6 +41,16 @@ export function getProductAuto(data) {
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function getPdlAutoReportNewSearchNow(data) {
 | 
			
		||||
	return request({
 | 
			
		||||
		url: '/monitoring/production-monitor/getPdlAutoReportNewSearchNow',
 | 
			
		||||
		method: 'post',
 | 
			
		||||
		data: data,
 | 
			
		||||
		timeout: 60000,
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// 班组自动报表分页
 | 
			
		||||
export function getTeamReportPage(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
@@ -57,3 +67,29 @@ export function getTeamReportPageDet(id) {
 | 
			
		||||
    method: 'get',
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获取产品当班数据
 | 
			
		||||
export function getProcessAutoReportGroup(data) {
 | 
			
		||||
	return request({
 | 
			
		||||
		url: '/monitoring/production-monitor/getProcessAutoReportGroup',
 | 
			
		||||
		method: 'post',
 | 
			
		||||
		data: data,
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获取产品当天数据
 | 
			
		||||
export function getProcessAutoReportDay(data) {
 | 
			
		||||
	return request({
 | 
			
		||||
		url: '/monitoring/production-monitor/getProcessAutoReportDay',
 | 
			
		||||
		method: 'post',
 | 
			
		||||
		data: data,
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
// 获取产品历史数据
 | 
			
		||||
export function getProcessAutoReportNew(data) {
 | 
			
		||||
	return request({
 | 
			
		||||
		url: '/monitoring/production-monitor/getProcessAutoReportNew',
 | 
			
		||||
		method: 'post',
 | 
			
		||||
		data: data,
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -14,3 +14,79 @@ export function getSectionDataSearch(data) {
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获取下片日志分页数据
 | 
			
		||||
export function getDownLogPage(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
		url: '/base/down-log/page',
 | 
			
		||||
		method: 'get',
 | 
			
		||||
		params: data,
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获取下片日志历史数据
 | 
			
		||||
export function getDownLogHisData(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
		url: '/base/down-log/pagehis',
 | 
			
		||||
		method: 'get',
 | 
			
		||||
		params: data,
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// 导出下片日志Excel
 | 
			
		||||
export function exportDownLogData(query) {
 | 
			
		||||
	return request({
 | 
			
		||||
		url: '/base/down-log/export-excel',
 | 
			
		||||
		method: 'get',
 | 
			
		||||
		params: query,
 | 
			
		||||
		responseType: 'blob',
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// 获得所有工厂产线列表
 | 
			
		||||
export function getPdList() {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/production-line/listAll',
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 获得玻璃型号列表
 | 
			
		||||
export function getThick() {
 | 
			
		||||
	return request({
 | 
			
		||||
		url: '/base/down-log/thick',
 | 
			
		||||
		method: 'get',
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获得原片报表
 | 
			
		||||
export function getCostOriginRadioHisData(data) {
 | 
			
		||||
	return request({
 | 
			
		||||
		url: '/monitoring/cost-origin-ratio-his/page',
 | 
			
		||||
		method: 'get',
 | 
			
		||||
		params: data,
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 修改原片报表
 | 
			
		||||
export function editCostOriginRadioHisData(data) {
 | 
			
		||||
	return request({
 | 
			
		||||
		url: '/monitoring/cost-origin-ratio-his/update',
 | 
			
		||||
		method: 'put',
 | 
			
		||||
		data: data,
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 导出原片报表
 | 
			
		||||
export function exportCostOriginRadioHisData(data) {
 | 
			
		||||
	return request({
 | 
			
		||||
		url: '/monitoring/cost-origin-ratio-his/export-excel',
 | 
			
		||||
		method: 'get',
 | 
			
		||||
		params: data,
 | 
			
		||||
		responseType: 'blob',
 | 
			
		||||
	});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										143
									
								
								src/api/group/Schedule.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,143 @@
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
 | 
			
		||||
// 删除排班计划配置基础信息
 | 
			
		||||
export function deleteGroupPlan(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/delete?id=' + id,
 | 
			
		||||
    method: 'delete'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// 获得排班计划配置基础信息分页
 | 
			
		||||
export function getGroupPlanPage(query) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/page',
 | 
			
		||||
    method: 'get',
 | 
			
		||||
    params: query
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获取code
 | 
			
		||||
export function getCode() {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/getCode',
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获得产线工段树形结构
 | 
			
		||||
export function getGroupPlanTree() {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/factory/getTreeSimple',
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 基础信息下一步至班组班次
 | 
			
		||||
export function createStepOne(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/createStepOne',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data:data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 班组班次上一步至基础信息
 | 
			
		||||
export function returnStepOne(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/returnStepOne?id='+id,
 | 
			
		||||
    method: 'delete',
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获取部门下可用班组
 | 
			
		||||
export function listByDeptId(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-team/listByDeptId?id='+id,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 作废计划
 | 
			
		||||
export function disablePlan(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/disablePlan?id='+id,
 | 
			
		||||
    method: 'delete',
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 同步节假日
 | 
			
		||||
export function updateScheduleLater(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday/updateScheduleLater',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data:data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 复制计划
 | 
			
		||||
export function copyPlan(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/copyPlan?id='+id,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 列表草稿编辑
 | 
			
		||||
export function draftEditing(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/draftEditing?id='+id,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 排班计划-详情
 | 
			
		||||
export function getPlan(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/get?id='+id,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 弹窗-取消
 | 
			
		||||
export function cancelStepThree(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/cancelStepThree?id='+id,
 | 
			
		||||
    method: 'delete',
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 第三步确认并执行 检查计划时间是否冲突,如果有,返回冲突的计划列表
 | 
			
		||||
export function checkPlan(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/checkPlan',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data:data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 第三步确认并执行 执行
 | 
			
		||||
export function createStepFour(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/createStepFour',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data:id
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 班组班次下一步至获取预览
 | 
			
		||||
export function createStepTwo(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/createStepTwo',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data:data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 获取预览上一步至班组班次
 | 
			
		||||
export function returnStepTwo(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/returnStepTwo?id='+id,
 | 
			
		||||
    method: 'delete',
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 第三步获取预览
 | 
			
		||||
export function getPerView(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-scheduling-plan/getPerView',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data:data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										18
									
								
								src/api/group/calendar.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,18 @@
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
 | 
			
		||||
// 获取部门及下级部门排班list
 | 
			
		||||
export function getDeptSchedulingList(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-team-scheduling/getDeptSchedulingList',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 某个班组的排班list
 | 
			
		||||
export function getClassSchedulingList(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-team-scheduling/getClassSchedulingList',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										47
									
								
								src/api/group/groupSetting.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,47 @@
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
 | 
			
		||||
// 创建班组基础信息
 | 
			
		||||
export function createGroup(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-team/create',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 更新班组基础信息
 | 
			
		||||
export function updateGroup(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-team/update',
 | 
			
		||||
    method: 'put',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// 获得班组基础信息
 | 
			
		||||
export function getGroup(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-team/get?id=' + id,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获得班组基础信息分页
 | 
			
		||||
export function getGroupPage(query) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-team/page',
 | 
			
		||||
    method: 'get',
 | 
			
		||||
    params: query
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获取班组code
 | 
			
		||||
export function getCode() {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-team/getCode',
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										92
									
								
								src/api/group/holidaySetting.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,92 @@
 | 
			
		||||
/*
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-18 21:24:37
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-22 14:34:29
 | 
			
		||||
 * @Description:
 | 
			
		||||
 */
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
 | 
			
		||||
// 获得节假日基础信息分页
 | 
			
		||||
export function deptHolidayPage(query) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday/page',
 | 
			
		||||
    method: 'get',
 | 
			
		||||
    params: query
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 获得部门节假日信息
 | 
			
		||||
export function deptHolidayList(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday/deptHolidayList',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// 创建节假日基础信息
 | 
			
		||||
export function createHoliday(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday/create',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 节假日操作后直接更新排班日历
 | 
			
		||||
export function updateSchedule(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday/updateSchedule',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 更新节假日基础信息
 | 
			
		||||
export function updateHoliday(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday/update',
 | 
			
		||||
    method: 'put',
 | 
			
		||||
    data: data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
// 删除节假日基础信息前校验是否影响排班
 | 
			
		||||
export function checkDeleteHoliday(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday/checkDelete?id=' + id,
 | 
			
		||||
    method: 'delete'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 删除
 | 
			
		||||
export function deleteHoliday(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday/delete?id=' + id,
 | 
			
		||||
    method: 'delete'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获得节假日基础信息
 | 
			
		||||
export function getHoliday(id) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday/get?id=' + id,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获得节假日变动日志分页
 | 
			
		||||
export function deptHolidayLogList(query) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-holiday-log/page',
 | 
			
		||||
    method: 'get',
 | 
			
		||||
    params: query
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 获得用户本人及以下的部门扁平化结构
 | 
			
		||||
export function getEnableData() {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: '/base/group-team-scheduling/getEnableData',
 | 
			
		||||
    method: 'get',
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/banzu.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.6 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/daoban.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 3.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/lianpai.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.3 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/images/xiujia.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/img/cold-data-board-msg1.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 16 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/img/cold-data-board-msg2.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 14 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/img/home-bg.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.2 MiB  | 
							
								
								
									
										
											BIN
										
									
								
								src/assets/img/home-progress-bg.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 936 B  | 
@@ -81,7 +81,7 @@ export default {
 | 
			
		||||
    border: none;
 | 
			
		||||
    background: #fff;
 | 
			
		||||
    border-radius: 8px;
 | 
			
		||||
    padding: 15px;
 | 
			
		||||
    padding: 16px;
 | 
			
		||||
    color: #888;
 | 
			
		||||
    letter-spacing: 2px;
 | 
			
		||||
    flex: 1;
 | 
			
		||||
 
 | 
			
		||||
@@ -81,7 +81,17 @@ export default {
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
  methods: {
 | 
			
		||||
    getUniqueTimes() {
 | 
			
		||||
      const { edgeCt, temperCt, downCt } = this.barData;
 | 
			
		||||
      // 合并所有包含时间的数组
 | 
			
		||||
      const allTimeEntries = [...(edgeCt || []), ...(temperCt || []), ...(downCt || [])];
 | 
			
		||||
      // 提取时间戳并去重(使用 Set)
 | 
			
		||||
      const uniqueTimes = [...new Set(allTimeEntries.map(item => item.recordTime))];
 | 
			
		||||
      // 按时间戳排序(确保时间顺序正确)
 | 
			
		||||
      return uniqueTimes.sort((a, b) => a - b);
 | 
			
		||||
    },
 | 
			
		||||
    initChart() {
 | 
			
		||||
      const uniqueTimes = this.getUniqueTimes();
 | 
			
		||||
			const _this = this;
 | 
			
		||||
			this.chart.setOption({
 | 
			
		||||
				title: {
 | 
			
		||||
@@ -124,9 +134,7 @@ export default {
 | 
			
		||||
				},
 | 
			
		||||
				xAxis: {
 | 
			
		||||
					type: 'category',
 | 
			
		||||
					data: this.barData.edgeCt.map((item) => {
 | 
			
		||||
						return parseTime(item.recordTime, '{m}-{d} {h}:{i}');
 | 
			
		||||
					}),
 | 
			
		||||
          data: uniqueTimes.map(time => parseTime(time, '{m}-{d} {h}:{i}')),
 | 
			
		||||
					axisPointer: {
 | 
			
		||||
						type: 'shadow',
 | 
			
		||||
					},
 | 
			
		||||
@@ -161,10 +169,13 @@ export default {
 | 
			
		||||
                return value + 'pcs/min';
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
						data: this.barData.edgeCt.map((item) => {
 | 
			
		||||
							return item.ct;
 | 
			
		||||
						}),
 | 
			
		||||
            data: uniqueTimes.map(time => {
 | 
			
		||||
              // 查找当前时间对应的 ct 值,没有则补 null(图表中会显示为断点)
 | 
			
		||||
              const match = this.barData.edgeCt.find(item => item.recordTime === time);
 | 
			
		||||
              return match ? match.ct : 0;
 | 
			
		||||
            })
 | 
			
		||||
          },
 | 
			
		||||
          // 钢化节拍
 | 
			
		||||
          {
 | 
			
		||||
            name: '钢化节拍',
 | 
			
		||||
            type: 'line',
 | 
			
		||||
@@ -173,10 +184,12 @@ export default {
 | 
			
		||||
                return value + 'pcs/min';
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
						data: this.barData.temperCt.map((item) => {
 | 
			
		||||
							return item.ct;
 | 
			
		||||
						}),
 | 
			
		||||
            data: uniqueTimes.map(time => {
 | 
			
		||||
              const match = this.barData.temperCt.find(item => item.recordTime === time);
 | 
			
		||||
              return match ? match.ct : 0;
 | 
			
		||||
            })
 | 
			
		||||
          },
 | 
			
		||||
          // 下片节拍
 | 
			
		||||
          {
 | 
			
		||||
            name: '下片节拍',
 | 
			
		||||
            type: 'line',
 | 
			
		||||
@@ -185,11 +198,12 @@ export default {
 | 
			
		||||
                return value + 'pcs/min';
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
						data: this.barData.downCt.map((item) => {
 | 
			
		||||
							return item.ct;
 | 
			
		||||
						}),
 | 
			
		||||
					},
 | 
			
		||||
				],
 | 
			
		||||
            data: uniqueTimes.map(time => {
 | 
			
		||||
              const match = this.barData.downCt.find(item => item.recordTime === time);
 | 
			
		||||
              return match ? match.ct : 0;
 | 
			
		||||
            })
 | 
			
		||||
          }
 | 
			
		||||
        ]
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
 
 | 
			
		||||
@@ -119,12 +119,12 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		// 获取数据列表
 | 
			
		||||
		init(lineId, startTime, endTime) {
 | 
			
		||||
		init(lId, startTime, endTime) {
 | 
			
		||||
			this.eqChartData = [];
 | 
			
		||||
			this.time.startTime = startTime;
 | 
			
		||||
			this.time.endTime = endTime;
 | 
			
		||||
			this.dataListLoading = true;
 | 
			
		||||
			getNewCTDet(lineId).then((response) => {
 | 
			
		||||
      getNewCTDet({ lineId: [lId], startTime, endTime }).then((response) => {
 | 
			
		||||
				this.tableData = response.data;
 | 
			
		||||
				this.dataListLoading = false;
 | 
			
		||||
			});
 | 
			
		||||
 
 | 
			
		||||
@@ -183,7 +183,7 @@ export default {
 | 
			
		||||
		// 获取当前时间
 | 
			
		||||
		const now = new Date();
 | 
			
		||||
		// 获取前一天的同一时间
 | 
			
		||||
		const yesterday = new Date(now.getTime() - 24 * 60 * 60 * 1000);
 | 
			
		||||
		const yesterday = new Date(now.getTime());
 | 
			
		||||
		// 设置为00:00:00
 | 
			
		||||
		yesterday.setHours(0, 0, 0, 0);
 | 
			
		||||
		// 设置为23:59:59
 | 
			
		||||
 
 | 
			
		||||
@@ -80,7 +80,7 @@ export default {
 | 
			
		||||
					defaultSelect: [],
 | 
			
		||||
					multiple: true,
 | 
			
		||||
					filterable: true,
 | 
			
		||||
					width: 400,
 | 
			
		||||
					width: 200,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
 
 | 
			
		||||
@@ -1,70 +1,40 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<el-drawer
 | 
			
		||||
		:visible.sync="visible"
 | 
			
		||||
		:show-close="false"
 | 
			
		||||
		:wrapper-closable="false"
 | 
			
		||||
		class="drawer"
 | 
			
		||||
		size="60%">
 | 
			
		||||
  <el-drawer :visible.sync="visible" :show-close="false" :wrapper-closable="false" class="drawer" size="60%">
 | 
			
		||||
    <small-title slot="title" :no-padding="true">
 | 
			
		||||
      {{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }}
 | 
			
		||||
    </small-title>
 | 
			
		||||
 | 
			
		||||
    <div class="content">
 | 
			
		||||
      <div class="visual-part">
 | 
			
		||||
				<el-form
 | 
			
		||||
					ref="dataForm"
 | 
			
		||||
					:model="dataForm"
 | 
			
		||||
					:rules="dataRule"
 | 
			
		||||
					label-width="100px"
 | 
			
		||||
					label-position="top"
 | 
			
		||||
        <el-form ref="dataForm" :model="dataForm" :rules="dataRule" label-width="100px" label-position="top"
 | 
			
		||||
          @keyup.enter.native="dataFormSubmit">
 | 
			
		||||
          <el-row :gutter="20">
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="产品编码" prop="code">
 | 
			
		||||
								<el-input
 | 
			
		||||
									v-model="dataForm.code"
 | 
			
		||||
									clearable
 | 
			
		||||
									:disabled="isdetail"
 | 
			
		||||
									placeholder="请输入产品编码" />
 | 
			
		||||
                <el-input v-model="dataForm.code" clearable :disabled="isdetail" placeholder="请输入产品编码" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="产品名称" prop="name">
 | 
			
		||||
								<el-input
 | 
			
		||||
									v-model="dataForm.name"
 | 
			
		||||
									clearable
 | 
			
		||||
									:disabled="isdetail"
 | 
			
		||||
									placeholder="请输入产品名称" />
 | 
			
		||||
                <el-input v-model="dataForm.name" clearable :disabled="isdetail" placeholder="请输入产品名称" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
          </el-row>
 | 
			
		||||
          <el-row :gutter="20">
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="产品类型" prop="typeDictValue">
 | 
			
		||||
								<el-select
 | 
			
		||||
									v-model="dataForm.typeDictValue"
 | 
			
		||||
									style="width: 100%"
 | 
			
		||||
									:disabled="isdetail"
 | 
			
		||||
                <el-select v-model="dataForm.typeDictValue" style="width: 100%" :disabled="isdetail"
 | 
			
		||||
                  placeholder="请选择产品类型">
 | 
			
		||||
									<el-option
 | 
			
		||||
										v-for="dict in getDictDatas(DICT_TYPE.PRODUCT_TYPE)"
 | 
			
		||||
										:key="dict.value"
 | 
			
		||||
										:label="dict.label"
 | 
			
		||||
                  <el-option v-for="dict in getDictDatas(DICT_TYPE.PRODUCT_TYPE)" :key="dict.value" :label="dict.label"
 | 
			
		||||
                    :value="dict.value" />
 | 
			
		||||
                </el-select>
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="单位" prop="unitDictValue">
 | 
			
		||||
								<el-select
 | 
			
		||||
									v-model="dataForm.unitDictValue"
 | 
			
		||||
									style="width: 100%"
 | 
			
		||||
									:disabled="isdetail"
 | 
			
		||||
                <el-select v-model="dataForm.unitDictValue" style="width: 100%" :disabled="isdetail"
 | 
			
		||||
                  placeholder="请选择单位">
 | 
			
		||||
									<el-option
 | 
			
		||||
										v-for="dict in getDictDatas(DICT_TYPE.UNIT_DICT)"
 | 
			
		||||
										:key="dict.value"
 | 
			
		||||
										:label="dict.label"
 | 
			
		||||
                  <el-option v-for="dict in getDictDatas(DICT_TYPE.UNIT_DICT)" :key="dict.value" :label="dict.label"
 | 
			
		||||
                    :value="dict.value" />
 | 
			
		||||
                </el-select>
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
@@ -73,80 +43,57 @@
 | 
			
		||||
          <el-row :gutter="20">
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="原片规格" prop="originalSpecifications">
 | 
			
		||||
								<el-input
 | 
			
		||||
									:disabled="isdetail"
 | 
			
		||||
									v-model="dataForm.originalSpecifications"
 | 
			
		||||
									placeholder="请输入原片规格" />
 | 
			
		||||
                <el-input :disabled="isdetail" v-model="dataForm.originalSpecifications" placeholder="请输入原片规格" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="原片单位平方数" prop="originalArea">
 | 
			
		||||
								<el-input
 | 
			
		||||
									:disabled="isdetail"
 | 
			
		||||
									v-model="dataForm.originalArea"
 | 
			
		||||
									placeholder="请输入原片单位平方数" />
 | 
			
		||||
                <el-input :disabled="isdetail" v-model="dataForm.originalArea" placeholder="请输入原片单位平方数" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
          </el-row>
 | 
			
		||||
          <el-row :gutter="20">
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="深加工规格" prop="specifications">
 | 
			
		||||
								<el-input
 | 
			
		||||
									:disabled="isdetail"
 | 
			
		||||
									v-model="dataForm.specifications"
 | 
			
		||||
									placeholder="请输入深加工规格" />
 | 
			
		||||
                <el-input :disabled="isdetail" v-model="dataForm.specifications" placeholder="请输入深加工规格" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="深加工单位平方数" prop="area">
 | 
			
		||||
								<el-input
 | 
			
		||||
									:disabled="isdetail"
 | 
			
		||||
									v-model="dataForm.area"
 | 
			
		||||
									placeholder="请输入深加工单位平方数" />
 | 
			
		||||
                <el-input :disabled="isdetail" v-model="dataForm.area" placeholder="请输入深加工单位平方数" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
          </el-row>
 | 
			
		||||
          <el-row :gutter="20">
 | 
			
		||||
						<el-col :span="24">
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="完成单位产品用时" prop="processTime">
 | 
			
		||||
								<el-input
 | 
			
		||||
									:disabled="isdetail"
 | 
			
		||||
									v-model="dataForm.processTime"
 | 
			
		||||
									placeholder="请输入完成单位产品用时" />
 | 
			
		||||
                <el-input :disabled="isdetail" v-model="dataForm.processTime" placeholder="请输入完成单位产品用时" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="	加工属性" prop="processType">
 | 
			
		||||
                <el-select v-model="dataForm.processType" clearable style="width: 100%" :disabled="isdetail"
 | 
			
		||||
                  placeholder="请选择加工属性">
 | 
			
		||||
                  <el-option v-for="dict in processTypeList" :key="dict.id" :label="dict.label"
 | 
			
		||||
                    :value="dict.id" />
 | 
			
		||||
                </el-select>
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
          </el-row>
 | 
			
		||||
        </el-form>
 | 
			
		||||
 | 
			
		||||
				<small-title
 | 
			
		||||
					style="margin: 16px 0; padding-left: 8px"
 | 
			
		||||
					:no-padding="true">
 | 
			
		||||
        <small-title style="margin: 16px 0; padding-left: 8px" :no-padding="true">
 | 
			
		||||
          产品属性列表
 | 
			
		||||
        </small-title>
 | 
			
		||||
 | 
			
		||||
        <div class="attr-list">
 | 
			
		||||
					<base-table
 | 
			
		||||
						:table-props="tableProps"
 | 
			
		||||
						:page="listQuery.pageNo"
 | 
			
		||||
						:limit="listQuery.pageSize"
 | 
			
		||||
						:add-button-show="isdetail ? null : '添加属性'"
 | 
			
		||||
						@emitButtonClick="addNew()"
 | 
			
		||||
						:table-data="productAttributeList">
 | 
			
		||||
						<method-btn
 | 
			
		||||
							v-if="!isdetail"
 | 
			
		||||
							slot="handleBtn"
 | 
			
		||||
							:width="120"
 | 
			
		||||
							label="操作"
 | 
			
		||||
							:method-list="tableBtn"
 | 
			
		||||
          <base-table :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize"
 | 
			
		||||
            :add-button-show="isdetail ? null : '添加属性'" @emitButtonClick="addNew()" :table-data="productAttributeList">
 | 
			
		||||
            <method-btn v-if="!isdetail" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
 | 
			
		||||
              @clickBtn="handleClick" />
 | 
			
		||||
          </base-table>
 | 
			
		||||
					<pagination
 | 
			
		||||
						v-show="listQuery.total > 0"
 | 
			
		||||
						:total="listQuery.total"
 | 
			
		||||
						:page.sync="listQuery.pageNo"
 | 
			
		||||
						:limit.sync="listQuery.pageSize"
 | 
			
		||||
						:page-sizes="[5, 10, 15]"
 | 
			
		||||
						@pagination="getList" />
 | 
			
		||||
          <pagination v-show="listQuery.total > 0" :total="listQuery.total" :page.sync="listQuery.pageNo"
 | 
			
		||||
            :limit.sync="listQuery.pageSize" :page-sizes="[5, 10, 15]" @pagination="getList" />
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
@@ -177,10 +124,7 @@
 | 
			
		||||
      </el-button>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
		<product-attr-add
 | 
			
		||||
			v-if="addOrUpdateVisible"
 | 
			
		||||
			ref="addOrUpdate"
 | 
			
		||||
			:product-id="dataForm.id"
 | 
			
		||||
    <product-attr-add v-if="addOrUpdateVisible" ref="addOrUpdate" :product-id="dataForm.id"
 | 
			
		||||
      @refreshDataList="getList" />
 | 
			
		||||
  </el-drawer>
 | 
			
		||||
</template>
 | 
			
		||||
@@ -247,12 +191,30 @@ export default {
 | 
			
		||||
				unitDictValue: '', // 单位id
 | 
			
		||||
				originalSpecifications: '', // 原片规格
 | 
			
		||||
        originalArea: 0, // 原片单位平方数
 | 
			
		||||
        processType:undefined,
 | 
			
		||||
			},
 | 
			
		||||
			listQuery: {
 | 
			
		||||
				pageSize: 10,
 | 
			
		||||
				pageNo: 1,
 | 
			
		||||
				total: 0,
 | 
			
		||||
      },
 | 
			
		||||
      processTypeList: [
 | 
			
		||||
        {
 | 
			
		||||
          id: '0',
 | 
			
		||||
          label:'压花丝印'
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          id: '1',
 | 
			
		||||
          label: '无印打孔'
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          id: '2',
 | 
			
		||||
          label: '单层镀膜'
 | 
			
		||||
        }, {
 | 
			
		||||
          id: '3',
 | 
			
		||||
          label: '双层镀膜'
 | 
			
		||||
        }
 | 
			
		||||
      ],
 | 
			
		||||
			dataRule: {
 | 
			
		||||
				code: [
 | 
			
		||||
					{
 | 
			
		||||
 
 | 
			
		||||
@@ -7,29 +7,15 @@
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="app-container">
 | 
			
		||||
		<search-bar
 | 
			
		||||
			:formConfigs="formConfig"
 | 
			
		||||
			ref="searchBarForm"
 | 
			
		||||
			@headBtnClick="buttonClick" />
 | 
			
		||||
		<base-table
 | 
			
		||||
			v-if="showData.length"
 | 
			
		||||
			class="right-aside"
 | 
			
		||||
			v-loading="dataListLoading"
 | 
			
		||||
			:table-props="tableProps"
 | 
			
		||||
			:page="listQuery.pageNo"
 | 
			
		||||
			:limit="listQuery.pageSize"
 | 
			
		||||
			:selectWidth="55"
 | 
			
		||||
			:table-data="showData"
 | 
			
		||||
			@selection-change="selectChange"
 | 
			
		||||
			>
 | 
			
		||||
 | 
			
		||||
    <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
 | 
			
		||||
    <base-table v-if="showData.length" class="right-aside" v-loading="dataListLoading" :table-props="tableProps"
 | 
			
		||||
      :page="listQuery.pageNo" :limit="listQuery.pageSize" :selectWidth="55" :table-data="showData"
 | 
			
		||||
      @selection-change="selectChange">
 | 
			
		||||
    </base-table>
 | 
			
		||||
    <div v-else class="no-data-bg"></div>
 | 
			
		||||
		<pagination
 | 
			
		||||
			:limit.sync="listQuery.pageSize"
 | 
			
		||||
			:page.sync="listQuery.pageNo"
 | 
			
		||||
			:total="listQuery.total"
 | 
			
		||||
			@pagination="getDataList"
 | 
			
		||||
		/>
 | 
			
		||||
    <pagination :limit.sync="listQuery.pageSize" :page.sync="listQuery.pageNo" :total="listQuery.total"
 | 
			
		||||
      @pagination="getDataList" />
 | 
			
		||||
    <!-- <div v-show="false" ref="pdf">
 | 
			
		||||
			<base-table
 | 
			
		||||
				v-loading="dataListLoading"
 | 
			
		||||
@@ -39,11 +25,7 @@
 | 
			
		||||
				:table-data="selectedList"
 | 
			
		||||
			/>
 | 
			
		||||
		</div> -->
 | 
			
		||||
		<el-dialog
 | 
			
		||||
			title="提示"
 | 
			
		||||
			:visible.sync="dialogVisible"
 | 
			
		||||
			width="30%"
 | 
			
		||||
			:before-close="handleClose">
 | 
			
		||||
    <el-dialog title="提示" :visible.sync="dialogVisible" width="30%" :before-close="handleClose">
 | 
			
		||||
      <el-button type="primary" @click="exportXlsx">xlsx</el-button>
 | 
			
		||||
      <el-button type="success" @click="exportPdf">pdf</el-button>
 | 
			
		||||
      <span slot="footer" class="dialog-footer">
 | 
			
		||||
@@ -204,6 +186,7 @@ export default {
 | 
			
		||||
			],
 | 
			
		||||
		};
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
	created() {
 | 
			
		||||
		this.getDataList()
 | 
			
		||||
		this.getPdLineList()
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										132
									
								
								src/views/core/monitoring/components/buttonNav.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,132 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-10-21 08:43:35
 | 
			
		||||
 * @LastEditTime: 2024-10-21 09:10:09
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description: Vue2版本的标签切换组件
 | 
			
		||||
-->
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <!-- 按钮切换 -->
 | 
			
		||||
  <div v-if="buttonMode" class="button-nav">
 | 
			
		||||
    <button v-for="m in menus" :key="m" :class="{ active: m === currentMenu }" :data-text="m"
 | 
			
		||||
      @click="handleMenuChange(m)"></button>
 | 
			
		||||
  </div>
 | 
			
		||||
  <!-- 标签切换 -->
 | 
			
		||||
  <div v-else class="custom-tabs" style="height: 100%; width: 100%">
 | 
			
		||||
    <el-tabs v-model="currentMenu" class="tag-nav" style="height: 100%">
 | 
			
		||||
      <el-tab-pane v-for="(m, idx) in menus" :key="m" :label="idx == 0 ? `\u2002${m}\u2002` : `\u3000${m}\u3000`"
 | 
			
		||||
        :name="m">
 | 
			
		||||
        <slot :name="`tab${idx + 1}`"></slot>
 | 
			
		||||
      </el-tab-pane>
 | 
			
		||||
    </el-tabs>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
  props: {
 | 
			
		||||
    menus: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      required: true,
 | 
			
		||||
      default: () => [],
 | 
			
		||||
      validator(val) {
 | 
			
		||||
        return val.length > 0;
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    buttonMode: {
 | 
			
		||||
      type: Boolean,
 | 
			
		||||
      default: true
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      currentMenu: this.menus[0] || ''
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    handleMenuChange(menu) {
 | 
			
		||||
      this.currentMenu = menu;
 | 
			
		||||
      this.$emit('change', menu);
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    currentMenu(val) {
 | 
			
		||||
      this.$emit('change', val);
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    if (this.menus.length > 0) {
 | 
			
		||||
      this.currentMenu = this.menus[0];
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.button-nav {
 | 
			
		||||
  width: 100%;
 | 
			
		||||
  padding: 12px 0;
 | 
			
		||||
  display: flex;
 | 
			
		||||
  gap: 12px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.button-nav * {
 | 
			
		||||
  user-select: none;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.button-nav button {
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
  appearance: none;
 | 
			
		||||
  outline: none;
 | 
			
		||||
  border: none;
 | 
			
		||||
  background: #fff;
 | 
			
		||||
  border-radius: 8px;
 | 
			
		||||
  border-bottom-left-radius: 5px;
 | 
			
		||||
  border-bottom-right-radius: 5px;
 | 
			
		||||
  padding: 20px;
 | 
			
		||||
  color: #888;
 | 
			
		||||
  letter-spacing: 2px;
 | 
			
		||||
  flex: 1;
 | 
			
		||||
  box-sizing: padding-box;
 | 
			
		||||
  position: relative;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.button-nav button::after {
 | 
			
		||||
  content: attr(data-text);
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  top: 10px;
 | 
			
		||||
  left: 50%;
 | 
			
		||||
  font-size: 18px;
 | 
			
		||||
  font-weight: 500;
 | 
			
		||||
  transform: translate(-50%);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.button-nav button.active {
 | 
			
		||||
  color: #111;
 | 
			
		||||
  border-bottom: 4px solid #0b58ff;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.custom-tabs /deep/ .el-tabs__header {
 | 
			
		||||
  margin-bottom: 8px;
 | 
			
		||||
  display: inline-block;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.custom-tabs /deep/ .el-tabs__item {
 | 
			
		||||
  padding-left: 0px !important;
 | 
			
		||||
  padding-right: 0px !important;
 | 
			
		||||
  line-height: 36px !important;
 | 
			
		||||
  height: 36px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.custom-tabs /deep/ .el-tabs__content {
 | 
			
		||||
  height: calc(100% - 42px);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.custom-tabs /deep/ .el-tab-pane {
 | 
			
		||||
  box-sizing: border-box;
 | 
			
		||||
  height: 100%;
 | 
			
		||||
  padding: 20px;
 | 
			
		||||
  border: 10px solid #f002;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										272
									
								
								src/views/core/monitoring/lineAuto/BarChart.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,272 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div :class="className" :style="{ height: height, width: width, marginLeft: '10px' }" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import * as echarts from 'echarts';
 | 
			
		||||
require('echarts/theme/macarons'); // 引入主题
 | 
			
		||||
import resize from '@/utils/chartMixins/resize';
 | 
			
		||||
 | 
			
		||||
const animationDuration = 1000;
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  mixins: [resize], // 混入 resize 逻辑(自适应窗口)
 | 
			
		||||
  props: {
 | 
			
		||||
    className: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: 'chart',
 | 
			
		||||
    },
 | 
			
		||||
    title: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: '',
 | 
			
		||||
    },
 | 
			
		||||
    width: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: '100%',
 | 
			
		||||
    },
 | 
			
		||||
    height: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: '300px',
 | 
			
		||||
    },
 | 
			
		||||
    barData: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => [],
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      chart: null, // 图表实例
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    // 监听 barData 变化(深度监听数组内部元素)
 | 
			
		||||
    barData: {
 | 
			
		||||
      deep: true,
 | 
			
		||||
      handler: 'handleBarDataChange', // 调用处理方法
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    // 组件挂载后初始化图表(确保 DOM 已就绪)
 | 
			
		||||
    this.$nextTick(() => {
 | 
			
		||||
      this.initChart();
 | 
			
		||||
    });
 | 
			
		||||
  },
 | 
			
		||||
  beforeDestroy() {
 | 
			
		||||
    // 组件销毁前清理图表实例
 | 
			
		||||
    if (this.chart) {
 | 
			
		||||
      this.chart.dispose();
 | 
			
		||||
      this.chart = null;
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    // barData 变化时的处理方法
 | 
			
		||||
    handleBarDataChange() {
 | 
			
		||||
      // 确保 DOM 存在再更新图表
 | 
			
		||||
      this.$nextTick(() => {
 | 
			
		||||
        // 如果图表未初始化,先初始化;否则直接更新数据
 | 
			
		||||
        if (!this.chart) {
 | 
			
		||||
          this.initChart();
 | 
			
		||||
        } else {
 | 
			
		||||
          this.updateChart();
 | 
			
		||||
        }
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    // 初始化图表
 | 
			
		||||
    initChart() {
 | 
			
		||||
      // 避免重复初始化(先销毁旧实例)
 | 
			
		||||
      if (this.chart) {
 | 
			
		||||
        this.chart.dispose();
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // 确保 DOM 元素存在
 | 
			
		||||
      if (!this.$el) {
 | 
			
		||||
        console.error('图表容器 DOM 元素不存在');
 | 
			
		||||
        return;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // 初始化图表实例
 | 
			
		||||
      this.chart = echarts.init(this.$el, 'macarons');
 | 
			
		||||
      // 设置图表配置
 | 
			
		||||
      this.setChartOption();
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    // 更新图表数据(复用配置逻辑)
 | 
			
		||||
    updateChart() {
 | 
			
		||||
      if (!this.chart) return;
 | 
			
		||||
      this.setChartOption();
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    // 图表配置项(抽离为单独方法,方便初始化和更新复用)
 | 
			
		||||
    setChartOption() {
 | 
			
		||||
      const dataValues = this.barData.flatMap(item => [item.inputNum || 0, item.outputNum || 0]);
 | 
			
		||||
      const maxData = Math.max(...dataValues, 0); // 加 0 确保无数据时 maxData 为 0
 | 
			
		||||
 | 
			
		||||
      // 2. 计算 Y 轴最大值(留 10% 余量,避免数据顶到顶部)
 | 
			
		||||
      let yMax = 0;
 | 
			
		||||
      if (maxData > 0) {
 | 
			
		||||
        yMax = Math.ceil(maxData * 1.1); // 向上取整,确保刻度为整数
 | 
			
		||||
      } else {
 | 
			
		||||
        yMax = 100; // 无数据时默认最大值为 100,避免 Y 轴消失
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // 3. 计算 interval(5 个刻度对应 4 个间隔,向上取整确保间隔为整数)
 | 
			
		||||
      const yInterval = Math.ceil((yMax - 0) / 4); // min 固定为 0,直接减 0
 | 
			
		||||
 | 
			
		||||
      this.chart.setOption({
 | 
			
		||||
        title: {
 | 
			
		||||
          text: this.title
 | 
			
		||||
            ? '{space|}{tip|}{space|}{value|' + this.title + '}'
 | 
			
		||||
            : '',
 | 
			
		||||
          textStyle: {
 | 
			
		||||
            rich: {
 | 
			
		||||
              tip: {
 | 
			
		||||
                width: 6,
 | 
			
		||||
                height: 6,
 | 
			
		||||
                borderRadius: 50,
 | 
			
		||||
                backgroundColor: '#288AFF',
 | 
			
		||||
              },
 | 
			
		||||
              space: {
 | 
			
		||||
                width: 8,
 | 
			
		||||
              },
 | 
			
		||||
              value: {
 | 
			
		||||
                fontSize: 14,
 | 
			
		||||
                color: 'black',
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        color: ['#288AFF', '#8EF0AB', '#FFDC94'],
 | 
			
		||||
        tooltip: {
 | 
			
		||||
          trigger: 'axis',
 | 
			
		||||
          axisPointer: {
 | 
			
		||||
            type: 'cross',
 | 
			
		||||
            crossStyle: {
 | 
			
		||||
              color: '#999',
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        legend: {
 | 
			
		||||
          data: ['投入', '产出', '加工成品率'],
 | 
			
		||||
        },
 | 
			
		||||
        grid: {
 | 
			
		||||
          left: 20,
 | 
			
		||||
          right: 30,
 | 
			
		||||
          top:40,
 | 
			
		||||
          bottom: 10,
 | 
			
		||||
 | 
			
		||||
          containLabel: true,
 | 
			
		||||
          splitArea: {
 | 
			
		||||
            show: false // 关键:关闭网格背景分区(去掉间隔色块)
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        xAxis: {
 | 
			
		||||
          type: 'category',
 | 
			
		||||
          data: this.barData.map((item) => item.lineName),
 | 
			
		||||
          axisLine: {
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)',
 | 
			
		||||
              width: 1 // 轴线宽度(可选,默认 1,可按需调整)
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          // 2. 控制 X 轴刻度线颜色(与轴线颜色保持一致,视觉统一)
 | 
			
		||||
          axisTick: {
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)', // 刻度线颜色,需与轴线颜色匹配
 | 
			
		||||
              width: 1 // 刻度线宽度(可选)
 | 
			
		||||
            },
 | 
			
		||||
            alignWithLabel: true // 可选:让刻度线与文字对齐(避免文字偏移时刻度线错位)
 | 
			
		||||
          },
 | 
			
		||||
          // 3. 控制 X 轴文字颜色(如:深灰色 rgba(0, 0, 0, 0.45))
 | 
			
		||||
          axisLabel: {
 | 
			
		||||
            color: 'rgba(0, 0, 0, 0.45)6', // 文字颜色,可自定义
 | 
			
		||||
            fontSize: 12, // 可选:调整文字大小(默认 12,按需修改)
 | 
			
		||||
            // 可选:文字过长时换行/省略(避免文字重叠,按需开启)
 | 
			
		||||
            formatter: (value) => {
 | 
			
		||||
              // 示例:文字超过 6 个字符时换行(可根据需求调整字符数)
 | 
			
		||||
              if (value.length > 6) {
 | 
			
		||||
                return value.slice(0, 6) + '\n' + value.slice(6);
 | 
			
		||||
              }
 | 
			
		||||
              return value;
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          // 原有配置(若需保留可解开注释)
 | 
			
		||||
          // axisPointer: {
 | 
			
		||||
          //   type: 'shadow',
 | 
			
		||||
          // }
 | 
			
		||||
        },
 | 
			
		||||
        yAxis: [
 | 
			
		||||
          {
 | 
			
		||||
            type: 'value',
 | 
			
		||||
            name: '投入/产出 片',
 | 
			
		||||
            min: 0, // 最小值固定为 0
 | 
			
		||||
            max: yMax,
 | 
			
		||||
            interval: yInterval,
 | 
			
		||||
            splitArea: {
 | 
			
		||||
              show: false
 | 
			
		||||
            },
 | 
			
		||||
            axisLabel: {
 | 
			
		||||
              formatter: '{value}',
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)'
 | 
			
		||||
            },
 | 
			
		||||
 | 
			
		||||
            // 可选:修改 Y 轴名称颜色(与文字颜色保持一致)
 | 
			
		||||
            nameTextStyle: {
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)'
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            type: 'value',
 | 
			
		||||
            name: '加工成品率',
 | 
			
		||||
            min: 0,
 | 
			
		||||
            max: 100, // 成品率固定 0-100%
 | 
			
		||||
            interval: 25, // 100 / 4 = 25,刚好 5 个刻度(0、25、50、75、100)
 | 
			
		||||
            axisLabel: {
 | 
			
		||||
              formatter: '{value} %',
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)'
 | 
			
		||||
            },
 | 
			
		||||
            splitArea: {
 | 
			
		||||
              show: false
 | 
			
		||||
            },
 | 
			
		||||
            // 可选:修改 Y 轴名称颜色
 | 
			
		||||
            nameTextStyle: {
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)'
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
        ],
 | 
			
		||||
        series: [
 | 
			
		||||
          {
 | 
			
		||||
            name: '投入',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barWidth: '20',
 | 
			
		||||
            data: this.barData.map((item) => item.inputNum),
 | 
			
		||||
            tooltip: {
 | 
			
		||||
              valueFormatter: (value) => `${value} 片`,
 | 
			
		||||
            },
 | 
			
		||||
            animationDuration,
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '产出',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barWidth: '20',
 | 
			
		||||
            data: this.barData.map((item) => item.outputNum),
 | 
			
		||||
            tooltip: {
 | 
			
		||||
              valueFormatter: (value) => `${value} 片`,
 | 
			
		||||
            },
 | 
			
		||||
            animationDuration,
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '加工成品率',
 | 
			
		||||
            type: 'line',
 | 
			
		||||
            yAxisIndex: 1,
 | 
			
		||||
            tooltip: {
 | 
			
		||||
              valueFormatter: (value) => `${value} %`,
 | 
			
		||||
            },
 | 
			
		||||
            data: this.barData.map((item) => item.processingRatio),
 | 
			
		||||
          },
 | 
			
		||||
        ],
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										361
									
								
								src/views/core/monitoring/nextClip/hisData.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,361 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: Do not edit
 | 
			
		||||
 * @Date: 2023-08-29 14:59:29
 | 
			
		||||
 * @LastEditTime: 2024-12-02 13:44:47
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="app-container">
 | 
			
		||||
		<!-- :isFold="true" 控制展开 -->
 | 
			
		||||
		<search-bar
 | 
			
		||||
			:formConfigs="formConfig"
 | 
			
		||||
			ref="searchBarForm"
 | 
			
		||||
			@headBtnClick="buttonClick" />
 | 
			
		||||
		<base-table
 | 
			
		||||
			v-if="showData.length"
 | 
			
		||||
			class="right-aside"
 | 
			
		||||
			v-loading="dataListLoading"
 | 
			
		||||
			:table-props="tableProps"
 | 
			
		||||
			:page="listQuery.pageNo"
 | 
			
		||||
			:limit="listQuery.pageSize"
 | 
			
		||||
			:table-data="showData"
 | 
			
		||||
			>
 | 
			
		||||
			<!-- <method-btn
 | 
			
		||||
				v-if="tableBtn.length"
 | 
			
		||||
				slot="handleBtn"
 | 
			
		||||
				:width="120"
 | 
			
		||||
				label="操作"
 | 
			
		||||
				:method-list="tableBtn"
 | 
			
		||||
				@clickBtn="handleClick" /> -->
 | 
			
		||||
		</base-table>
 | 
			
		||||
		<div v-else class="no-data-bg"></div>
 | 
			
		||||
		<pagination
 | 
			
		||||
			:limit.sync="listQuery.pageSize"
 | 
			
		||||
			:page.sync="listQuery.pageNo"
 | 
			
		||||
			:total="listQuery.total"
 | 
			
		||||
			@pagination="getDataList" />
 | 
			
		||||
		<!-- <el-dialog
 | 
			
		||||
			title="提示"
 | 
			
		||||
			:visible.sync="dialogVisible"
 | 
			
		||||
			width="30%"
 | 
			
		||||
			:before-close="handleClose">
 | 
			
		||||
			<el-button type="primary" @click="exportXlsx">xlsx</el-button>
 | 
			
		||||
  		<el-button type="success" @click="exportPdf">pdf</el-button>
 | 
			
		||||
			<span slot="footer" class="dialog-footer">
 | 
			
		||||
				<el-button @click="dialogVisible = false">取 消</el-button>
 | 
			
		||||
				<el-button type="primary" @click="dialogVisible = false">确 定</el-button>
 | 
			
		||||
			</span>
 | 
			
		||||
		</el-dialog> -->
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { parseTime } from '../../mixins/code-filter';
 | 
			
		||||
import { getDownLogHisData, getPdList, getThick  } from '@/api/core/monitoring/index'
 | 
			
		||||
import * as XLSX from 'xlsx'
 | 
			
		||||
import FileSaver from 'file-saver'
 | 
			
		||||
import jsPDF from 'jspdf'
 | 
			
		||||
import html2canvas from 'html2canvas'
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'productionLineName',
 | 
			
		||||
		label: '产线'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'eqName',
 | 
			
		||||
    label: '下片机械手编号'
 | 
			
		||||
  },
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'pos',
 | 
			
		||||
		label: '工位编号'
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'pallet',
 | 
			
		||||
    label: '托数/托'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'palletNum',
 | 
			
		||||
    label: '下片托数'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'startTime',
 | 
			
		||||
    label: '开始时间',
 | 
			
		||||
    filter: parseTime,
 | 
			
		||||
    width: 160
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'endTime',
 | 
			
		||||
    label: '结束时间',
 | 
			
		||||
    filter: parseTime,
 | 
			
		||||
    width: 160
 | 
			
		||||
  },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outputNum',
 | 
			
		||||
    label: '玻璃长度/mm'
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'width',
 | 
			
		||||
    label: '玻璃宽度/mm',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'thick',
 | 
			
		||||
    label: '玻璃长度/mm'
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			urlOptions: {
 | 
			
		||||
        getDataListURL: getDownLogHisData
 | 
			
		||||
			},
 | 
			
		||||
      tableData: [],
 | 
			
		||||
      listQuery: {
 | 
			
		||||
        pageSize: 10,
 | 
			
		||||
        pageNo: 1,
 | 
			
		||||
        total: 1,
 | 
			
		||||
        eqName: undefined,
 | 
			
		||||
        productionLineId: undefined,
 | 
			
		||||
        thick:undefined
 | 
			
		||||
      },
 | 
			
		||||
      exportLoading: false,
 | 
			
		||||
      dataListLoading: false,
 | 
			
		||||
			selectedList: [],
 | 
			
		||||
			dialogVisible: false,
 | 
			
		||||
      addOrEditTitle: '',
 | 
			
		||||
      addOrUpdateVisible: false,
 | 
			
		||||
			tableProps,
 | 
			
		||||
      tableBtn: [
 | 
			
		||||
        {
 | 
			
		||||
          type: 'his',
 | 
			
		||||
          btnName: '历史',
 | 
			
		||||
        },
 | 
			
		||||
      ].filter((v) => v),
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			showData: [],
 | 
			
		||||
			fileName: '',
 | 
			
		||||
			formConfig: [
 | 
			
		||||
				{
 | 
			
		||||
					type: 'select',
 | 
			
		||||
					label: '产线',
 | 
			
		||||
					selectOptions: [],
 | 
			
		||||
          param: 'productionLineId'
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          type: 'select',
 | 
			
		||||
          label: '玻璃型号',
 | 
			
		||||
          selectOptions: [],
 | 
			
		||||
          param: 'thick'
 | 
			
		||||
        },
 | 
			
		||||
				{
 | 
			
		||||
          type: 'datePicker',
 | 
			
		||||
          label: '统计开始时间',
 | 
			
		||||
          dateType: 'daterange',
 | 
			
		||||
          format: 'yyyy-MM-dd',
 | 
			
		||||
          valueFormat: "yyyy-MM-dd HH:mm:ss",
 | 
			
		||||
          rangeSeparator: '-',
 | 
			
		||||
          startPlaceholder: '开始时间',
 | 
			
		||||
          endPlaceholder: '结束时间',
 | 
			
		||||
          param: 'timeVal',
 | 
			
		||||
          defaultTime: ['00:00:00', '23:59:59'],
 | 
			
		||||
          defaultSelect: []
 | 
			
		||||
        },
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '查询',
 | 
			
		||||
					name: 'search',
 | 
			
		||||
					color: 'primary',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'separate',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					// type: this.$auth.hasPermi('base:factory:export') ? 'button' : '',
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '导出',
 | 
			
		||||
					name: 'export',
 | 
			
		||||
					color: 'warning',
 | 
			
		||||
				}
 | 
			
		||||
			],
 | 
			
		||||
		};
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.$refs.searchBarForm.formInline.productionLineId = this.$route.query.productionLineId
 | 
			
		||||
    this.$refs.searchBarForm.formInline.thick = this.$route.query.thick
 | 
			
		||||
    this.listQuery.productionLineId = this.$route.query.productionLineId
 | 
			
		||||
    this.listQuery.thick = this.$route.query.thick
 | 
			
		||||
    this.getDataList()
 | 
			
		||||
    this.getPdLineList()
 | 
			
		||||
    console.log('this.$route.query', this.$route.query);
 | 
			
		||||
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    		handleClick(val) {
 | 
			
		||||
			this.addOrUpdateVisible = true;
 | 
			
		||||
			this.addOrEditTitle =
 | 
			
		||||
				val.data?.factoryName + '-' + val.data?.lineName + ' 详情';
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.$refs.eqDetail.init(
 | 
			
		||||
					val.data.lineId,
 | 
			
		||||
					this.listQuery.startTime,
 | 
			
		||||
					this.listQuery.endTime
 | 
			
		||||
				);
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		test() {
 | 
			
		||||
			var target = document.getElementsByClassName("right-aside")[0]
 | 
			
		||||
			target.style.background = '#FFFFFF'
 | 
			
		||||
			var that = this
 | 
			
		||||
			setTimeout(() => {
 | 
			
		||||
				html2canvas(target).then(function(canvas) {
 | 
			
		||||
						var contentWidth = canvas.width
 | 
			
		||||
						var contentHeight = canvas.height
 | 
			
		||||
 | 
			
		||||
						// 一页pdf显示html页面生成的canvas高度
 | 
			
		||||
						var pageHeight = contentHeight / 592.28 * 841.89
 | 
			
		||||
						// 未生成pdf的html页面高度
 | 
			
		||||
						var leftHeight = contentHeight
 | 
			
		||||
						// 页面偏移
 | 
			
		||||
						var position = 0
 | 
			
		||||
						// a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的高度
 | 
			
		||||
						var imgWidth = 595.28
 | 
			
		||||
						var imgHeight = 592.28 / contentWidth * contentHeight
 | 
			
		||||
 | 
			
		||||
						var pageData = canvas.toDataURL('image/jpeg', 1.0)
 | 
			
		||||
 | 
			
		||||
						console.log('nihc URL', leftHeight, pageHeight)
 | 
			
		||||
 | 
			
		||||
						var pdf = new jsPDF('', 'pt', 'a4')
 | 
			
		||||
 | 
			
		||||
						if (leftHeight < pageHeight) {
 | 
			
		||||
							pdf.addImage(pageData, 'JPEG', 0, 20, imgWidth, imgHeight)
 | 
			
		||||
						} else {
 | 
			
		||||
							while(leftHeight > 0) {
 | 
			
		||||
								pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
 | 
			
		||||
								leftHeight -= pageHeight
 | 
			
		||||
								position -= 841.89
 | 
			
		||||
								// 避免空白页
 | 
			
		||||
								if (leftHeight > 0) {
 | 
			
		||||
									pdf.addPage()
 | 
			
		||||
								}
 | 
			
		||||
							}
 | 
			
		||||
						}
 | 
			
		||||
 | 
			
		||||
						pdf.save(that.fileName + '工段统计.pdf')
 | 
			
		||||
				})
 | 
			
		||||
			}, 300)
 | 
			
		||||
		},
 | 
			
		||||
		exportECL() {
 | 
			
		||||
			let tables = document.querySelector('.el-table').cloneNode(true)
 | 
			
		||||
			const fix = tables.querySelector('.el-table__fixed')
 | 
			
		||||
			const fixRight = tables.querySelector('.el-table__fixed-right')
 | 
			
		||||
			if (fix) {
 | 
			
		||||
				tables.removeChild(tables.querySelector('.el-table__fixed'))
 | 
			
		||||
			}
 | 
			
		||||
			if (fixRight) {
 | 
			
		||||
				tables.removeChild(tables.querySelector('.el-table__fixed-right'))
 | 
			
		||||
			}
 | 
			
		||||
			let exportTable = XLSX.utils.table_to_book(tables)
 | 
			
		||||
 | 
			
		||||
      var exportTableOut = XLSX.write(exportTable, {
 | 
			
		||||
        bookType: 'xlsx', bookSST: true, type: 'array'
 | 
			
		||||
      })
 | 
			
		||||
      // sheetjs.xlsx为导出表格的标题名称
 | 
			
		||||
      try {
 | 
			
		||||
        FileSaver.saveAs(new Blob([exportTableOut], {
 | 
			
		||||
          type: 'application/octet-stream'
 | 
			
		||||
        }), this.fileName + '工段统计.xlsx')
 | 
			
		||||
      } catch (e) {
 | 
			
		||||
        if (typeof console !== 'undefined') console.log(e, exportTableOut)
 | 
			
		||||
      }
 | 
			
		||||
      return exportTableOut
 | 
			
		||||
    },
 | 
			
		||||
		exportPdf() {
 | 
			
		||||
			this.test()
 | 
			
		||||
			setTimeout(() =>{
 | 
			
		||||
				this.dialogVisible = false
 | 
			
		||||
				this.showData = this.tableData
 | 
			
		||||
			}, 600)
 | 
			
		||||
 | 
			
		||||
		},
 | 
			
		||||
		exportXlsx() {
 | 
			
		||||
			this.exportECL()
 | 
			
		||||
			this.dialogVisible = false
 | 
			
		||||
			this.showData = this.tableData
 | 
			
		||||
		},
 | 
			
		||||
		handleClose(done) {
 | 
			
		||||
			this.$confirm('确认关闭?')
 | 
			
		||||
				.then(_ => {
 | 
			
		||||
					done();
 | 
			
		||||
				})
 | 
			
		||||
				.catch(_ => {});
 | 
			
		||||
		},
 | 
			
		||||
		getPdLineList() {
 | 
			
		||||
			getPdList().then((res) => {
 | 
			
		||||
				this.formConfig[0].selectOptions = res.data || []
 | 
			
		||||
			})
 | 
			
		||||
      getThick().then((res) => {
 | 
			
		||||
        this.formConfig[1].selectOptions = res.data.map((item) => {
 | 
			
		||||
          return {
 | 
			
		||||
            id: item.thick + 'mm',
 | 
			
		||||
            name: item.thick + 'mm'
 | 
			
		||||
          }
 | 
			
		||||
        })
 | 
			
		||||
			})
 | 
			
		||||
		},
 | 
			
		||||
		selectChange(val) {
 | 
			
		||||
      console.log(val)
 | 
			
		||||
      this.selectedList = val
 | 
			
		||||
    },
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
          this.listQuery.productId = val.productId ? val.productId : undefined;
 | 
			
		||||
          this.listQuery.startTime = val.timeVal ? val.timeVal[0]: undefined;
 | 
			
		||||
          this.listQuery.endTime = val.timeVal ? val.timeVal[1]: undefined;
 | 
			
		||||
 | 
			
		||||
					//this.listQuery.reportEndTime = val.timeVal ? [new Date(val.timeVal[1]).getTime()] : undefined;
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
					console.log(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		// 获取数据列表
 | 
			
		||||
    getDataList() {
 | 
			
		||||
      this.listQuery.eqName = this.$route.query.eqName
 | 
			
		||||
      this.dataListLoading = true;
 | 
			
		||||
      this.urlOptions.getDataListURL(this.listQuery).then(response => {
 | 
			
		||||
        this.tableData = response.data.list
 | 
			
		||||
				this.showData = this.tableData
 | 
			
		||||
        this.listQuery.total = response.data.total;
 | 
			
		||||
        this.dataListLoading = false;
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
    // 每页数
 | 
			
		||||
    sizeChangeHandle(val) {
 | 
			
		||||
      this.listQuery.pageSize = val;
 | 
			
		||||
      this.listQuery.pageNo = 1;
 | 
			
		||||
      this.getDataList();
 | 
			
		||||
    },
 | 
			
		||||
    // 当前页
 | 
			
		||||
    currentChangeHandle(val) {
 | 
			
		||||
      this.listQuery.pageNo = val;
 | 
			
		||||
      this.getDataList();
 | 
			
		||||
    },
 | 
			
		||||
		handleExport() {
 | 
			
		||||
			if (this.selectedList.length > 0) {
 | 
			
		||||
				this.showData = this.selectedList
 | 
			
		||||
			}
 | 
			
		||||
			this.dialogVisible = true
 | 
			
		||||
    }
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										373
									
								
								src/views/core/monitoring/nextClip/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,373 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: Do not edit
 | 
			
		||||
 * @Date: 2023-08-29 14:59:29
 | 
			
		||||
 * @LastEditTime: 2024-12-02 13:44:47
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="app-container">
 | 
			
		||||
		<!-- :isFold="true" 控制展开 -->
 | 
			
		||||
		<search-bar
 | 
			
		||||
			:formConfigs="formConfig"
 | 
			
		||||
			ref="searchBarForm"
 | 
			
		||||
			@headBtnClick="buttonClick" />
 | 
			
		||||
		<base-table
 | 
			
		||||
			v-if="showData.length"
 | 
			
		||||
			class="right-aside"
 | 
			
		||||
			v-loading="dataListLoading"
 | 
			
		||||
			:table-props="tableProps"
 | 
			
		||||
			:page="listQuery.pageNo"
 | 
			
		||||
			:limit="listQuery.pageSize"
 | 
			
		||||
			:table-data="showData"
 | 
			
		||||
			>
 | 
			
		||||
			<method-btn
 | 
			
		||||
				v-if="tableBtn.length"
 | 
			
		||||
				slot="handleBtn"
 | 
			
		||||
				:width="120"
 | 
			
		||||
				label="操作"
 | 
			
		||||
				:method-list="tableBtn"
 | 
			
		||||
				@clickBtn="handleClick" />
 | 
			
		||||
		</base-table>
 | 
			
		||||
		<div v-else class="no-data-bg"></div>
 | 
			
		||||
		<pagination
 | 
			
		||||
			:limit.sync="listQuery.pageSize"
 | 
			
		||||
			:page.sync="listQuery.pageNo"
 | 
			
		||||
			:total="listQuery.total"
 | 
			
		||||
			@pagination="getDataList" />
 | 
			
		||||
		<!-- <el-dialog
 | 
			
		||||
			title="提示"
 | 
			
		||||
			:visible.sync="dialogVisible"
 | 
			
		||||
			width="30%"
 | 
			
		||||
			:before-close="handleClose">
 | 
			
		||||
			<el-button type="primary" @click="exportXlsx">xlsx</el-button>
 | 
			
		||||
  		<el-button type="success" @click="exportPdf">pdf</el-button>
 | 
			
		||||
			<span slot="footer" class="dialog-footer">
 | 
			
		||||
				<el-button @click="dialogVisible = false">取 消</el-button>
 | 
			
		||||
				<el-button type="primary" @click="dialogVisible = false">确 定</el-button>
 | 
			
		||||
			</span>
 | 
			
		||||
		</el-dialog> -->
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { parseTime } from '../../mixins/code-filter';
 | 
			
		||||
import { getDownLogPage, getPdList, getThick, exportDownLogData  } from '@/api/core/monitoring/index'
 | 
			
		||||
import * as XLSX from 'xlsx'
 | 
			
		||||
import FileSaver from 'file-saver'
 | 
			
		||||
import jsPDF from 'jspdf'
 | 
			
		||||
import html2canvas from 'html2canvas'
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'productionLineName',
 | 
			
		||||
		label: '产线'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'eqName',
 | 
			
		||||
    label: '下片机械手编号'
 | 
			
		||||
  },
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'pos',
 | 
			
		||||
		label: '工位编号'
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'pallet',
 | 
			
		||||
    label: '托数/托'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'palletNum',
 | 
			
		||||
    label: '下片托数'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'startTime',
 | 
			
		||||
    label: '开始时间',
 | 
			
		||||
    filter: parseTime,
 | 
			
		||||
    width: 160
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'endTime',
 | 
			
		||||
    label: '结束时间',
 | 
			
		||||
    filter: parseTime,
 | 
			
		||||
    width: 160
 | 
			
		||||
  },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outputNum',
 | 
			
		||||
    label: '玻璃长度/mm'
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'width',
 | 
			
		||||
    label: '玻璃宽度/mm',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'thick',
 | 
			
		||||
    label: '玻璃厚度/mm'
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			urlOptions: {
 | 
			
		||||
				getDataListURL: getDownLogPage
 | 
			
		||||
			},
 | 
			
		||||
      tableData: [],
 | 
			
		||||
      listQuery: {
 | 
			
		||||
        pageSize: 10,
 | 
			
		||||
        pageNo: 1,
 | 
			
		||||
        total: 1,
 | 
			
		||||
        productionLineId: undefined,
 | 
			
		||||
        thick: undefined,
 | 
			
		||||
 | 
			
		||||
      },
 | 
			
		||||
      exportLoading: false,
 | 
			
		||||
      dataListLoading: false,
 | 
			
		||||
			selectedList: [],
 | 
			
		||||
			dialogVisible: false,
 | 
			
		||||
      addOrEditTitle: '',
 | 
			
		||||
      addOrUpdateVisible: false,
 | 
			
		||||
			tableProps,
 | 
			
		||||
      tableBtn: [
 | 
			
		||||
        {
 | 
			
		||||
          type: 'his',
 | 
			
		||||
          btnName: '历史',
 | 
			
		||||
        },
 | 
			
		||||
      ].filter((v) => v),
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			showData: [],
 | 
			
		||||
			fileName: '',
 | 
			
		||||
			formConfig: [
 | 
			
		||||
				{
 | 
			
		||||
					type: 'select',
 | 
			
		||||
					label: '产线',
 | 
			
		||||
					selectOptions: [],
 | 
			
		||||
          param: 'productionLineId'
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          type: 'select',
 | 
			
		||||
          label: '玻璃型号',
 | 
			
		||||
          selectOptions: [],
 | 
			
		||||
          param: 'thick'
 | 
			
		||||
        },
 | 
			
		||||
				{
 | 
			
		||||
          type: 'datePicker',
 | 
			
		||||
          label: '统计开始时间',
 | 
			
		||||
          dateType: 'daterange',
 | 
			
		||||
          format: 'yyyy-MM-dd',
 | 
			
		||||
          valueFormat: "yyyy-MM-dd HH:mm:ss",
 | 
			
		||||
          rangeSeparator: '-',
 | 
			
		||||
          startPlaceholder: '开始时间',
 | 
			
		||||
          endPlaceholder: '结束时间',
 | 
			
		||||
          param: 'timeVal',
 | 
			
		||||
          defaultTime: ['00:00:00', '23:59:59'],
 | 
			
		||||
          defaultSelect: []
 | 
			
		||||
        },
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '查询',
 | 
			
		||||
					name: 'search',
 | 
			
		||||
					color: 'primary',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'separate',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					// type: this.$auth.hasPermi('base:factory:export') ? 'button' : '',
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '导出',
 | 
			
		||||
					name: 'export',
 | 
			
		||||
					color: 'warning',
 | 
			
		||||
				}
 | 
			
		||||
			],
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	created() {
 | 
			
		||||
		this.getDataList()
 | 
			
		||||
		this.getPdLineList()
 | 
			
		||||
	},
 | 
			
		||||
  methods: {
 | 
			
		||||
    handleClick(val) {
 | 
			
		||||
      console.log(val);
 | 
			
		||||
      if (val.type === 'his') {
 | 
			
		||||
        this.$router.push({
 | 
			
		||||
          path: 'nextClipHis',
 | 
			
		||||
          query: {
 | 
			
		||||
            eqName: val.data.eqName,
 | 
			
		||||
            productionLineId: this.listQuery.productionLineId,
 | 
			
		||||
            thick: this.listQuery.thick,
 | 
			
		||||
          },
 | 
			
		||||
        });
 | 
			
		||||
      }
 | 
			
		||||
			// this.addOrUpdateVisible = true;
 | 
			
		||||
			// this.addOrEditTitle =
 | 
			
		||||
			// 	val.data?.factoryName + '-' + val.data?.lineName + ' 详情';
 | 
			
		||||
			// this.$nextTick(() => {
 | 
			
		||||
			// 	this.$refs.eqDetail.init(
 | 
			
		||||
			// 		val.data.lineId,
 | 
			
		||||
			// 		this.listQuery.startTime,
 | 
			
		||||
			// 		this.listQuery.endTime
 | 
			
		||||
			// 	);
 | 
			
		||||
			// });
 | 
			
		||||
		},
 | 
			
		||||
		test() {
 | 
			
		||||
			var target = document.getElementsByClassName("right-aside")[0]
 | 
			
		||||
			target.style.background = '#FFFFFF'
 | 
			
		||||
			var that = this
 | 
			
		||||
			setTimeout(() => {
 | 
			
		||||
				html2canvas(target).then(function(canvas) {
 | 
			
		||||
						var contentWidth = canvas.width
 | 
			
		||||
						var contentHeight = canvas.height
 | 
			
		||||
 | 
			
		||||
						// 一页pdf显示html页面生成的canvas高度
 | 
			
		||||
						var pageHeight = contentHeight / 592.28 * 841.89
 | 
			
		||||
						// 未生成pdf的html页面高度
 | 
			
		||||
						var leftHeight = contentHeight
 | 
			
		||||
						// 页面偏移
 | 
			
		||||
						var position = 0
 | 
			
		||||
						// a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的高度
 | 
			
		||||
						var imgWidth = 595.28
 | 
			
		||||
						var imgHeight = 592.28 / contentWidth * contentHeight
 | 
			
		||||
 | 
			
		||||
						var pageData = canvas.toDataURL('image/jpeg', 1.0)
 | 
			
		||||
 | 
			
		||||
						console.log('nihc URL', leftHeight, pageHeight)
 | 
			
		||||
 | 
			
		||||
						var pdf = new jsPDF('', 'pt', 'a4')
 | 
			
		||||
 | 
			
		||||
						if (leftHeight < pageHeight) {
 | 
			
		||||
							pdf.addImage(pageData, 'JPEG', 0, 20, imgWidth, imgHeight)
 | 
			
		||||
						} else {
 | 
			
		||||
							while(leftHeight > 0) {
 | 
			
		||||
								pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
 | 
			
		||||
								leftHeight -= pageHeight
 | 
			
		||||
								position -= 841.89
 | 
			
		||||
								// 避免空白页
 | 
			
		||||
								if (leftHeight > 0) {
 | 
			
		||||
									pdf.addPage()
 | 
			
		||||
								}
 | 
			
		||||
							}
 | 
			
		||||
						}
 | 
			
		||||
 | 
			
		||||
						pdf.save(that.fileName + '工段统计.pdf')
 | 
			
		||||
				})
 | 
			
		||||
			}, 300)
 | 
			
		||||
		},
 | 
			
		||||
		exportECL() {
 | 
			
		||||
			let tables = document.querySelector('.el-table').cloneNode(true)
 | 
			
		||||
			const fix = tables.querySelector('.el-table__fixed')
 | 
			
		||||
			const fixRight = tables.querySelector('.el-table__fixed-right')
 | 
			
		||||
			if (fix) {
 | 
			
		||||
				tables.removeChild(tables.querySelector('.el-table__fixed'))
 | 
			
		||||
			}
 | 
			
		||||
			if (fixRight) {
 | 
			
		||||
				tables.removeChild(tables.querySelector('.el-table__fixed-right'))
 | 
			
		||||
			}
 | 
			
		||||
			let exportTable = XLSX.utils.table_to_book(tables)
 | 
			
		||||
 | 
			
		||||
      var exportTableOut = XLSX.write(exportTable, {
 | 
			
		||||
        bookType: 'xlsx', bookSST: true, type: 'array'
 | 
			
		||||
      })
 | 
			
		||||
      // sheetjs.xlsx为导出表格的标题名称
 | 
			
		||||
      try {
 | 
			
		||||
        FileSaver.saveAs(new Blob([exportTableOut], {
 | 
			
		||||
          type: 'application/octet-stream'
 | 
			
		||||
        }), this.fileName + '工段统计.xlsx')
 | 
			
		||||
      } catch (e) {
 | 
			
		||||
        if (typeof console !== 'undefined') console.log(e, exportTableOut)
 | 
			
		||||
      }
 | 
			
		||||
      return exportTableOut
 | 
			
		||||
    },
 | 
			
		||||
		exportPdf() {
 | 
			
		||||
			this.test()
 | 
			
		||||
			setTimeout(() =>{
 | 
			
		||||
				this.dialogVisible = false
 | 
			
		||||
				this.showData = this.tableData
 | 
			
		||||
			}, 600)
 | 
			
		||||
 | 
			
		||||
		},
 | 
			
		||||
		exportXlsx() {
 | 
			
		||||
			this.exportECL()
 | 
			
		||||
			this.dialogVisible = false
 | 
			
		||||
			this.showData = this.tableData
 | 
			
		||||
		},
 | 
			
		||||
		handleClose(done) {
 | 
			
		||||
			this.$confirm('确认关闭?')
 | 
			
		||||
				.then(_ => {
 | 
			
		||||
					done();
 | 
			
		||||
				})
 | 
			
		||||
				.catch(_ => {});
 | 
			
		||||
		},
 | 
			
		||||
		getPdLineList() {
 | 
			
		||||
			getPdList().then((res) => {
 | 
			
		||||
				this.formConfig[0].selectOptions = res.data || []
 | 
			
		||||
			})
 | 
			
		||||
      getThick().then((res) => {
 | 
			
		||||
        this.formConfig[1].selectOptions = res.data.map((item) => {
 | 
			
		||||
          return {
 | 
			
		||||
            id: item.thick + 'mm',
 | 
			
		||||
            name: item.thick + 'mm'
 | 
			
		||||
          }
 | 
			
		||||
        })
 | 
			
		||||
			})
 | 
			
		||||
		},
 | 
			
		||||
		selectChange(val) {
 | 
			
		||||
      console.log(val)
 | 
			
		||||
      this.selectedList = val
 | 
			
		||||
    },
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
          this.listQuery.productionLineId = val.productionLineId ? val.productionLineId : undefined;
 | 
			
		||||
          this.listQuery.thick = val.thick ? val.thick : undefined;
 | 
			
		||||
          this.listQuery.startTime = val.timeVal ? val.timeVal[0]: undefined;
 | 
			
		||||
          this.listQuery.endTime = val.timeVal ? val.timeVal[1]: undefined;
 | 
			
		||||
 | 
			
		||||
					//this.listQuery.reportEndTime = val.timeVal ? [new Date(val.timeVal[1]).getTime()] : undefined;
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
					console.log(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		// 获取数据列表
 | 
			
		||||
    getDataList() {
 | 
			
		||||
      this.dataListLoading = true;
 | 
			
		||||
      this.urlOptions.getDataListURL(this.listQuery).then(response => {
 | 
			
		||||
        this.tableData = response.data.list
 | 
			
		||||
				this.showData = this.tableData
 | 
			
		||||
        this.listQuery.total = response.data.total;
 | 
			
		||||
        this.dataListLoading = false;
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
    // 每页数
 | 
			
		||||
    sizeChangeHandle(val) {
 | 
			
		||||
      this.listQuery.pageSize = val;
 | 
			
		||||
      this.listQuery.pageNo = 1;
 | 
			
		||||
      this.getDataList();
 | 
			
		||||
    },
 | 
			
		||||
    // 当前页
 | 
			
		||||
    currentChangeHandle(val) {
 | 
			
		||||
      this.listQuery.pageNo = val;
 | 
			
		||||
      this.getDataList();
 | 
			
		||||
    },
 | 
			
		||||
    handleExport() {
 | 
			
		||||
      // 处理查询参数
 | 
			
		||||
      let params = { ...this.listQuery };
 | 
			
		||||
      params.pageNo = undefined;
 | 
			
		||||
      params.pageSize = undefined;
 | 
			
		||||
      this.$modal.confirm('是否确认导出下片日志?').then(() => {
 | 
			
		||||
        this.exportLoading = true;
 | 
			
		||||
        return exportDownLogData(params);
 | 
			
		||||
      }).then(response => {
 | 
			
		||||
        this.$download.excel(response, '下片日志.xls');
 | 
			
		||||
        this.exportLoading = false;
 | 
			
		||||
      }).catch(() => { });
 | 
			
		||||
    }
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										272
									
								
								src/views/core/monitoring/productAuto/BarChart.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,272 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div :class="className" :style="{ height: height, width: width, marginLeft: '10px' }" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import * as echarts from 'echarts';
 | 
			
		||||
require('echarts/theme/macarons'); // 引入主题
 | 
			
		||||
import resize from '@/utils/chartMixins/resize';
 | 
			
		||||
 | 
			
		||||
const animationDuration = 1000;
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  mixins: [resize], // 混入 resize 逻辑(自适应窗口)
 | 
			
		||||
  props: {
 | 
			
		||||
    className: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: 'chart',
 | 
			
		||||
    },
 | 
			
		||||
    title: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: '',
 | 
			
		||||
    },
 | 
			
		||||
    width: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: '100%',
 | 
			
		||||
    },
 | 
			
		||||
    height: {
 | 
			
		||||
      type: String,
 | 
			
		||||
      default: '300px',
 | 
			
		||||
    },
 | 
			
		||||
    barData: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => [],
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      chart: null, // 图表实例
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    // 监听 barData 变化(深度监听数组内部元素)
 | 
			
		||||
    barData: {
 | 
			
		||||
      deep: true,
 | 
			
		||||
      handler: 'handleBarDataChange', // 调用处理方法
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    // 组件挂载后初始化图表(确保 DOM 已就绪)
 | 
			
		||||
    this.$nextTick(() => {
 | 
			
		||||
      this.initChart();
 | 
			
		||||
    });
 | 
			
		||||
  },
 | 
			
		||||
  beforeDestroy() {
 | 
			
		||||
    // 组件销毁前清理图表实例
 | 
			
		||||
    if (this.chart) {
 | 
			
		||||
      this.chart.dispose();
 | 
			
		||||
      this.chart = null;
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    // barData 变化时的处理方法
 | 
			
		||||
    handleBarDataChange() {
 | 
			
		||||
      // 确保 DOM 存在再更新图表
 | 
			
		||||
      this.$nextTick(() => {
 | 
			
		||||
        // 如果图表未初始化,先初始化;否则直接更新数据
 | 
			
		||||
        if (!this.chart) {
 | 
			
		||||
          this.initChart();
 | 
			
		||||
        } else {
 | 
			
		||||
          this.updateChart();
 | 
			
		||||
        }
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    // 初始化图表
 | 
			
		||||
    initChart() {
 | 
			
		||||
      // 避免重复初始化(先销毁旧实例)
 | 
			
		||||
      if (this.chart) {
 | 
			
		||||
        this.chart.dispose();
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // 确保 DOM 元素存在
 | 
			
		||||
      if (!this.$el) {
 | 
			
		||||
        console.error('图表容器 DOM 元素不存在');
 | 
			
		||||
        return;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // 初始化图表实例
 | 
			
		||||
      this.chart = echarts.init(this.$el, 'macarons');
 | 
			
		||||
      // 设置图表配置
 | 
			
		||||
      this.setChartOption();
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    // 更新图表数据(复用配置逻辑)
 | 
			
		||||
    updateChart() {
 | 
			
		||||
      if (!this.chart) return;
 | 
			
		||||
      this.setChartOption();
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    // 图表配置项(抽离为单独方法,方便初始化和更新复用)
 | 
			
		||||
    setChartOption() {
 | 
			
		||||
      const dataValues = this.barData.flatMap(item => [item.inputNum || 0, item.outputNum || 0]);
 | 
			
		||||
      const maxData = Math.max(...dataValues, 0); // 加 0 确保无数据时 maxData 为 0
 | 
			
		||||
 | 
			
		||||
      // 2. 计算 Y 轴最大值(留 10% 余量,避免数据顶到顶部)
 | 
			
		||||
      let yMax = 0;
 | 
			
		||||
      if (maxData > 0) {
 | 
			
		||||
        yMax = Math.ceil(maxData * 1.1); // 向上取整,确保刻度为整数
 | 
			
		||||
      } else {
 | 
			
		||||
        yMax = 100; // 无数据时默认最大值为 100,避免 Y 轴消失
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // 3. 计算 interval(5 个刻度对应 4 个间隔,向上取整确保间隔为整数)
 | 
			
		||||
      const yInterval = Math.ceil((yMax - 0) / 4); // min 固定为 0,直接减 0
 | 
			
		||||
 | 
			
		||||
      this.chart.setOption({
 | 
			
		||||
        title: {
 | 
			
		||||
          text: this.title
 | 
			
		||||
            ? '{space|}{tip|}{space|}{value|' + this.title + '}'
 | 
			
		||||
            : '',
 | 
			
		||||
          textStyle: {
 | 
			
		||||
            rich: {
 | 
			
		||||
              tip: {
 | 
			
		||||
                width: 6,
 | 
			
		||||
                height: 6,
 | 
			
		||||
                borderRadius: 50,
 | 
			
		||||
                backgroundColor: '#288AFF',
 | 
			
		||||
              },
 | 
			
		||||
              space: {
 | 
			
		||||
                width: 8,
 | 
			
		||||
              },
 | 
			
		||||
              value: {
 | 
			
		||||
                fontSize: 14,
 | 
			
		||||
                color: 'black',
 | 
			
		||||
              },
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        color: ['#288AFF', '#8EF0AB', '#FFDC94'],
 | 
			
		||||
        tooltip: {
 | 
			
		||||
          trigger: 'axis',
 | 
			
		||||
          axisPointer: {
 | 
			
		||||
            type: 'cross',
 | 
			
		||||
            crossStyle: {
 | 
			
		||||
              color: '#999',
 | 
			
		||||
            },
 | 
			
		||||
          },
 | 
			
		||||
        },
 | 
			
		||||
        legend: {
 | 
			
		||||
          data: ['投入', '产出', '加工成品率'],
 | 
			
		||||
        },
 | 
			
		||||
        grid: {
 | 
			
		||||
          left: 20,
 | 
			
		||||
          right: 30,
 | 
			
		||||
          top:40,
 | 
			
		||||
          bottom: 10,
 | 
			
		||||
 | 
			
		||||
          containLabel: true,
 | 
			
		||||
          splitArea: {
 | 
			
		||||
            show: false // 关键:关闭网格背景分区(去掉间隔色块)
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        xAxis: {
 | 
			
		||||
          type: 'category',
 | 
			
		||||
          data: this.barData.map((item) => item.lineName),
 | 
			
		||||
          axisLine: {
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)',
 | 
			
		||||
              width: 1 // 轴线宽度(可选,默认 1,可按需调整)
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          // 2. 控制 X 轴刻度线颜色(与轴线颜色保持一致,视觉统一)
 | 
			
		||||
          axisTick: {
 | 
			
		||||
            lineStyle: {
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)', // 刻度线颜色,需与轴线颜色匹配
 | 
			
		||||
              width: 1 // 刻度线宽度(可选)
 | 
			
		||||
            },
 | 
			
		||||
            alignWithLabel: true // 可选:让刻度线与文字对齐(避免文字偏移时刻度线错位)
 | 
			
		||||
          },
 | 
			
		||||
          // 3. 控制 X 轴文字颜色(如:深灰色 rgba(0, 0, 0, 0.45))
 | 
			
		||||
          axisLabel: {
 | 
			
		||||
            color: 'rgba(0, 0, 0, 0.45)6', // 文字颜色,可自定义
 | 
			
		||||
            fontSize: 12, // 可选:调整文字大小(默认 12,按需修改)
 | 
			
		||||
            // 可选:文字过长时换行/省略(避免文字重叠,按需开启)
 | 
			
		||||
            formatter: (value) => {
 | 
			
		||||
              // 示例:文字超过 6 个字符时换行(可根据需求调整字符数)
 | 
			
		||||
              if (value.length > 6) {
 | 
			
		||||
                return value.slice(0, 6) + '\n' + value.slice(6);
 | 
			
		||||
              }
 | 
			
		||||
              return value;
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          // 原有配置(若需保留可解开注释)
 | 
			
		||||
          // axisPointer: {
 | 
			
		||||
          //   type: 'shadow',
 | 
			
		||||
          // }
 | 
			
		||||
        },
 | 
			
		||||
        yAxis: [
 | 
			
		||||
          {
 | 
			
		||||
            type: 'value',
 | 
			
		||||
            name: '投入/产出 片',
 | 
			
		||||
            min: 0, // 最小值固定为 0
 | 
			
		||||
            max: yMax,
 | 
			
		||||
            interval: yInterval,
 | 
			
		||||
            splitArea: {
 | 
			
		||||
              show: false
 | 
			
		||||
            },
 | 
			
		||||
            axisLabel: {
 | 
			
		||||
              formatter: '{value}',
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)'
 | 
			
		||||
            },
 | 
			
		||||
 | 
			
		||||
            // 可选:修改 Y 轴名称颜色(与文字颜色保持一致)
 | 
			
		||||
            nameTextStyle: {
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)'
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            type: 'value',
 | 
			
		||||
            name: '加工成品率',
 | 
			
		||||
            min: 0,
 | 
			
		||||
            max: 100, // 成品率固定 0-100%
 | 
			
		||||
            interval: 25, // 100 / 4 = 25,刚好 5 个刻度(0、25、50、75、100)
 | 
			
		||||
            axisLabel: {
 | 
			
		||||
              formatter: '{value} %',
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)'
 | 
			
		||||
            },
 | 
			
		||||
            splitArea: {
 | 
			
		||||
              show: false
 | 
			
		||||
            },
 | 
			
		||||
            // 可选:修改 Y 轴名称颜色
 | 
			
		||||
            nameTextStyle: {
 | 
			
		||||
              color: 'rgba(0, 0, 0, 0.45)'
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
        ],
 | 
			
		||||
        series: [
 | 
			
		||||
          {
 | 
			
		||||
            name: '投入',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barWidth: '20',
 | 
			
		||||
            data: this.barData.map((item) => item.inputNum),
 | 
			
		||||
            tooltip: {
 | 
			
		||||
              valueFormatter: (value) => `${value} 片`,
 | 
			
		||||
            },
 | 
			
		||||
            animationDuration,
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '产出',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barWidth: '20',
 | 
			
		||||
            data: this.barData.map((item) => item.outputNum),
 | 
			
		||||
            tooltip: {
 | 
			
		||||
              valueFormatter: (value) => `${value} 片`,
 | 
			
		||||
            },
 | 
			
		||||
            animationDuration,
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '加工成品率',
 | 
			
		||||
            type: 'line',
 | 
			
		||||
            yAxisIndex: 1,
 | 
			
		||||
            tooltip: {
 | 
			
		||||
              valueFormatter: (value) => `${value} %`,
 | 
			
		||||
            },
 | 
			
		||||
            data: this.barData.map((item) => item.processingRatio),
 | 
			
		||||
          },
 | 
			
		||||
        ],
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										273
									
								
								src/views/core/monitoring/productAuto/baseTable.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,273 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="baseTable">
 | 
			
		||||
		<el-table
 | 
			
		||||
			:ref="id"
 | 
			
		||||
			:data="renderData"
 | 
			
		||||
			v-bind="$attrs"
 | 
			
		||||
			:border="cancelBorder ? false : true"
 | 
			
		||||
			@current-change="currentChange"
 | 
			
		||||
			@selection-change="handleSelectionChange"
 | 
			
		||||
			style="width: 100%"
 | 
			
		||||
			:header-cell-style="{
 | 
			
		||||
				background: '#F2F4F9',
 | 
			
		||||
				color: '#606266',
 | 
			
		||||
			}">
 | 
			
		||||
			<!-- 多选 -->
 | 
			
		||||
			<el-table-column
 | 
			
		||||
				v-if="selectWidth"
 | 
			
		||||
				type="selection"
 | 
			
		||||
				:width="selectWidth" />
 | 
			
		||||
			<!-- 序号 -->
 | 
			
		||||
			<el-table-column
 | 
			
		||||
				v-if="page && limit"
 | 
			
		||||
				prop="_pageIndex"
 | 
			
		||||
				:width="pageWidth"
 | 
			
		||||
				align="center"
 | 
			
		||||
				:fixed="cancelPageFixed ? false : true">
 | 
			
		||||
				<template slot="header">
 | 
			
		||||
					<el-popover placement="bottom-start" width="300" trigger="click">
 | 
			
		||||
						<div
 | 
			
		||||
							class="setting-box"
 | 
			
		||||
							style="max-height: 400px; overflow-y: auto">
 | 
			
		||||
							<el-checkbox
 | 
			
		||||
								v-for="(item, index) in tableProps"
 | 
			
		||||
								:key="'cb' + index"
 | 
			
		||||
								v-model="selectedBox[index]"
 | 
			
		||||
								:label="item.label" />
 | 
			
		||||
						</div>
 | 
			
		||||
						<i slot="reference" class="el-icon-s-tools" />
 | 
			
		||||
					</el-popover>
 | 
			
		||||
				</template>
 | 
			
		||||
			</el-table-column>
 | 
			
		||||
 | 
			
		||||
			<el-table-column
 | 
			
		||||
				v-for="item in renderTableHeadList"
 | 
			
		||||
				:key="item.prop"
 | 
			
		||||
				v-bind="item"
 | 
			
		||||
				:label="item.label"
 | 
			
		||||
				:prop="item.prop"
 | 
			
		||||
				:fixed="item.fixed || false"
 | 
			
		||||
				:show-overflow-tooltip="item.showOverflowtooltip || false"
 | 
			
		||||
				:sortable="item.sortable || false">
 | 
			
		||||
				<template slot="header">
 | 
			
		||||
					<span>{{ item.label }}</span>
 | 
			
		||||
				</template>
 | 
			
		||||
				<!-- 多表头 -->
 | 
			
		||||
				<template v-if="item.children">
 | 
			
		||||
					<el-table-column
 | 
			
		||||
						v-for="sub in item.children"
 | 
			
		||||
						:prop="sub.prop"
 | 
			
		||||
						:key="sub.prop"
 | 
			
		||||
						v-bind="sub"
 | 
			
		||||
						:label="sub.label">
 | 
			
		||||
						<template v-if="sub.children">
 | 
			
		||||
							<el-table-column
 | 
			
		||||
								v-for="ssub in sub.children"
 | 
			
		||||
								:prop="ssub.prop"
 | 
			
		||||
								:key="ssub.prop"
 | 
			
		||||
								v-bind="ssub"
 | 
			
		||||
								:label="ssub.label">
 | 
			
		||||
								<template slot-scope="sscopeInner">
 | 
			
		||||
									<component
 | 
			
		||||
										:is="ssub.subcomponent"
 | 
			
		||||
										v-if="ssub.subcomponent"
 | 
			
		||||
										:key="sscopeInner.row.id"
 | 
			
		||||
										:inject-data="{ ...sscopeInner.row, ...ssub }"
 | 
			
		||||
										@emitData="emitData" />
 | 
			
		||||
									<span v-else>
 | 
			
		||||
										{{ sscopeInner.row[ssub.prop] | commonFilter(ssub.filter) }}
 | 
			
		||||
									</span>
 | 
			
		||||
								</template>
 | 
			
		||||
							</el-table-column>
 | 
			
		||||
						</template>
 | 
			
		||||
						<template slot-scope="scopeInner">
 | 
			
		||||
							<component
 | 
			
		||||
								:is="sub.subcomponent"
 | 
			
		||||
								v-if="sub.subcomponent"
 | 
			
		||||
								:key="scopeInner.row.id"
 | 
			
		||||
								:inject-data="{ ...scopeInner.row, ...sub }"
 | 
			
		||||
								@emitData="emitData" />
 | 
			
		||||
							<span v-else>
 | 
			
		||||
								{{ scopeInner.row[sub.prop] | commonFilter(sub.filter) }}
 | 
			
		||||
							</span>
 | 
			
		||||
						</template>
 | 
			
		||||
					</el-table-column>
 | 
			
		||||
				</template>
 | 
			
		||||
				<template slot-scope="scope">
 | 
			
		||||
					<component
 | 
			
		||||
						:is="item.subcomponent"
 | 
			
		||||
						v-if="item.subcomponent"
 | 
			
		||||
						:key="scope.row.id"
 | 
			
		||||
						:itemProp="item.prop"
 | 
			
		||||
						:inject-data="{ ...scope.row, ...item }"
 | 
			
		||||
						@emitData="emitData" />
 | 
			
		||||
					<span v-else>
 | 
			
		||||
						{{ scope.row[item.prop] | commonFilter(item.filter) }}
 | 
			
		||||
					</span>
 | 
			
		||||
				</template>
 | 
			
		||||
			</el-table-column>
 | 
			
		||||
			<slot name="handleBtn" />
 | 
			
		||||
		</el-table>
 | 
			
		||||
		<!-- 表格底部加号 -->
 | 
			
		||||
		<el-button
 | 
			
		||||
			v-if="addButtonShow"
 | 
			
		||||
			class="addButton"
 | 
			
		||||
			icon="el-icon-plus"
 | 
			
		||||
			@click="emitButtonClick">
 | 
			
		||||
			{{ addButtonShow }}
 | 
			
		||||
		</el-button>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
	name: 'BaseTable',
 | 
			
		||||
	filters: {
 | 
			
		||||
		commonFilter: (source, filterType = (a) => a) => {
 | 
			
		||||
			return filterType(source);
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	props: {
 | 
			
		||||
		cancelBorder: {
 | 
			
		||||
			type: Boolean,
 | 
			
		||||
			default: false,
 | 
			
		||||
		},
 | 
			
		||||
		cancelPageFixed: {
 | 
			
		||||
			type: Boolean,
 | 
			
		||||
			default: false,
 | 
			
		||||
		},
 | 
			
		||||
		tableData: {
 | 
			
		||||
			type: Array,
 | 
			
		||||
			required: true,
 | 
			
		||||
			default: () => {
 | 
			
		||||
				return [];
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
		tableProps: {
 | 
			
		||||
			type: Array,
 | 
			
		||||
			default: () => {
 | 
			
		||||
				return [];
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
		id: {
 | 
			
		||||
			type: String,
 | 
			
		||||
			required: false,
 | 
			
		||||
			default: '',
 | 
			
		||||
		},
 | 
			
		||||
		page: {
 | 
			
		||||
			type: Number,
 | 
			
		||||
			required: false,
 | 
			
		||||
			default: 0,
 | 
			
		||||
		},
 | 
			
		||||
		pageWidth: {
 | 
			
		||||
			type: Number,
 | 
			
		||||
			required: false,
 | 
			
		||||
			default: 70,
 | 
			
		||||
		},
 | 
			
		||||
		limit: {
 | 
			
		||||
			type: Number,
 | 
			
		||||
			required: false,
 | 
			
		||||
			default: 0,
 | 
			
		||||
		},
 | 
			
		||||
		selectWidth: {
 | 
			
		||||
			type: Number,
 | 
			
		||||
			required: false,
 | 
			
		||||
			default: 0,
 | 
			
		||||
		},
 | 
			
		||||
		addButtonShow: {
 | 
			
		||||
			type: String,
 | 
			
		||||
			required: false,
 | 
			
		||||
			default: '',
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			selectedBox: new Array(100).fill(true),
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	computed: {
 | 
			
		||||
		renderTableHeadList() {
 | 
			
		||||
			return this.tableProps.filter((item, index) => {
 | 
			
		||||
				return this.selectedBox[index];
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		renderData() {
 | 
			
		||||
			return this.tableData.map((item, index) => {
 | 
			
		||||
				return {
 | 
			
		||||
					...item,
 | 
			
		||||
					_pageIndex: (this.page - 1) * this.limit + index + 1,
 | 
			
		||||
				};
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	beforeMount() {
 | 
			
		||||
		this.selectedBox = new Array(100).fill(true);
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		currentChange(newVal, oldVal) {
 | 
			
		||||
			this.$emit('current-change', { newVal, oldVal });
 | 
			
		||||
		},
 | 
			
		||||
		handleSelectionChange(val) {
 | 
			
		||||
			this.$emit('selection-change', val);
 | 
			
		||||
		},
 | 
			
		||||
		emitData(val) {
 | 
			
		||||
			this.$emit('emitFun', val);
 | 
			
		||||
		},
 | 
			
		||||
		emitButtonClick() {
 | 
			
		||||
			this.$emit('emitButtonClick');
 | 
			
		||||
		},
 | 
			
		||||
		setCurrent(name, index) {
 | 
			
		||||
			let _this = this;
 | 
			
		||||
			let obj = _this.$refs[name].data[index];
 | 
			
		||||
			_this.$refs[name].setCurrentRow(obj);
 | 
			
		||||
		},
 | 
			
		||||
		doLayout(name) {
 | 
			
		||||
			this.$refs[name].doLayout();
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style scoped>
 | 
			
		||||
.baseTable .show-col-btn {
 | 
			
		||||
	margin-right: 5px;
 | 
			
		||||
	line-height: inherit;
 | 
			
		||||
	cursor: pointer;
 | 
			
		||||
}
 | 
			
		||||
.baseTable .el-icon-refresh {
 | 
			
		||||
	cursor: pointer;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
<style>
 | 
			
		||||
.baseTable .el-table__body tr.current-row > td.el-table__cell {
 | 
			
		||||
	background-color: #eaf1fc;
 | 
			
		||||
}
 | 
			
		||||
.baseTable .el-table .el-table__cell {
 | 
			
		||||
	padding: 0;
 | 
			
		||||
	height: 35px;
 | 
			
		||||
}
 | 
			
		||||
.baseTable .addButton {
 | 
			
		||||
	width: 100%;
 | 
			
		||||
	height: 35px;
 | 
			
		||||
	border-top: none;
 | 
			
		||||
	color: #0b58ff;
 | 
			
		||||
	border-color: #ebeef5;
 | 
			
		||||
	border-radius: 0;
 | 
			
		||||
}
 | 
			
		||||
.baseTable .addButton:hover {
 | 
			
		||||
	color: #0b58ff;
 | 
			
		||||
	border-color: #ebeef5;
 | 
			
		||||
	background-color: #fff;
 | 
			
		||||
}
 | 
			
		||||
.baseTable .addButton:focus {
 | 
			
		||||
	border-color: #ebeef5;
 | 
			
		||||
	background-color: #fff;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.el-tooltip__popper.is-dark {
 | 
			
		||||
	background: rgba(0, 0, 0, 0.6) !important;
 | 
			
		||||
}
 | 
			
		||||
.el-tooltip__popper .popper__arrow,
 | 
			
		||||
.el-tooltip__popper .popper__arrow::after {
 | 
			
		||||
	border-top-color: rgba(0, 0, 0, 0.4) !important;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										65
									
								
								src/views/core/monitoring/rawFilmReport/SmallTitle.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,65 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2023-08-01 15:27:31
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2023-08-01 16:25:54
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div :class="[className, { 'p-0': noPadding }]">
 | 
			
		||||
		<slot />
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
	props: {
 | 
			
		||||
		size: {
 | 
			
		||||
			// 取值范围:  xl lg md sm
 | 
			
		||||
			type: String,
 | 
			
		||||
			default: 'de',
 | 
			
		||||
			validator: function (val) {
 | 
			
		||||
				return ['xl', 'lg', 'de', 'md', 'sm'].indexOf(val) !== -1;
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
		noPadding: {
 | 
			
		||||
			type: Boolean,
 | 
			
		||||
			default: false,
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	computed: {
 | 
			
		||||
		className: function () {
 | 
			
		||||
			return `${this.size}-title`;
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
$pxls: (xl, 28px) (lg, 24px) (de, 20px) (md, 18px) (sm, 16px);
 | 
			
		||||
$mgr: 8px;
 | 
			
		||||
@each $size, $height in $pxls {
 | 
			
		||||
	.#{$size}-title {
 | 
			
		||||
		font-size: 18px;
 | 
			
		||||
		line-height: $height;
 | 
			
		||||
		color: #000;
 | 
			
		||||
		font-weight: 500;
 | 
			
		||||
		font-family: '微软雅黑', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
 | 
			
		||||
 | 
			
		||||
		&::before {
 | 
			
		||||
			content: '';
 | 
			
		||||
			display: inline-block;
 | 
			
		||||
			vertical-align: top;
 | 
			
		||||
			width: 4px;
 | 
			
		||||
			height: $height + 2px;
 | 
			
		||||
			border-radius: 1px;
 | 
			
		||||
			margin-right: $mgr;
 | 
			
		||||
			background-color: #0b58ff;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.p-0 {
 | 
			
		||||
	padding: 0;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										221
									
								
								src/views/core/monitoring/rawFilmReport/add-or-updata.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,221 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <el-dialog :visible.sync="visible" width="40%">
 | 
			
		||||
    <small-title slot="title" :no-padding="true">
 | 
			
		||||
      {{ !dataForm.id ? '新增' : '编辑' }}
 | 
			
		||||
    </small-title>
 | 
			
		||||
 | 
			
		||||
    <div class="content">
 | 
			
		||||
      <div class="visual-part">
 | 
			
		||||
        <el-form ref="dataForm" :model="dataForm" :rules="dataRule" label-width="100px"
 | 
			
		||||
          @keyup.enter.native="dataFormSubmit">
 | 
			
		||||
          <el-row :gutter="20">
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="维度" prop="statisticType">
 | 
			
		||||
                <el-select v-model="dataForm.statisticType" style="width: 100%" placeholder="请选择维度">
 | 
			
		||||
                  <el-option v-for="item in statisticTypeList" :key="item.id" :label="item.name" :value="item.id" />
 | 
			
		||||
                </el-select>
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="厚度" prop="modifyThick">
 | 
			
		||||
                <el-input v-model="dataForm.modifyThick" placeholder="请输入厚度" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
          </el-row>
 | 
			
		||||
          <el-row :gutter="20">
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="在线速度" prop="modifySpeed">
 | 
			
		||||
                <el-input v-model="dataForm.modifySpeed" placeholder="请输入在线速度" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="宽度" prop="modifyWidth">
 | 
			
		||||
                <el-input v-model="dataForm.modifyWidth" placeholder="请输入宽度" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
          </el-row>
 | 
			
		||||
          <el-row :gutter="20">
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="拉引量" prop="modifyInArea">
 | 
			
		||||
                <el-input v-model="dataForm.modifyInArea" placeholder="请输入拉引量" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="下片面积" prop="modifyOutArea">
 | 
			
		||||
                <el-input v-model="dataForm.modifyOutArea" placeholder="请输入下片面积" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
          </el-row>
 | 
			
		||||
          <el-row :gutter="20">
 | 
			
		||||
            <el-col :span="12">
 | 
			
		||||
              <el-form-item label="良品率" prop="modifyRatio">
 | 
			
		||||
                <el-input v-model="dataForm.modifyRatio" placeholder="请输入良品率" />
 | 
			
		||||
              </el-form-item>
 | 
			
		||||
            </el-col>
 | 
			
		||||
          </el-row>
 | 
			
		||||
        </el-form>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div slot="footer" class="dialog-footer">
 | 
			
		||||
      <el-button style="" @click="goback()">取消</el-button>
 | 
			
		||||
      <el-button  type="primary" @click="dataFormSubmit()">
 | 
			
		||||
        确定
 | 
			
		||||
      </el-button>
 | 
			
		||||
    </div>
 | 
			
		||||
  </el-dialog>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { editCostOriginRadioHisData } from '@/api/core/monitoring/index'
 | 
			
		||||
import { parseTime } from '../../mixins/code-filter';
 | 
			
		||||
import SmallTitle from './SmallTitle';
 | 
			
		||||
export default {
 | 
			
		||||
	components: { SmallTitle },
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			visible: false,
 | 
			
		||||
			addOrUpdateVisible: false,
 | 
			
		||||
      statisticTypeList: [
 | 
			
		||||
        {
 | 
			
		||||
          id: '0',
 | 
			
		||||
          name: '班组'
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          id: '1',
 | 
			
		||||
          name: '日'
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          id: '2',
 | 
			
		||||
          name: '周'
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          id: '3',
 | 
			
		||||
          name: '月'
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
          id: '4',
 | 
			
		||||
          name: '年'
 | 
			
		||||
        }
 | 
			
		||||
      ],
 | 
			
		||||
			dataForm: {
 | 
			
		||||
				id: null,
 | 
			
		||||
        statisticType:undefined,
 | 
			
		||||
        modifyThick: undefined,
 | 
			
		||||
        modifySpeed: undefined,
 | 
			
		||||
        modifyWidth: undefined,
 | 
			
		||||
        modifyInArea: undefined,
 | 
			
		||||
        modifyOutArea: undefined,
 | 
			
		||||
        modifyRatio: undefined,
 | 
			
		||||
			},
 | 
			
		||||
			dataRule: {
 | 
			
		||||
        statisticType: [
 | 
			
		||||
					{
 | 
			
		||||
						required: true,
 | 
			
		||||
						message: '维度不能为空',
 | 
			
		||||
						trigger: 'blur',
 | 
			
		||||
					},
 | 
			
		||||
					// {
 | 
			
		||||
					// 	type: 'number',
 | 
			
		||||
					// 	message: '产品编码为数字类型',
 | 
			
		||||
					// 	trigger: 'blur',
 | 
			
		||||
					// 	transfom: 'val => Number(val)',
 | 
			
		||||
					// },
 | 
			
		||||
				],
 | 
			
		||||
			},
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
    init(data) {
 | 
			
		||||
      console.log(data,'data');
 | 
			
		||||
 | 
			
		||||
			this.dataForm.id = data.id || null;
 | 
			
		||||
			this.visible = true;
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
        this.$refs['dataForm'].resetFields();
 | 
			
		||||
        this.dataForm = {
 | 
			
		||||
          id: data.id || null,
 | 
			
		||||
          statisticType: data.statisticType || undefined,
 | 
			
		||||
          modifyThick: data.thick || undefined, // 厚度对应
 | 
			
		||||
          modifySpeed: data.speed || undefined, // 在线速度对应
 | 
			
		||||
          modifyWidth: data.width || undefined, // 掰边宽度对应
 | 
			
		||||
          modifyInArea: data.inArea || undefined, // 拉引量对应
 | 
			
		||||
          modifyOutArea: data.outArea || undefined, // 下片面积对应
 | 
			
		||||
          modifyRatio: data.ratio || undefined, // 良品率对应
 | 
			
		||||
        };
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		// 表单提交
 | 
			
		||||
		dataFormSubmit() {
 | 
			
		||||
			this.$refs['dataForm'].validate((valid) => {
 | 
			
		||||
				if (valid) {
 | 
			
		||||
					// 修改的提交
 | 
			
		||||
					if (this.dataForm.id) {
 | 
			
		||||
            editCostOriginRadioHisData(this.dataForm).then((response) => {
 | 
			
		||||
							this.$modal.msgSuccess('修改成功');
 | 
			
		||||
							this.visible = false;
 | 
			
		||||
							this.$emit('refreshDataList');
 | 
			
		||||
						});
 | 
			
		||||
						return;
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		goback() {
 | 
			
		||||
			this.$emit('refreshDataList');
 | 
			
		||||
			this.visible = false;
 | 
			
		||||
			this.initData();
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.drawer >>> .el-drawer {
 | 
			
		||||
	border-radius: 8px 0 0 8px;
 | 
			
		||||
	display: flex;
 | 
			
		||||
	flex-direction: column;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.drawer >>> .el-form-item__label {
 | 
			
		||||
	padding: 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.drawer >>> .el-drawer__header {
 | 
			
		||||
	margin: 0;
 | 
			
		||||
	padding: 32px 32px 24px;
 | 
			
		||||
	border-bottom: 1px solid #dcdfe6;
 | 
			
		||||
}
 | 
			
		||||
.drawer >>> .el-drawer__body {
 | 
			
		||||
	flex: 1;
 | 
			
		||||
	height: 1px;
 | 
			
		||||
	display: flex;
 | 
			
		||||
	flex-direction: column;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.drawer >>> .content {
 | 
			
		||||
	padding: 30px 24px;
 | 
			
		||||
	flex: 1;
 | 
			
		||||
	display: flex;
 | 
			
		||||
	flex-direction: column;
 | 
			
		||||
	/* height: 100%; */
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.drawer >>> .visual-part {
 | 
			
		||||
	flex: 1 auto;
 | 
			
		||||
	max-height: 76vh;
 | 
			
		||||
	overflow: hidden;
 | 
			
		||||
	overflow-y: scroll;
 | 
			
		||||
	padding-right: 10px; /* 调整滚动条样式 */
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.drawer >>> .el-form,
 | 
			
		||||
.drawer >>> .attr-list {
 | 
			
		||||
	padding: 0 16px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.drawer-body__footer {
 | 
			
		||||
	display: flex;
 | 
			
		||||
	justify-content: flex-end;
 | 
			
		||||
	padding: 18px;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										281
									
								
								src/views/core/monitoring/rawFilmReport/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,281 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: Do not edit
 | 
			
		||||
 * @Date: 2023-08-29 14:59:29
 | 
			
		||||
 * @LastEditTime: 2024-12-02 13:44:47
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="app-container">
 | 
			
		||||
    <!-- :isFold="true" 控制展开 -->
 | 
			
		||||
    <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
 | 
			
		||||
    <base-table v-if="tableData.length" class="right-aside" v-loading="dataListLoading" :table-props="tableProps"
 | 
			
		||||
      :page="listQuery.pageNo" :limit="listQuery.pageSize" :table-data="tableData">
 | 
			
		||||
      <method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
 | 
			
		||||
        @clickBtn="handleClick" />
 | 
			
		||||
    </base-table>
 | 
			
		||||
    <div v-else class="no-data-bg"></div>
 | 
			
		||||
    <pagination :limit.sync="listQuery.pageSize" :page.sync="listQuery.pageNo" :total="listQuery.total"
 | 
			
		||||
      @pagination="getDataList" />
 | 
			
		||||
    <!-- <el-dialog
 | 
			
		||||
			title="提示"
 | 
			
		||||
			:visible.sync="dialogVisible"
 | 
			
		||||
			width="30%"
 | 
			
		||||
			:before-close="handleClose">
 | 
			
		||||
			<el-button type="primary" @click="exportXlsx">xlsx</el-button>
 | 
			
		||||
  		<el-button type="success" @click="exportPdf">pdf</el-button>
 | 
			
		||||
			<span slot="footer" class="dialog-footer">
 | 
			
		||||
				<el-button @click="dialogVisible = false">取 消</el-button>
 | 
			
		||||
				<el-button type="primary" @click="dialogVisible = false">确 定</el-button>
 | 
			
		||||
			</span>
 | 
			
		||||
		</el-dialog> -->
 | 
			
		||||
    <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" />
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import AddOrUpdate from './add-or-updata';
 | 
			
		||||
import { parseTime } from '../../mixins/code-filter';
 | 
			
		||||
import { getCostOriginRadioHisData, getPdList  } from '@/api/core/monitoring/index'
 | 
			
		||||
import * as XLSX from 'xlsx'
 | 
			
		||||
import FileSaver from 'file-saver'
 | 
			
		||||
import jsPDF from 'jspdf'
 | 
			
		||||
import html2canvas from 'html2canvas'
 | 
			
		||||
import { exportCostOriginRadioHisData } from '../../../../api/core/monitoring';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'reportType',
 | 
			
		||||
    label: '报表类型'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'time',
 | 
			
		||||
    label: '日期',
 | 
			
		||||
    // filter: parseTime,
 | 
			
		||||
    width: 160
 | 
			
		||||
  },
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'bindObjectName',
 | 
			
		||||
		label: '产线'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'thick',
 | 
			
		||||
    label: '厚度'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'speed',
 | 
			
		||||
    label: '在线速度'
 | 
			
		||||
  },
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'width',
 | 
			
		||||
    label: '掰边宽度'
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'inArea',
 | 
			
		||||
    label: '拉引量/㎡'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'outArea',
 | 
			
		||||
    label: '下片面积/㎡'
 | 
			
		||||
  },
 | 
			
		||||
	{
 | 
			
		||||
    prop: 'ratio',
 | 
			
		||||
    label: '良品率'
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  components: {
 | 
			
		||||
    AddOrUpdate
 | 
			
		||||
  },
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			urlOptions: {
 | 
			
		||||
				getDataListURL: getCostOriginRadioHisData
 | 
			
		||||
			},
 | 
			
		||||
      tableData: [],
 | 
			
		||||
      listQuery: {
 | 
			
		||||
        pageSize: 10,
 | 
			
		||||
        pageNo: 1,
 | 
			
		||||
        total: 1,
 | 
			
		||||
        bindObjectId: undefined,
 | 
			
		||||
        statisticType: undefined,
 | 
			
		||||
      },
 | 
			
		||||
      pdLineList:[],
 | 
			
		||||
      exportLoading: false,
 | 
			
		||||
      dataListLoading: false,
 | 
			
		||||
			selectedList: [],
 | 
			
		||||
			dialogVisible: false,
 | 
			
		||||
      addOrEditTitle: '',
 | 
			
		||||
      addOrUpdateVisible: false,
 | 
			
		||||
			tableProps,
 | 
			
		||||
      tableBtn: [
 | 
			
		||||
        {
 | 
			
		||||
          type: 'edit',
 | 
			
		||||
          btnName: '编辑',
 | 
			
		||||
        },
 | 
			
		||||
      ].filter((v) => v),
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			fileName: '',
 | 
			
		||||
      formConfig: [
 | 
			
		||||
        {
 | 
			
		||||
          type: 'select',
 | 
			
		||||
          label: '维度',
 | 
			
		||||
          selectOptions: [
 | 
			
		||||
            {
 | 
			
		||||
              id: '0',
 | 
			
		||||
              name:'班组'
 | 
			
		||||
            },
 | 
			
		||||
            {
 | 
			
		||||
              id: '1',
 | 
			
		||||
              name: '日'
 | 
			
		||||
            },
 | 
			
		||||
            {
 | 
			
		||||
              id: '2',
 | 
			
		||||
              name: '周'
 | 
			
		||||
            },
 | 
			
		||||
            {
 | 
			
		||||
              id: '3',
 | 
			
		||||
              name: '月'
 | 
			
		||||
            },
 | 
			
		||||
            {
 | 
			
		||||
              id: '4',
 | 
			
		||||
              name: '年'
 | 
			
		||||
            }
 | 
			
		||||
          ],
 | 
			
		||||
          param: 'statisticType'
 | 
			
		||||
        },
 | 
			
		||||
				{
 | 
			
		||||
					type: 'select',
 | 
			
		||||
					label: '产线',
 | 
			
		||||
					selectOptions: [],
 | 
			
		||||
          param: 'bindObjectId'
 | 
			
		||||
        },
 | 
			
		||||
 | 
			
		||||
				{
 | 
			
		||||
          type: 'datePicker',
 | 
			
		||||
          label: '统计开始时间',
 | 
			
		||||
          dateType: 'daterange',
 | 
			
		||||
          format: 'yyyy-MM-dd',
 | 
			
		||||
          valueFormat: "yyyy-MM-dd HH:mm:ss",
 | 
			
		||||
          rangeSeparator: '-',
 | 
			
		||||
          startPlaceholder: '开始时间',
 | 
			
		||||
          endPlaceholder: '结束时间',
 | 
			
		||||
          param: 'timeVal',
 | 
			
		||||
          defaultTime: ['00:00:00', '23:59:59'],
 | 
			
		||||
          defaultSelect: []
 | 
			
		||||
        },
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '查询',
 | 
			
		||||
					name: 'search',
 | 
			
		||||
					color: 'primary',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'separate',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					// type: this.$auth.hasPermi('base:factory:export') ? 'button' : '',
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '导出',
 | 
			
		||||
					name: 'export',
 | 
			
		||||
					color: 'warning',
 | 
			
		||||
				}
 | 
			
		||||
			],
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.$refs.searchBarForm.formInline.statisticType = '1';
 | 
			
		||||
    this.listQuery.statisticType = '1';
 | 
			
		||||
		this.getDataList()
 | 
			
		||||
    this.getPdLineList()
 | 
			
		||||
	},
 | 
			
		||||
  methods: {
 | 
			
		||||
    handleClick(val) {
 | 
			
		||||
      console.log(val);
 | 
			
		||||
      if (val.type === 'edit') {
 | 
			
		||||
        this.addOrUpdateVisible= true
 | 
			
		||||
        this.$nextTick(() => {
 | 
			
		||||
          this.$refs.addOrUpdate.init(val.data);
 | 
			
		||||
        });
 | 
			
		||||
      }
 | 
			
		||||
		},
 | 
			
		||||
 | 
			
		||||
		getPdLineList() {
 | 
			
		||||
			getPdList().then((res) => {
 | 
			
		||||
        this.formConfig[1].selectOptions = res.data || []
 | 
			
		||||
        this.pdLineList = res.data || []; // 保存产线数据
 | 
			
		||||
			})
 | 
			
		||||
		},
 | 
			
		||||
		selectChange(val) {
 | 
			
		||||
      console.log(val)
 | 
			
		||||
      this.selectedList = val
 | 
			
		||||
    },
 | 
			
		||||
    buttonClick(val) {
 | 
			
		||||
      console.log('val', val);
 | 
			
		||||
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
          this.listQuery.bindObjectId = val.bindObjectId ? val.bindObjectId : undefined;
 | 
			
		||||
          this.listQuery.statisticType = val.statisticType ? val.statisticType : undefined;
 | 
			
		||||
          this.listQuery.startTime = val.timeVal ? val.timeVal[0]: undefined;
 | 
			
		||||
          this.listQuery.endTime = val.timeVal ? val.timeVal[1]: undefined;
 | 
			
		||||
 | 
			
		||||
					//this.listQuery.reportEndTime = val.timeVal ? [new Date(val.timeVal[1]).getTime()] : undefined;
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
					console.log(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		// 获取数据列表
 | 
			
		||||
    getDataList() {
 | 
			
		||||
      this.dataListLoading = true;
 | 
			
		||||
      this.urlOptions.getDataListURL(this.listQuery).then(response => {
 | 
			
		||||
        const arr = ['班组','日', '周', '月', '年'];
 | 
			
		||||
        this.tableData = response.data?.list?.map((item) => {
 | 
			
		||||
          item.reportType = arr[this.listQuery.statisticType];
 | 
			
		||||
          item.statisticType = this.listQuery.statisticType
 | 
			
		||||
 | 
			
		||||
          // 匹配 bindObjectName
 | 
			
		||||
          const targetLine = this.pdLineList.find(line => line.id === item.bindObjectId);
 | 
			
		||||
          item.bindObjectName = targetLine ? targetLine.name : ''; // 赋值名称,无匹配则为空
 | 
			
		||||
          return item;
 | 
			
		||||
        });
 | 
			
		||||
        this.listQuery.total = response.data.total;
 | 
			
		||||
        this.dataListLoading = false;
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
    // 每页数
 | 
			
		||||
    sizeChangeHandle(val) {
 | 
			
		||||
      this.listQuery.pageSize = val;
 | 
			
		||||
      this.listQuery.pageNo = 1;
 | 
			
		||||
      this.getDataList();
 | 
			
		||||
    },
 | 
			
		||||
    // 当前页
 | 
			
		||||
    currentChangeHandle(val) {
 | 
			
		||||
      this.listQuery.pageNo = val;
 | 
			
		||||
      this.getDataList();
 | 
			
		||||
    },
 | 
			
		||||
    handleExport() {
 | 
			
		||||
      // 处理查询参数
 | 
			
		||||
      let params = { ...this.listQuery };
 | 
			
		||||
      params.pageNo = undefined;
 | 
			
		||||
      params.pageSize = undefined;
 | 
			
		||||
      this.$modal.confirm('是否确认导出原片报表?').then(() => {
 | 
			
		||||
        this.exportLoading = true;
 | 
			
		||||
        return exportCostOriginRadioHisData(params);
 | 
			
		||||
      }).then(response => {
 | 
			
		||||
        this.$download.excel(response, '原片报表.xls');
 | 
			
		||||
        this.exportLoading = false;
 | 
			
		||||
      }).catch(() => { });
 | 
			
		||||
    }
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<div>
 | 
			
		||||
		<div style="background: #f2f4f9; height: 40px; width: 100%">
 | 
			
		||||
		<!-- <div style="background: #f2f4f9; height: 40px; width: 100%">
 | 
			
		||||
			<ButtonNav :menus="['按日期', '按规格']" @change="currentMenu">
 | 
			
		||||
				<template v-slot:tab1>
 | 
			
		||||
					<div>按日期</div>
 | 
			
		||||
@@ -9,7 +9,7 @@
 | 
			
		||||
					<div>按规格</div>
 | 
			
		||||
				</template>
 | 
			
		||||
			</ButtonNav>
 | 
			
		||||
		</div>
 | 
			
		||||
		</div> -->
 | 
			
		||||
		<div class="app-container energyOverlimitLog">
 | 
			
		||||
			<div v-show="activeName === 'his'">
 | 
			
		||||
				<!-- 搜索工作栏 -->
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
				@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -86,32 +86,36 @@ import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'originArea',
 | 
			
		||||
		label: '原片下片面积',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'deepArea',
 | 
			
		||||
		label: '深加工下片面积',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'originPrice',
 | 
			
		||||
		label: '原片成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'deepPrice',
 | 
			
		||||
		label: '深加工成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'price',
 | 
			
		||||
		label: '总成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
@@ -244,19 +248,12 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			this.formConfig2[0].startPlaceholder = '开始时间';
 | 
			
		||||
			this.formConfig2[0].endPlaceholder = '结束时间';
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.bindObjectId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
@@ -274,7 +271,7 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.bindObjectId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
@@ -334,12 +331,19 @@ export default {
 | 
			
		||||
				this.otherMethods(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
    getNavDataList(){
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
    },
 | 
			
		||||
		/** 导出按钮操作 */
 | 
			
		||||
		handleExport() {
 | 
			
		||||
			let exportURL, title;
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				exportURL = exportCostSumExcel;
 | 
			
		||||
        title = '总成本统计-按日期';
 | 
			
		||||
        title = '总成本统计';
 | 
			
		||||
			} else {
 | 
			
		||||
				exportURL = exportRawStatisticsRealtimeExcel;
 | 
			
		||||
        title = '总成本统计-按规格';
 | 
			
		||||
 
 | 
			
		||||
@@ -77,7 +77,7 @@ export default {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name||null;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
@@ -90,7 +90,7 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name;
 | 
			
		||||
					this.listQuery.recTime = val.searchTime;
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
				@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -86,24 +86,27 @@ import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'energyTypeName',
 | 
			
		||||
		label: '能源类型',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
		label: '监控对象',
 | 
			
		||||
		filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'meterName',
 | 
			
		||||
		label: '抄表名',
 | 
			
		||||
		filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	},
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'bindObjectName',
 | 
			
		||||
	// 	label: '监控对象',
 | 
			
		||||
	// 	filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	// },
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'meterName',
 | 
			
		||||
	// 	label: '抄表名',
 | 
			
		||||
	// 	filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	// },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'quantity',
 | 
			
		||||
		label: '累计使用量',
 | 
			
		||||
@@ -115,20 +118,24 @@ const tableProps = [
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'energyTypeName',
 | 
			
		||||
		label: '能源类型',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
		label: '监控对象',
 | 
			
		||||
		filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'meter',
 | 
			
		||||
		label: '抄表名',
 | 
			
		||||
		filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	},
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'bindObjectName',
 | 
			
		||||
	// 	label: '监控对象',
 | 
			
		||||
	// 	filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	// },
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'meter',
 | 
			
		||||
	// 	label: '抄表名',
 | 
			
		||||
	// 	filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	// },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'quantity',
 | 
			
		||||
		label: '累计使用量',
 | 
			
		||||
@@ -207,13 +214,16 @@ export default {
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					dateType: 'datetimerange',
 | 
			
		||||
					format: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					defaultTime: ['08:30:00', '08:30:00'],
 | 
			
		||||
					param: 'searchTime',
 | 
			
		||||
					width: 350,
 | 
			
		||||
					clearable: false,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
@@ -262,26 +272,18 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			this.formConfig2[1].startPlaceholder = '开始时间';
 | 
			
		||||
			this.formConfig2[1].endPlaceholder = '结束时间';
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.energyTypeId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime ? val.searchTime[1] : null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.getDataList();
 | 
			
		||||
					} else {
 | 
			
		||||
						this.getDataList2();
 | 
			
		||||
@@ -292,13 +294,18 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.energyTypeId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
					}
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
@@ -320,15 +327,26 @@ export default {
 | 
			
		||||
				const end = new Date();
 | 
			
		||||
				const start = new Date();
 | 
			
		||||
				start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59';
 | 
			
		||||
				this.formConfig2[1].startPlaceholder = parseTime(start).substr(0, 10);
 | 
			
		||||
				this.formConfig2[1].endPlaceholder = parseTime(end).substr(0, 10);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.$refs.searchBarForm2.formInline.searchTime = [
 | 
			
		||||
						this.listQuery.startTime,
 | 
			
		||||
						this.listQuery.endTime,
 | 
			
		||||
					];
 | 
			
		||||
				});
 | 
			
		||||
				this.listQuery.name = null;
 | 
			
		||||
				this.listQuery.pageNo = 1;
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
    getNavDataList(){
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
    },
 | 
			
		||||
		// 获取数据2列表
 | 
			
		||||
		getDataList2() {
 | 
			
		||||
			if (this.listQuery.startTime) {
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
				@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -87,9 +87,12 @@ import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'otherCostName',
 | 
			
		||||
@@ -99,9 +102,14 @@ const tableProps = [
 | 
			
		||||
		prop: 'price',
 | 
			
		||||
		label: '总价(元)',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'remark',
 | 
			
		||||
	// 	label: '备注',
 | 
			
		||||
	// },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'otherCostName',
 | 
			
		||||
		label: '成本名称',
 | 
			
		||||
@@ -110,6 +118,7 @@ const tableProps2 = [
 | 
			
		||||
		prop: 'price',
 | 
			
		||||
		label: '总价(元)',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
export default {
 | 
			
		||||
@@ -182,13 +191,16 @@ export default {
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					dateType: 'datetimerange',
 | 
			
		||||
					format: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					defaultTime: ['08:30:00', '08:30:00'],
 | 
			
		||||
					param: 'searchTime',
 | 
			
		||||
					width: 350,
 | 
			
		||||
					clearable: false,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
@@ -237,26 +249,20 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			this.formConfig2[1].startPlaceholder = '开始时间';
 | 
			
		||||
			this.formConfig2[1].endPlaceholder = '结束时间';
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
						this.getDataList();
 | 
			
		||||
					} else {
 | 
			
		||||
						this.getDataList2();
 | 
			
		||||
@@ -267,13 +273,18 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
					}
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
@@ -295,15 +306,26 @@ export default {
 | 
			
		||||
				const end = new Date();
 | 
			
		||||
				const start = new Date();
 | 
			
		||||
				start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59';
 | 
			
		||||
				this.formConfig2[1].startPlaceholder = parseTime(start).substr(0, 10);
 | 
			
		||||
				this.formConfig2[1].endPlaceholder = parseTime(end).substr(0, 10);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.$refs.searchBarForm2.formInline.searchTime = [
 | 
			
		||||
						this.listQuery.startTime,
 | 
			
		||||
						this.listQuery.endTime,
 | 
			
		||||
					];
 | 
			
		||||
				});
 | 
			
		||||
				this.listQuery.name = null;
 | 
			
		||||
				this.listQuery.pageNo = 1;
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
    getNavDataList(){
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
    },
 | 
			
		||||
		// 获取数据2列表
 | 
			
		||||
		getDataList2() {
 | 
			
		||||
			getRawOthercostSunPage(this.listQuery).then((response) => {
 | 
			
		||||
 
 | 
			
		||||
@@ -65,6 +65,7 @@ const tableProps = [
 | 
			
		||||
		prop: 'price',
 | 
			
		||||
		label: '成本金额',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
@@ -161,7 +162,7 @@ export default {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name||null;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
@@ -174,7 +175,7 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name||null;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
 
 | 
			
		||||
@@ -10,9 +10,9 @@
 | 
			
		||||
		<span>
 | 
			
		||||
			{{
 | 
			
		||||
				injectData.type == 1
 | 
			
		||||
					? `每天等价,${injectData.price}元`
 | 
			
		||||
					? `每天等价,${Number(injectData.price)}元`
 | 
			
		||||
					: injectData.type == 2
 | 
			
		||||
					? `总价${injectData.price}元,年折旧率${injectData.ratio}%,折旧年限${injectData.timeLimit}年`
 | 
			
		||||
					? `总价${Number(injectData.price)}元,年折旧率${injectData.ratio}%,折旧年限${injectData.timeLimit}年`
 | 
			
		||||
					: '-'
 | 
			
		||||
			}}
 | 
			
		||||
		</span>
 | 
			
		||||
 
 | 
			
		||||
@@ -52,7 +52,7 @@
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
				@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -85,9 +85,12 @@ import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'productionLineName',
 | 
			
		||||
@@ -100,22 +103,27 @@ const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'innum',
 | 
			
		||||
		label: '上片数量',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outnum',
 | 
			
		||||
		label: '下片数量',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'ratio',
 | 
			
		||||
		label: '良品率',
 | 
			
		||||
		filter: (val) => (val ? val * 100 + '%' : '-'),
 | 
			
		||||
		filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'productionLineName',
 | 
			
		||||
@@ -128,15 +136,17 @@ const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'innum',
 | 
			
		||||
		label: '进片数量',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outnum',
 | 
			
		||||
		label: '出片数量',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'ratio',
 | 
			
		||||
		label: '良品率',
 | 
			
		||||
		filter: (val) => (val ? val * 100 + '%' : '-'),
 | 
			
		||||
		filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
export default {
 | 
			
		||||
@@ -170,13 +180,15 @@ export default {
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					dateType: 'datetimerange',
 | 
			
		||||
					format: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					defaultTime: ['08:30:00', '08:30:00'],
 | 
			
		||||
					param: 'searchTime',
 | 
			
		||||
					width: 350,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
@@ -225,22 +237,15 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.productionLineId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.getDataList();
 | 
			
		||||
@@ -253,12 +258,12 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.productionLineId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
@@ -309,10 +314,20 @@ export default {
 | 
			
		||||
				this.otherMethods(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
    getNavDataList(){
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
    },
 | 
			
		||||
		successSubmit() {
 | 
			
		||||
			this.handleCancel();
 | 
			
		||||
			const val = this.activeName === 'his' ? '产线良品率' : 'now';
 | 
			
		||||
			this.currentMenu(val);
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		/** 导出按钮操作 */
 | 
			
		||||
		handleExport() {
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
				@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -87,9 +87,12 @@ import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '时间',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
@@ -102,33 +105,42 @@ const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'inCount',
 | 
			
		||||
		label: '上片数量',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outCount',
 | 
			
		||||
		label: '下片数量',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'ratio',
 | 
			
		||||
		label: '良品率',
 | 
			
		||||
		filter: (val) => (val ? val * 100 + '%' : '-'),
 | 
			
		||||
		filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costSum',
 | 
			
		||||
		label: '深加工成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costPiece',
 | 
			
		||||
		label: '单片成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costArea',
 | 
			
		||||
		label: '每平米成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
		label: '产线',
 | 
			
		||||
@@ -140,30 +152,35 @@ const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'inCount',
 | 
			
		||||
		label: '上片数量',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outCount',
 | 
			
		||||
		label: '下片数量',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'ratio',
 | 
			
		||||
		label: '良品率',
 | 
			
		||||
		filter: (val) => (val ? val * 100 + '%' : '-'),
 | 
			
		||||
		filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costSum',
 | 
			
		||||
		label: '深加工成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costPiece',
 | 
			
		||||
		label: '单片成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costArea',
 | 
			
		||||
		label: '每平米成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
export default {
 | 
			
		||||
@@ -225,13 +242,16 @@ export default {
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					dateType: 'datetimerange',
 | 
			
		||||
					format: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					defaultTime: ['08:30:00', '08:30:00'],
 | 
			
		||||
					param: 'searchTime',
 | 
			
		||||
					width: 350,
 | 
			
		||||
					clearable: false,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'select',
 | 
			
		||||
@@ -288,26 +308,20 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			this.formConfig2[0].startPlaceholder = '开始时间';
 | 
			
		||||
			this.formConfig2[0].endPlaceholder = '结束时间';
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.bindObjectId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
						this.getDataList();
 | 
			
		||||
					} else {
 | 
			
		||||
						this.getDataList2();
 | 
			
		||||
@@ -318,13 +332,18 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.bindObjectId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
					}
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
@@ -346,15 +365,26 @@ export default {
 | 
			
		||||
				const end = new Date();
 | 
			
		||||
				const start = new Date();
 | 
			
		||||
				start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59';
 | 
			
		||||
				this.formConfig2[0].startPlaceholder = parseTime(start).substr(0, 10);
 | 
			
		||||
				this.formConfig2[0].endPlaceholder = parseTime(end).substr(0, 10);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.$refs.searchBarForm2.formInline.searchTime = [
 | 
			
		||||
						this.listQuery.startTime,
 | 
			
		||||
						this.listQuery.endTime,
 | 
			
		||||
					];
 | 
			
		||||
				});
 | 
			
		||||
				this.listQuery.name = null;
 | 
			
		||||
				this.listQuery.pageNo = 1;
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
    getNavDataList(){
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
    },
 | 
			
		||||
		// 获取数据2列表
 | 
			
		||||
		getDataList2() {
 | 
			
		||||
			if (this.listQuery.startTime) {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										423
									
								
								src/views/cost/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,423 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="home-page">
 | 
			
		||||
		<div class="date-tabs">
 | 
			
		||||
			<!-- @tab-click="handleClick" -->
 | 
			
		||||
			<el-tabs v-model="activeName" @tab-click="timedayChange" :stretch="true">
 | 
			
		||||
				<el-tab-pane
 | 
			
		||||
					:label="'\u2002\u2002日\u2002\u2002'"
 | 
			
		||||
					name="日"></el-tab-pane>
 | 
			
		||||
				<el-tab-pane
 | 
			
		||||
					:label="'\u2002\u2002周\u2002\u2002'"
 | 
			
		||||
					name="周"></el-tab-pane>
 | 
			
		||||
				<el-tab-pane
 | 
			
		||||
					:label="'\u2002\u2002月\u2002\u2002'"
 | 
			
		||||
					name="月"></el-tab-pane>
 | 
			
		||||
				<el-tab-pane
 | 
			
		||||
					:label="'\u2002\u2002年\u2002\u2002'"
 | 
			
		||||
					name="年"></el-tab-pane>
 | 
			
		||||
			</el-tabs>
 | 
			
		||||
			<div class="detail">
 | 
			
		||||
				<el-date-picker
 | 
			
		||||
					v-model="timeday"
 | 
			
		||||
					align="right"
 | 
			
		||||
					type="date"
 | 
			
		||||
					format="yyyy-MM-dd"
 | 
			
		||||
					valueFormat="yyyy-MM-dd"
 | 
			
		||||
					:clearable="false"
 | 
			
		||||
					@change="timedayChange"
 | 
			
		||||
					placeholder="选择日期"
 | 
			
		||||
					:picker-options="pickerOptions"></el-date-picker>
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
		<el-row class="main-top" :gutter="16">
 | 
			
		||||
			<el-col :span="24" style="position: relative">
 | 
			
		||||
				<div class="title">
 | 
			
		||||
					<svg-icon icon-class="home-produce" />
 | 
			
		||||
					<span class="title-inner">生产总成本</span>
 | 
			
		||||
				</div>
 | 
			
		||||
				<el-row class="box">
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.priceS }}万元</div>
 | 
			
		||||
						<div class="unit-style">总计成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.matPriceS }}万元</div>
 | 
			
		||||
						<div class="unit-style">原料成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.energyPriceS }}万元</div>
 | 
			
		||||
						<div class="unit-style">能源成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.otherPriceS }}万元</div>
 | 
			
		||||
						<div class="unit-style">其他成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<!-- <el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.ratioS }}</div>
 | 
			
		||||
						<div class="unit-style">综合良品率/%</div>
 | 
			
		||||
					</el-col> -->
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.areaPriceS }}元</div>
 | 
			
		||||
						<div class="unit-style">综合每平米成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
				</el-row>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="24" style="position: relative">
 | 
			
		||||
				<div class="title">
 | 
			
		||||
					<svg-icon icon-class="home-produce" />
 | 
			
		||||
					<span class="title-inner">原片成本</span>
 | 
			
		||||
				</div>
 | 
			
		||||
				<el-row class="box">
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.priceO }}万元</div>
 | 
			
		||||
						<div class="unit-style">原片总成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.matPriceO }}万元</div>
 | 
			
		||||
						<div class="unit-style">原料成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.energyPriceO }}万元</div>
 | 
			
		||||
						<div class="unit-style">能源成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.otherPriceO }}万元</div>
 | 
			
		||||
						<div class="unit-style">其他成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.ratioO }}</div>
 | 
			
		||||
						<div class="unit-style">原片良品率/%</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.areaPriceO }}元</div>
 | 
			
		||||
						<div class="unit-style">原片每平米成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
				</el-row>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="24" style="position: relative">
 | 
			
		||||
				<div class="title">
 | 
			
		||||
					<svg-icon icon-class="home-produce" />
 | 
			
		||||
					<span class="title-inner">深加工成本</span>
 | 
			
		||||
				</div>
 | 
			
		||||
				<el-row class="box">
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.priceD }}万元</div>
 | 
			
		||||
						<div class="unit-style">深加工总成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.energyPriceD }}万元</div>
 | 
			
		||||
						<div class="unit-style">能源成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.otherPriceD }}万元</div>
 | 
			
		||||
						<div class="unit-style">其他成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.ratioD }}</div>
 | 
			
		||||
						<div class="unit-style">深加工良品率/%</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
					<el-col :span="4" class="num-box shadow">
 | 
			
		||||
						<div class="num-style">{{ homeData.areaPriceD }}元</div>
 | 
			
		||||
						<div class="unit-style">深加工每平米成本</div>
 | 
			
		||||
					</el-col>
 | 
			
		||||
				</el-row>
 | 
			
		||||
			</el-col>
 | 
			
		||||
		</el-row>
 | 
			
		||||
		<el-row class="main-bottom" :gutter="16" v-if="false">
 | 
			
		||||
			<el-col :span="9">
 | 
			
		||||
				<div class="chart-wrapper">
 | 
			
		||||
					<line-chart :chart-data="lineChartData" />
 | 
			
		||||
				</div>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="7">
 | 
			
		||||
				<div class="chart-wrapper">
 | 
			
		||||
					<pie-chart />
 | 
			
		||||
				</div>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="8">
 | 
			
		||||
				<div class="chart-wrapper">
 | 
			
		||||
					<bar-chart />
 | 
			
		||||
				</div>
 | 
			
		||||
			</el-col>
 | 
			
		||||
		</el-row>
 | 
			
		||||
		<div
 | 
			
		||||
			class="main-footer"
 | 
			
		||||
			style="
 | 
			
		||||
				color: #c7c7c7;
 | 
			
		||||
				user-select: none;
 | 
			
		||||
				font-size: 14px;
 | 
			
		||||
				letter-spacing: 1px;
 | 
			
		||||
				height: 30px;
 | 
			
		||||
				display: grid;
 | 
			
		||||
				place-content: center;
 | 
			
		||||
			">
 | 
			
		||||
			© 中建材智能自动化研究院有限公司
 | 
			
		||||
		</div>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import moment from 'moment';
 | 
			
		||||
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
 | 
			
		||||
import LineChart from '../dashboard/LineChart';
 | 
			
		||||
import PieChart from '../dashboard/PieChart';
 | 
			
		||||
import BarChart from '../dashboard/BarChart';
 | 
			
		||||
import PanelGroup from '../dashboard/PanelGroup';
 | 
			
		||||
import { getData } from '@/api/cost/allCost';
 | 
			
		||||
import { getUserProfile } from '@/api/system/user';
 | 
			
		||||
 | 
			
		||||
const lineChartData = {
 | 
			
		||||
	newVisitis: {
 | 
			
		||||
		expectedData: [100, 120, 161, 134, 105, 160, 165],
 | 
			
		||||
		actualData: [120, 82, 91, 154, 162, 140, 145],
 | 
			
		||||
	},
 | 
			
		||||
	messages: {
 | 
			
		||||
		expectedData: [200, 192, 120, 144, 160, 130, 140],
 | 
			
		||||
		actualData: [180, 160, 151, 106, 145, 150, 130],
 | 
			
		||||
	},
 | 
			
		||||
	purchases: {
 | 
			
		||||
		expectedData: [80, 100, 121, 104, 105, 90, 100],
 | 
			
		||||
		actualData: [120, 90, 100, 138, 142, 130, 130],
 | 
			
		||||
	},
 | 
			
		||||
	shoppings: {
 | 
			
		||||
		expectedData: [130, 140, 141, 142, 145, 150, 160],
 | 
			
		||||
		actualData: [120, 82, 91, 154, 162, 140, 130],
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	name: 'Home',
 | 
			
		||||
	mixins: [tableHeightMixin],
 | 
			
		||||
	components: {
 | 
			
		||||
		LineChart,
 | 
			
		||||
		PieChart,
 | 
			
		||||
		PanelGroup,
 | 
			
		||||
		BarChart,
 | 
			
		||||
	},
 | 
			
		||||
	computed: {
 | 
			
		||||
		gradientBackground() {
 | 
			
		||||
			return {
 | 
			
		||||
				'background-image':
 | 
			
		||||
					'linear-gradient(90deg, #f0f0f0 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 50%, #f0f0f0 50%, #f0f0f0 75%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0))',
 | 
			
		||||
				'background-size': '100px 100px', // 调整条纹的大小
 | 
			
		||||
			};
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			activeName: '日',
 | 
			
		||||
			user: '',
 | 
			
		||||
			lineChartData: lineChartData.newVisitis,
 | 
			
		||||
			homeData: {},
 | 
			
		||||
			timeday: moment(new Date()).subtract(1, 'days').format('YYYY-MM-DD'),
 | 
			
		||||
			startTime:
 | 
			
		||||
				moment(new Date()).subtract(0, 'days').format('YYYY-MM-DD') +
 | 
			
		||||
				' 00:00:00',
 | 
			
		||||
			endTime:
 | 
			
		||||
				moment(new Date()).subtract(-1, 'days').format('YYYY-MM-DD') +
 | 
			
		||||
				' 00:00:00',
 | 
			
		||||
 | 
			
		||||
			pickerOptions: {
 | 
			
		||||
				disabledDate(time) {
 | 
			
		||||
					return time.getTime() + 3600 * 1000 * 24 > Date.now();
 | 
			
		||||
				},
 | 
			
		||||
				shortcuts: [
 | 
			
		||||
					{
 | 
			
		||||
						text: '今天',
 | 
			
		||||
						onClick(picker) {
 | 
			
		||||
							picker.$emit('pick', new Date());
 | 
			
		||||
						},
 | 
			
		||||
					},
 | 
			
		||||
					{
 | 
			
		||||
						text: '昨天',
 | 
			
		||||
						onClick(picker) {
 | 
			
		||||
							const date = new Date();
 | 
			
		||||
							date.setTime(date.getTime() - 3600 * 1000 * 24);
 | 
			
		||||
							picker.$emit('pick', date);
 | 
			
		||||
						},
 | 
			
		||||
					},
 | 
			
		||||
					{
 | 
			
		||||
						text: '一周前',
 | 
			
		||||
						onClick(picker) {
 | 
			
		||||
							const date = new Date();
 | 
			
		||||
							date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
 | 
			
		||||
							picker.$emit('pick', date);
 | 
			
		||||
						},
 | 
			
		||||
					},
 | 
			
		||||
				],
 | 
			
		||||
			},
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	created() {
 | 
			
		||||
	},
 | 
			
		||||
	beforeDestroy() {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		getData() {
 | 
			
		||||
			let listQuery = {
 | 
			
		||||
				//分页
 | 
			
		||||
				pageSize: 10,
 | 
			
		||||
				pageNo: 1,
 | 
			
		||||
				statisticType: ['', '日', '周', '月', '年'].indexOf(this.activeName),
 | 
			
		||||
				startTime: this.timeday + ' 00:00:00',
 | 
			
		||||
			};
 | 
			
		||||
			getData(listQuery).then((response) => {
 | 
			
		||||
				this.homeData = response.data;
 | 
			
		||||
				for (let i in this.homeData) {
 | 
			
		||||
					this.homeData[i] = Number(this.homeData[i]).toFixed(2);
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		timedayChange() {
 | 
			
		||||
			let listQuery = {
 | 
			
		||||
				//分页
 | 
			
		||||
				pageSize: 10,
 | 
			
		||||
				pageNo: 1,
 | 
			
		||||
				statisticType: ['', '日', '周', '月', '年'].indexOf(this.activeName),
 | 
			
		||||
				startTime: this.timeday + ' 00:00:00',
 | 
			
		||||
			};
 | 
			
		||||
				getData(listQuery).then((response) => {
 | 
			
		||||
					this.homeData = response.data;
 | 
			
		||||
					for (let i in this.homeData) {
 | 
			
		||||
						this.homeData[i] = Number(this.homeData[i]).toFixed(2);
 | 
			
		||||
					}
 | 
			
		||||
				});
 | 
			
		||||
		},
 | 
			
		||||
		goDetail() {
 | 
			
		||||
			this.$router.push({ path: 'indexDetail' });
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
.home-page::before {
 | 
			
		||||
	background-image: url('~@/assets/img/home-bg.png');
 | 
			
		||||
	background-size: cover;
 | 
			
		||||
	background-repeat: no-repeat;
 | 
			
		||||
	background-position: center;
 | 
			
		||||
	content: '';
 | 
			
		||||
	position: absolute;
 | 
			
		||||
	top: 0;
 | 
			
		||||
	left: 0;
 | 
			
		||||
	width: 100%;
 | 
			
		||||
	height: 100%;
 | 
			
		||||
	transform: rotate(180deg);
 | 
			
		||||
}
 | 
			
		||||
.date-tabs {
 | 
			
		||||
	padding-left: 40px;
 | 
			
		||||
	padding-top: 20px;
 | 
			
		||||
	position: relative;
 | 
			
		||||
	margin-bottom: 20px;
 | 
			
		||||
}
 | 
			
		||||
:deep(.date-tabs) {
 | 
			
		||||
	.el-tabs__header {
 | 
			
		||||
		margin-bottom: 8px;
 | 
			
		||||
		display: inline-block;
 | 
			
		||||
		transform: translateY(-12px);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	.el-tabs__content {
 | 
			
		||||
		overflow: visible;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	.el-tabs__item {
 | 
			
		||||
		font-size: 18px;
 | 
			
		||||
		color: #fff;
 | 
			
		||||
		padding-left: 0 !important;
 | 
			
		||||
		padding-right: 0 !important;
 | 
			
		||||
		line-height: 36px !important;
 | 
			
		||||
		height: 36px;
 | 
			
		||||
	}
 | 
			
		||||
	.el-tabs__item.is-active {
 | 
			
		||||
		color: #0b58ff;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
.detail {
 | 
			
		||||
	display: inline-block;
 | 
			
		||||
	position: absolute;
 | 
			
		||||
	left: 260px;
 | 
			
		||||
	top: 10px;
 | 
			
		||||
}
 | 
			
		||||
:deep(.detail) {
 | 
			
		||||
	.el-input__inner {
 | 
			
		||||
		background-color: transparent;
 | 
			
		||||
		color: white;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
// .current-date {
 | 
			
		||||
// 	color: #fff;
 | 
			
		||||
// 	font-size: 18px;
 | 
			
		||||
// 	position: absolute;
 | 
			
		||||
// 	left: 260px;
 | 
			
		||||
// 	top: 14px;
 | 
			
		||||
// }
 | 
			
		||||
.current-time {
 | 
			
		||||
	color: #fff;
 | 
			
		||||
	font-size: 18px;
 | 
			
		||||
	position: absolute;
 | 
			
		||||
	right: 38px;
 | 
			
		||||
	top: 14px;
 | 
			
		||||
}
 | 
			
		||||
.main-top {
 | 
			
		||||
	width: 100%;
 | 
			
		||||
	padding: 0 20px 0 40px;
 | 
			
		||||
	.title {
 | 
			
		||||
		position: absolute;
 | 
			
		||||
		left: 34px;
 | 
			
		||||
		top: 20px;
 | 
			
		||||
		width: 180px;
 | 
			
		||||
		font-size: 32px;
 | 
			
		||||
		z-index: 10;
 | 
			
		||||
		.title-inner {
 | 
			
		||||
			position: absolute;
 | 
			
		||||
			left: 42px;
 | 
			
		||||
			top: 5px;
 | 
			
		||||
			font-size: calc(100vw * 20 / 1920);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	.box {
 | 
			
		||||
		background-color: #fff;
 | 
			
		||||
		border-radius: 24px;
 | 
			
		||||
		height: 192px;
 | 
			
		||||
		padding: 40px 24px 32px 24px;
 | 
			
		||||
		margin-bottom: 20px;
 | 
			
		||||
		box-shadow: 0 8px 8px 0 gray;
 | 
			
		||||
		.num-box {
 | 
			
		||||
			height: 120px;
 | 
			
		||||
			padding-top: 26px;
 | 
			
		||||
			text-align: center;
 | 
			
		||||
			.num-style {
 | 
			
		||||
				color: #000;
 | 
			
		||||
				font-size: calc(100vw * 40 / 1920);
 | 
			
		||||
			}
 | 
			
		||||
			.unit-style {
 | 
			
		||||
				color: rgba(0, 0, 0, 0.7);
 | 
			
		||||
				font-size: calc(100vw * 18 / 1920);
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		.shadow {
 | 
			
		||||
			background: linear-gradient(90deg, #ffffff 80%, #f2f4f9 100%);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
.main-bottom {
 | 
			
		||||
	width: 100%;
 | 
			
		||||
	margin-top: 20px;
 | 
			
		||||
	.chart-wrapper {
 | 
			
		||||
		margin-left: 10px;
 | 
			
		||||
		height: 425px;
 | 
			
		||||
		background: #fff;
 | 
			
		||||
		border-radius: 5px;
 | 
			
		||||
		box-shadow: 0 3px 3px 0 gray;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
<style lang="scss">
 | 
			
		||||
.home-page {
 | 
			
		||||
	.el-progress-bar__inner {
 | 
			
		||||
		background-image: url('~@/assets/img/home-progress-bg.png');
 | 
			
		||||
		background-size: cover;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										199
									
								
								src/views/cost/indexDetail.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,199 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="app-container">
 | 
			
		||||
		<search-bar
 | 
			
		||||
			:formConfigs="formConfig"
 | 
			
		||||
			ref="searchBarForm"
 | 
			
		||||
			@headBtnClick="buttonClick" />
 | 
			
		||||
		<base-table
 | 
			
		||||
			:table-props="tableProps1"
 | 
			
		||||
			:page="1"
 | 
			
		||||
			:limit="100"
 | 
			
		||||
			:table-data="tableData1"></base-table>
 | 
			
		||||
		<base-table
 | 
			
		||||
			:table-props="tableProps2"
 | 
			
		||||
			:page="1"
 | 
			
		||||
			:limit="100"
 | 
			
		||||
			:table-data="tableData2"></base-table>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { getDetailData } from '@/api/cost/allCost';
 | 
			
		||||
import moment from 'moment';
 | 
			
		||||
 | 
			
		||||
const tableProps1 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'name',
 | 
			
		||||
		label: '成本项目-原片',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'f1',
 | 
			
		||||
		label: '本期领用',
 | 
			
		||||
		children: [
 | 
			
		||||
			{
 | 
			
		||||
				prop: 'quantity',
 | 
			
		||||
				label: '数量',
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
				prop: 'price',
 | 
			
		||||
				label: '单价',
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
				prop: 'sumPrice',
 | 
			
		||||
				label: '金额',
 | 
			
		||||
			},
 | 
			
		||||
		],
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'sprice',
 | 
			
		||||
		label: '单位成本',
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'name',
 | 
			
		||||
		label: '成本项目-加工',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'quantity',
 | 
			
		||||
		label: '耗用数量',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'price',
 | 
			
		||||
		label: '平均耗用单价',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'sumPrice',
 | 
			
		||||
		label: '总成本',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'sprice',
 | 
			
		||||
		label: '综合单位成本',
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
export default {
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			tableProps1,
 | 
			
		||||
			tableData1: [],
 | 
			
		||||
			tableProps2,
 | 
			
		||||
			tableData2: [],
 | 
			
		||||
			listQuery: {
 | 
			
		||||
				pageSize: 10,
 | 
			
		||||
				pageNo: 1,
 | 
			
		||||
				statisticType: 1,
 | 
			
		||||
			},
 | 
			
		||||
			activeName: '日',
 | 
			
		||||
			startTime:
 | 
			
		||||
				moment(new Date()).subtract(1, 'days').format('YYYY-MM-DD') +
 | 
			
		||||
				' 00:00:00',
 | 
			
		||||
			endTime:
 | 
			
		||||
				moment(new Date()).subtract(-1, 'days').format('YYYY-MM-DD') +
 | 
			
		||||
				' 00:00:00',
 | 
			
		||||
			formConfig: [
 | 
			
		||||
				{
 | 
			
		||||
					type: 'select',
 | 
			
		||||
					label: '维度',
 | 
			
		||||
					selectOptions: [
 | 
			
		||||
						{ id: 1, name: '日' },
 | 
			
		||||
						{ id: 2, name: '周' },
 | 
			
		||||
						{ id: 3, name: '月' },
 | 
			
		||||
						{ id: 4, name: '年' },
 | 
			
		||||
					],
 | 
			
		||||
					param: 'statisticType',
 | 
			
		||||
					defaultSelect: 1, // 默认值,
 | 
			
		||||
					clearable: false,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					// 日期选择
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					// label: '日期',
 | 
			
		||||
					dateType: 'date',
 | 
			
		||||
					placeholder: '选择日期',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd',
 | 
			
		||||
					param: 'timeday',
 | 
			
		||||
					clearable: false,
 | 
			
		||||
					pickerOptions: {
 | 
			
		||||
						disabledDate(time) {
 | 
			
		||||
							return (time.getTime()+ 3600 * 1000 * 24) > Date.now();
 | 
			
		||||
						},
 | 
			
		||||
						shortcuts: [
 | 
			
		||||
							{
 | 
			
		||||
								text: '今天',
 | 
			
		||||
								onClick(picker) {
 | 
			
		||||
									picker.$emit('pick', new Date());
 | 
			
		||||
								},
 | 
			
		||||
							},
 | 
			
		||||
							{
 | 
			
		||||
								text: '昨天',
 | 
			
		||||
								onClick(picker) {
 | 
			
		||||
									const date = new Date();
 | 
			
		||||
									date.setTime(date.getTime() - 3600 * 1000 * 24);
 | 
			
		||||
									picker.$emit('pick', date);
 | 
			
		||||
								},
 | 
			
		||||
							},
 | 
			
		||||
							{
 | 
			
		||||
								text: '一周前',
 | 
			
		||||
								onClick(picker) {
 | 
			
		||||
									const date = new Date();
 | 
			
		||||
									date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
 | 
			
		||||
									picker.$emit('pick', date);
 | 
			
		||||
								},
 | 
			
		||||
							},
 | 
			
		||||
						],
 | 
			
		||||
					},
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '搜索',
 | 
			
		||||
					name: 'search',
 | 
			
		||||
					color: 'primary',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'separate',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '返回首页',
 | 
			
		||||
					name: 'back',
 | 
			
		||||
					color: 'warning',
 | 
			
		||||
				},
 | 
			
		||||
			],
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	mounted() {
 | 
			
		||||
		this.listQuery.startTime = this.startTime;
 | 
			
		||||
    this.$refs.searchBarForm.formInline.timeday = this.startTime.substr(0, 10)
 | 
			
		||||
		this.getDataList();
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		// 获取数据列表
 | 
			
		||||
		getDataList() {
 | 
			
		||||
			getDetailData(this.listQuery).then((response) => {
 | 
			
		||||
				this.tableData1 = response.data.odata;
 | 
			
		||||
				this.tableData2 = response.data.ddata;
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
          console.log(val.timeday)
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.timeday
 | 
			
		||||
						? val.timeday + ' 00:00:00'
 | 
			
		||||
						: null;
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'back':
 | 
			
		||||
          this.$router.go(-1)
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
					console.log(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
@@ -77,7 +77,7 @@ export default {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name||null;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
@@ -90,7 +90,7 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name;
 | 
			
		||||
					this.listQuery.recTime = val.searchTime;
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
				@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -86,24 +86,27 @@ import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'energyTypeName',
 | 
			
		||||
		label: '能源类型',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
		label: '监控对象',
 | 
			
		||||
		filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'meterName',
 | 
			
		||||
		label: '抄表名',
 | 
			
		||||
		filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	},
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'bindObjectName',
 | 
			
		||||
	// 	label: '监控对象',
 | 
			
		||||
	// 	filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	// },
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'meterName',
 | 
			
		||||
	// 	label: '抄表名',
 | 
			
		||||
	// 	filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	// },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'quantity',
 | 
			
		||||
		label: '累计使用量',
 | 
			
		||||
@@ -115,20 +118,24 @@ const tableProps = [
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'energyTypeName',
 | 
			
		||||
		label: '能源类型',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
		label: '监控对象',
 | 
			
		||||
		filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'meter',
 | 
			
		||||
		label: '抄表名',
 | 
			
		||||
		filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	},
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'bindObjectName',
 | 
			
		||||
	// 	label: '监控对象',
 | 
			
		||||
	// 	filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	// },
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'meter',
 | 
			
		||||
	// 	label: '抄表名',
 | 
			
		||||
	// 	filter: (val) => (val != null ? val : '--'),
 | 
			
		||||
	// },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'quantity',
 | 
			
		||||
		label: '累计使用量',
 | 
			
		||||
@@ -207,13 +214,16 @@ export default {
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					dateType: 'datetimerange',
 | 
			
		||||
					format: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					defaultTime: ['08:30:00', '08:30:00'],
 | 
			
		||||
					param: 'searchTime',
 | 
			
		||||
					width: 350,
 | 
			
		||||
					clearable: false,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
@@ -237,10 +247,11 @@ export default {
 | 
			
		||||
			activeName: 'his',
 | 
			
		||||
			tableProps,
 | 
			
		||||
			tableProps2,
 | 
			
		||||
			tableBtn: [{
 | 
			
		||||
			tableBtn: [
 | 
			
		||||
				{
 | 
			
		||||
					type: 'edit',
 | 
			
		||||
					btnName: '编辑',
 | 
			
		||||
					  }
 | 
			
		||||
				},
 | 
			
		||||
			].filter((v) => v),
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			tableData2: [],
 | 
			
		||||
@@ -262,26 +273,18 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			this.formConfig2[1].startPlaceholder = '开始时间';
 | 
			
		||||
			this.formConfig2[1].endPlaceholder = '结束时间';
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.energyTypeId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime ? val.searchTime[1] : null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.getDataList();
 | 
			
		||||
					} else {
 | 
			
		||||
						this.getDataList2();
 | 
			
		||||
@@ -292,13 +295,16 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.energyTypeId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime ? val.searchTime[1] : null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
					}
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
@@ -320,15 +326,26 @@ export default {
 | 
			
		||||
				const end = new Date();
 | 
			
		||||
				const start = new Date();
 | 
			
		||||
				start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59';
 | 
			
		||||
				this.formConfig2[1].startPlaceholder = parseTime(start).substr(0, 10);
 | 
			
		||||
				this.formConfig2[1].endPlaceholder = parseTime(end).substr(0, 10);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.$refs.searchBarForm2.formInline.searchTime = [
 | 
			
		||||
						this.listQuery.startTime,
 | 
			
		||||
						this.listQuery.endTime,
 | 
			
		||||
					];
 | 
			
		||||
				});
 | 
			
		||||
				this.listQuery.name = null;
 | 
			
		||||
				this.listQuery.pageNo = 1;
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		getNavDataList() {
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		// 获取数据2列表
 | 
			
		||||
		getDataList2() {
 | 
			
		||||
			if (this.listQuery.startTime) {
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2021-11-18 14:16:25
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2024-09-05 15:34:28
 | 
			
		||||
 * @LastEditTime: 2024-12-27 09:18:43
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
@@ -22,7 +22,7 @@
 | 
			
		||||
						placeholder="请输入原料名称" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
			<!-- <el-col :span="12">
 | 
			
		||||
				<el-form-item label="单价" prop="matPrice">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="dataForm.matPrice"
 | 
			
		||||
@@ -31,7 +31,7 @@
 | 
			
		||||
						placeholder="请输入单价" />
 | 
			
		||||
					(元/吨)
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			</el-col> -->
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
				<el-form-item label="累计用量" prop="quantity">
 | 
			
		||||
					<el-input-number
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
				@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -87,9 +87,12 @@ import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'materialName',
 | 
			
		||||
@@ -97,13 +100,13 @@ const tableProps = [
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'quantity',
 | 
			
		||||
		label: '累计使用量(吨)',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'matPrice',
 | 
			
		||||
		label: '单价(元/吨)',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
		label: '累计使用量(千克)',
 | 
			
		||||
	},
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'matPrice',
 | 
			
		||||
	// 	label: '单价(元/千克)',
 | 
			
		||||
	// 	align: 'right',
 | 
			
		||||
	// },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'price',
 | 
			
		||||
		label: '总价(元)',
 | 
			
		||||
@@ -111,6 +114,10 @@ const tableProps = [
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'remark',
 | 
			
		||||
	// 	label: '备注',
 | 
			
		||||
	// },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'materialName',
 | 
			
		||||
		label: '原料名称',
 | 
			
		||||
@@ -123,13 +130,13 @@ const tableProps2 = [
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'quantity',
 | 
			
		||||
		label: '累计使用量(吨)',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'materialPrice',
 | 
			
		||||
		label: '单价(元/吨)',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
		label: '累计使用量(千克)',
 | 
			
		||||
	},
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'materialPrice',
 | 
			
		||||
	// 	label: '单价(元/千克)',
 | 
			
		||||
	// 	align: 'right',
 | 
			
		||||
	// },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'price',
 | 
			
		||||
		label: '总价(元)',
 | 
			
		||||
@@ -204,13 +211,16 @@ export default {
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					dateType: 'datetimerange',
 | 
			
		||||
					format: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					defaultTime: ['08:30:00', '08:30:00'],
 | 
			
		||||
					param: 'searchTime',
 | 
			
		||||
					width: 350,
 | 
			
		||||
					clearable: false,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
@@ -234,10 +244,11 @@ export default {
 | 
			
		||||
			activeName: 'his',
 | 
			
		||||
			tableProps,
 | 
			
		||||
			tableProps2,
 | 
			
		||||
			tableBtn: [{
 | 
			
		||||
			tableBtn: [
 | 
			
		||||
				{
 | 
			
		||||
					type: 'edit',
 | 
			
		||||
					btnName: '编辑',
 | 
			
		||||
					  }
 | 
			
		||||
				},
 | 
			
		||||
			].filter((v) => v),
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			tableData2: [],
 | 
			
		||||
@@ -259,26 +270,20 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			this.formConfig2[1].startPlaceholder = '开始时间';
 | 
			
		||||
			this.formConfig2[1].endPlaceholder = '结束时间';
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.materialId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
						this.getDataList();
 | 
			
		||||
					} else {
 | 
			
		||||
						this.getDataList2();
 | 
			
		||||
@@ -289,13 +294,18 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.materialId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
					}
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
@@ -317,15 +327,26 @@ export default {
 | 
			
		||||
				const end = new Date();
 | 
			
		||||
				const start = new Date();
 | 
			
		||||
				start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59';
 | 
			
		||||
				this.formConfig2[1].startPlaceholder = parseTime(start).substr(0, 10);
 | 
			
		||||
				this.formConfig2[1].endPlaceholder = parseTime(end).substr(0, 10);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.$refs.searchBarForm2.formInline.searchTime = [
 | 
			
		||||
						this.listQuery.startTime,
 | 
			
		||||
						this.listQuery.endTime,
 | 
			
		||||
					];
 | 
			
		||||
				});
 | 
			
		||||
				this.listQuery.name = null;
 | 
			
		||||
				this.listQuery.pageNo = 1;
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		getNavDataList() {
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		// 获取数据2列表
 | 
			
		||||
		getDataList2() {
 | 
			
		||||
			if (this.listQuery.startTime) {
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2021-11-18 14:16:25
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2024-09-05 15:33:16
 | 
			
		||||
 * @LastEditTime: 2025-06-13 10:59:54
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
@@ -15,7 +15,9 @@
 | 
			
		||||
		label-width="80px">
 | 
			
		||||
		<el-row :gutter="20">
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
				<el-form-item label="产线" prop="bindObjectName">
 | 
			
		||||
				<el-form-item
 | 
			
		||||
					:label="activeName === 'his' ? '产线' : '工段'"
 | 
			
		||||
					prop="bindObjectName">
 | 
			
		||||
					<el-input
 | 
			
		||||
						style="width: 100%"
 | 
			
		||||
						v-model="dataForm.bindObjectName"
 | 
			
		||||
@@ -33,7 +35,7 @@
 | 
			
		||||
						placeholder="选择所属日期"></el-date-picker>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
			<el-col :span="12" v-if="activeName === 'his'">
 | 
			
		||||
				<el-form-item label="厚度" prop="thick">
 | 
			
		||||
					<el-input-number
 | 
			
		||||
						:min="0"
 | 
			
		||||
@@ -43,7 +45,7 @@
 | 
			
		||||
						placeholder="请输入厚度" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
			<el-col :span="12" v-if="activeName === 'his'">
 | 
			
		||||
				<el-form-item label="在线速度" prop="speed">
 | 
			
		||||
					<el-input-number
 | 
			
		||||
						:min="0"
 | 
			
		||||
@@ -53,7 +55,7 @@
 | 
			
		||||
						placeholder="请输入在线速度" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
			<el-col :span="12" v-if="activeName === 'his'">
 | 
			
		||||
				<el-form-item label="掰边宽度" prop="width">
 | 
			
		||||
					<el-input-number
 | 
			
		||||
						:min="0"
 | 
			
		||||
@@ -64,25 +66,27 @@
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
				<el-form-item label="拉引量" prop="inArea">
 | 
			
		||||
				<el-form-item
 | 
			
		||||
					:label="activeName === 'his' ? '拉引量' : '进片数'"
 | 
			
		||||
					prop="inArea">
 | 
			
		||||
					<el-input-number
 | 
			
		||||
						:min="0"
 | 
			
		||||
						style="width: 85%"
 | 
			
		||||
						v-model="dataForm.inArea"
 | 
			
		||||
						clearable
 | 
			
		||||
						placeholder="请输入拉引量" />
 | 
			
		||||
					(m²)
 | 
			
		||||
						clearable />
 | 
			
		||||
					{{ activeName === 'his' ? '(m²)' : '片' }}
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
				<el-form-item label="下片面积" prop="outArea">
 | 
			
		||||
				<el-form-item
 | 
			
		||||
					:label="activeName === 'his' ? '下片面积' : '出片数'"
 | 
			
		||||
					prop="outArea">
 | 
			
		||||
					<el-input-number
 | 
			
		||||
						:min="0"
 | 
			
		||||
						style="width: 85%"
 | 
			
		||||
						v-model="dataForm.outArea"
 | 
			
		||||
						clearable
 | 
			
		||||
						placeholder="请输入下片面积" />
 | 
			
		||||
					(m²)
 | 
			
		||||
						clearable />
 | 
			
		||||
					{{ activeName === 'his' ? '(m²)' : '片' }}
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
@@ -129,10 +133,12 @@ export default {
 | 
			
		||||
				recTime: undefined,
 | 
			
		||||
			},
 | 
			
		||||
			dataRule: {},
 | 
			
		||||
			activeName: 'his',
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		init(val, statisticType) {
 | 
			
		||||
		init(val, statisticType, activeName) {
 | 
			
		||||
			this.activeName = activeName;
 | 
			
		||||
			this.visible = true;
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.$refs['dataForm'].resetFields();
 | 
			
		||||
@@ -148,17 +154,22 @@ export default {
 | 
			
		||||
				if (!valid) {
 | 
			
		||||
					return false;
 | 
			
		||||
				}
 | 
			
		||||
				const udata = {
 | 
			
		||||
				let udata = {
 | 
			
		||||
					id: this.dataForm.id,
 | 
			
		||||
					statisticType: this.dataForm.statisticType,
 | 
			
		||||
					modifyThick: this.dataForm.thick,
 | 
			
		||||
					modifySpeed: this.dataForm.speed,
 | 
			
		||||
					modifyWidth: this.dataForm.width,
 | 
			
		||||
					modifyInArea: this.dataForm.inArea,
 | 
			
		||||
					modifyOutArea: this.dataForm.outArea,
 | 
			
		||||
					modifyRatio:
 | 
			
		||||
						this.dataForm.ratio >= 0 ? this.dataForm.ratio / 100 : '',
 | 
			
		||||
				};
 | 
			
		||||
				if (this.activeName === 'his') {
 | 
			
		||||
					udata = {
 | 
			
		||||
						...udata,
 | 
			
		||||
						modifyThick: this.dataForm.thick,
 | 
			
		||||
						modifySpeed: this.dataForm.speed,
 | 
			
		||||
						modifyWidth: this.dataForm.width,
 | 
			
		||||
					};
 | 
			
		||||
				}
 | 
			
		||||
				// 修改的提交
 | 
			
		||||
				this.urlOptions.updateURL(udata).then((response) => {
 | 
			
		||||
					this.$modal.msgSuccess('修改成功');
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,22 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<div>
 | 
			
		||||
		<div style="background: #f2f4f9; height: 40px; width: 100%">
 | 
			
		||||
			<ButtonNav :menus="['产线良品率', '工段良品率']" @change="currentMenu">
 | 
			
		||||
				<template v-slot:tab1>
 | 
			
		||||
					<div>产线良品率</div>
 | 
			
		||||
				</template>
 | 
			
		||||
				<template v-slot:tab2>
 | 
			
		||||
					<div>工段良品率</div>
 | 
			
		||||
				</template>
 | 
			
		||||
			</ButtonNav>
 | 
			
		||||
		</div>
 | 
			
		||||
		<div class="app-container energyOverlimitLog">
 | 
			
		||||
		<!-- 搜索工作栏 -->
 | 
			
		||||
			<search-bar
 | 
			
		||||
				:formConfigs="formConfig"
 | 
			
		||||
				ref="searchBarForm"
 | 
			
		||||
				@headBtnClick="buttonClick" />
 | 
			
		||||
			<!-- 列表 -->
 | 
			
		||||
			<div v-if="activeName === 'his'">
 | 
			
		||||
				<base-table
 | 
			
		||||
					:page="listQuery.pageNo"
 | 
			
		||||
					:limit="listQuery.pageSize"
 | 
			
		||||
@@ -20,11 +31,28 @@
 | 
			
		||||
						:method-list="tableBtn"
 | 
			
		||||
						@clickBtn="handleClick" />
 | 
			
		||||
				</base-table>
 | 
			
		||||
			</div>
 | 
			
		||||
			<div v-if="activeName === 'now'">
 | 
			
		||||
				<base-table
 | 
			
		||||
					:page="listQuery.pageNo"
 | 
			
		||||
					:limit="listQuery.pageSize"
 | 
			
		||||
					:table-props="tableProps2"
 | 
			
		||||
					:table-data="tableData2"
 | 
			
		||||
					:max-height="tableH">
 | 
			
		||||
					<method-btn
 | 
			
		||||
						v-if="tableBtn.length"
 | 
			
		||||
						slot="handleBtn"
 | 
			
		||||
						:width="80"
 | 
			
		||||
						label="操作"
 | 
			
		||||
						:method-list="tableBtn"
 | 
			
		||||
						@clickBtn="handleClick" />
 | 
			
		||||
				</base-table>
 | 
			
		||||
			</div>
 | 
			
		||||
			<pagination
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
			@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -38,22 +66,34 @@
 | 
			
		||||
					@refreshDataList="successSubmit"></add-or-update>
 | 
			
		||||
			</base-dialog>
 | 
			
		||||
		</div>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import AddOrUpdate from './add-or-updata';
 | 
			
		||||
import basicPage from '@/mixins/basic-page';
 | 
			
		||||
import { getLinePage } from '@/api/base/productionLine';
 | 
			
		||||
import { getcostOriginRatioHisPage,exportcostOriginRatioHisExcel } from '@/api/cost/costOriginRatioHis';
 | 
			
		||||
import {
 | 
			
		||||
	getcostOriginRatioHisPage,
 | 
			
		||||
	getcostOriginWSRatioHisPage,
 | 
			
		||||
	exportcostOriginWSRatioHisExcel,
 | 
			
		||||
	exportcostOriginRatioHisExcel,
 | 
			
		||||
} from '@/api/cost/costOriginRatioHis';
 | 
			
		||||
import { parseTime } from '@/filter/code-filter';
 | 
			
		||||
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
 | 
			
		||||
import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
    width:130,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
		label: '产线',
 | 
			
		||||
@@ -62,27 +102,67 @@ const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'thick',
 | 
			
		||||
		label: '厚度',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(1) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'speed',
 | 
			
		||||
		label: '在线速度',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'width',
 | 
			
		||||
		label: '掰边宽度',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'inArea',
 | 
			
		||||
		label: '拉引量/m²',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outArea',
 | 
			
		||||
		label: '下片面积/m²',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'ratio',
 | 
			
		||||
		label: '良品率',
 | 
			
		||||
		filter: (val) => (val ? val * 100 + '%' : '-'),
 | 
			
		||||
		filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2  = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
    width:130,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
		label: '工段',
 | 
			
		||||
    width:145,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'spec',
 | 
			
		||||
		label: '规格',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'inArea',
 | 
			
		||||
		label: '进片数',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outArea',
 | 
			
		||||
		label: '出片数',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'ratio',
 | 
			
		||||
		label: '良品率',
 | 
			
		||||
		filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
export default {
 | 
			
		||||
@@ -116,13 +196,15 @@ export default {
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					dateType: 'datetimerange',
 | 
			
		||||
					format: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					defaultTime: ['08:30:00', '08:30:00'],
 | 
			
		||||
					param: 'searchTime',
 | 
			
		||||
					width: 350,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
@@ -143,23 +225,27 @@ export default {
 | 
			
		||||
			listQuery: {
 | 
			
		||||
				statisticType: 1,
 | 
			
		||||
			},
 | 
			
		||||
			activeName: 'his',
 | 
			
		||||
			tableProps,
 | 
			
		||||
			tableProps2,
 | 
			
		||||
			tableBtn: [{
 | 
			
		||||
							type: 'edit',
 | 
			
		||||
							btnName: '编辑',
 | 
			
		||||
					  }
 | 
			
		||||
			].filter((v) => v),
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			tableData2: [],
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	components: {
 | 
			
		||||
		AddOrUpdate,
 | 
			
		||||
		ButtonNav,
 | 
			
		||||
	},
 | 
			
		||||
	created() {
 | 
			
		||||
    const params ={
 | 
			
		||||
      pageNo: 1,
 | 
			
		||||
      pageSize: 100,
 | 
			
		||||
      pdType: 1
 | 
			
		||||
      pdType: 0
 | 
			
		||||
    }
 | 
			
		||||
		getLinePage(params).then((response) => {
 | 
			
		||||
			this.formConfig[1].selectOptions = response.data.list;
 | 
			
		||||
@@ -167,36 +253,33 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.bindObjectId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.getDataList();
 | 
			
		||||
					} else {
 | 
			
		||||
						this.getDataList2();
 | 
			
		||||
					}
 | 
			
		||||
					break;
 | 
			
		||||
				case 'add':
 | 
			
		||||
					this.addOrUpdateHandle();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.bindObjectId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
@@ -204,23 +287,74 @@ export default {
 | 
			
		||||
					console.log(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		currentMenu(val) {
 | 
			
		||||
			this.activeName = val === '产线良品率' ? 'his' : 'now';
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.$refs.searchBarForm.resetForm();
 | 
			
		||||
				this.listQuery.bindObjectId = null;
 | 
			
		||||
				this.listQuery.startTime = null;
 | 
			
		||||
				this.listQuery.endTime = null;
 | 
			
		||||
				this.listQuery.statisticType = 1;
 | 
			
		||||
				this.listQuery.pageNo = 1;
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.$refs.searchBarForm.resetForm();
 | 
			
		||||
				this.listQuery.bindObjectId = null;
 | 
			
		||||
				this.listQuery.startTime = null;
 | 
			
		||||
				this.listQuery.endTime = null;
 | 
			
		||||
				this.listQuery.statisticType = 1;
 | 
			
		||||
				this.listQuery.pageNo = 1;
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		// 获取数据2列表
 | 
			
		||||
		getDataList2() {
 | 
			
		||||
			getcostOriginWSRatioHisPage(this.listQuery).then((response) => {
 | 
			
		||||
				this.tableData2 = response.data.list;
 | 
			
		||||
				this.listQuery.total = response.data.total;
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		//tableBtn点击
 | 
			
		||||
		handleClick(val) {
 | 
			
		||||
			if (val.type === 'edit') {
 | 
			
		||||
				this.addOrUpdateVisible = true;
 | 
			
		||||
				this.addOrEditTitle = '编辑';
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.$refs.addOrUpdate.init(val.data, this.listQuery.statisticType);
 | 
			
		||||
					this.$refs.addOrUpdate.init(
 | 
			
		||||
						val.data,
 | 
			
		||||
						this.listQuery.statisticType,
 | 
			
		||||
						this.activeName
 | 
			
		||||
					);
 | 
			
		||||
				});
 | 
			
		||||
			} else {
 | 
			
		||||
				this.otherMethods(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
    getNavDataList(){
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
    },
 | 
			
		||||
		successSubmit() {
 | 
			
		||||
			this.handleCancel();
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		/** 导出按钮操作 */
 | 
			
		||||
		handleExport() {
 | 
			
		||||
			let exportURL, title;
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				exportURL = exportcostOriginRatioHisExcel;
 | 
			
		||||
        title = '原片成本-原片良品率';
 | 
			
		||||
				title = '原片-产线良品率';
 | 
			
		||||
			} else {
 | 
			
		||||
				exportURL = exportcostOriginWSRatioHisExcel;
 | 
			
		||||
				title = '原片-工段良品率';
 | 
			
		||||
			}
 | 
			
		||||
			// 处理查询参数
 | 
			
		||||
			let params = { ...this.listQuery };
 | 
			
		||||
			params.pageNo = undefined;
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
				@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -87,9 +87,12 @@ import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '日期',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'otherCostName',
 | 
			
		||||
@@ -102,6 +105,10 @@ const tableProps = [
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	// {
 | 
			
		||||
	// 	prop: 'remark',
 | 
			
		||||
	// 	label: '备注',
 | 
			
		||||
	// },
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'otherCostName',
 | 
			
		||||
		label: '成本名称',
 | 
			
		||||
@@ -182,13 +189,16 @@ export default {
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					dateType: 'datetimerange',
 | 
			
		||||
					format: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					defaultTime: ['08:30:00', '08:30:00'],
 | 
			
		||||
					param: 'searchTime',
 | 
			
		||||
					width: 350,
 | 
			
		||||
					clearable: false,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
@@ -237,24 +247,20 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
						this.getDataList();
 | 
			
		||||
					} else {
 | 
			
		||||
						this.getDataList2();
 | 
			
		||||
@@ -265,13 +271,18 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
					}
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
@@ -297,6 +308,13 @@ export default {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
    getNavDataList(){
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
    },
 | 
			
		||||
		// 获取数据2列表
 | 
			
		||||
		getDataList2() {
 | 
			
		||||
			getRawOthercostSunPage(this.listQuery).then((response) => {
 | 
			
		||||
 
 | 
			
		||||
@@ -65,6 +65,7 @@ const tableProps = [
 | 
			
		||||
		prop: 'price',
 | 
			
		||||
		label: '成本金额',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
@@ -161,7 +162,7 @@ export default {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name||null;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
@@ -174,7 +175,7 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.name = val.name||null;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
 
 | 
			
		||||
@@ -2,7 +2,7 @@
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2023-12-05 13:45:59
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2024-04-15 17:12:03
 | 
			
		||||
 * @LastEditTime: 2024-12-25 16:20:38
 | 
			
		||||
 * @Description
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
@@ -10,9 +10,9 @@
 | 
			
		||||
		<span>
 | 
			
		||||
			{{
 | 
			
		||||
				injectData.type == 1
 | 
			
		||||
					? `每天等价,${injectData.price}元`
 | 
			
		||||
					? `每天等价,${Number(injectData.price)}元`
 | 
			
		||||
					: injectData.type == 2
 | 
			
		||||
					? `总价${injectData.price}元,年折旧率${injectData.ratio}%,折旧年限${injectData.timeLimit}年`
 | 
			
		||||
					? `总价${Number(injectData.price)}元,年折旧率${injectData.ratio}%,折旧年限${injectData.timeLimit}年`
 | 
			
		||||
					: '-'
 | 
			
		||||
			}}
 | 
			
		||||
		</span>
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
				:page.sync="listQuery.pageNo"
 | 
			
		||||
				:limit.sync="listQuery.pageSize"
 | 
			
		||||
				:total="listQuery.total"
 | 
			
		||||
				@pagination="getDataList" />
 | 
			
		||||
				@pagination="getNavDataList" />
 | 
			
		||||
			<base-dialog
 | 
			
		||||
				:dialogTitle="addOrEditTitle"
 | 
			
		||||
				:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
@@ -87,9 +87,12 @@ import ButtonNav from '@/components/ButtonNav';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'recTime',
 | 
			
		||||
		prop: 'time',
 | 
			
		||||
		label: '时间',
 | 
			
		||||
		filter: (val) => parseTime(val, '{y}年{m}月{d}日'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
@@ -98,32 +101,41 @@ const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'thick',
 | 
			
		||||
		label: '厚度',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(1) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'inArea',
 | 
			
		||||
		label: '拉引量/m²',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outArea',
 | 
			
		||||
		label: '下片面积/m²',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'ratio',
 | 
			
		||||
		label: '良品率',
 | 
			
		||||
		filter: (val) => (val ? val * 100 + '%' : '-'),
 | 
			
		||||
		filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costSum',
 | 
			
		||||
		label: '原片成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costArea',
 | 
			
		||||
		label: '每平米成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'bindObjectName',
 | 
			
		||||
		label: '产线',
 | 
			
		||||
@@ -135,34 +147,40 @@ const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'inArea',
 | 
			
		||||
		label: '拉引量/m²',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outArea',
 | 
			
		||||
		label: '下片面积/m²',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'outCount',
 | 
			
		||||
		label: '下片数量',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'ratio',
 | 
			
		||||
		label: '良品率',
 | 
			
		||||
		filter: (val) => (val ? val * 100 + '%' : '-'),
 | 
			
		||||
		filter: (val) => (val ? Number(val * 100).toFixed(2) + '%' : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costSum',
 | 
			
		||||
		label: '原片成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costPiece',
 | 
			
		||||
		label: '单片成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'costArea',
 | 
			
		||||
		label: '每平米成本/元',
 | 
			
		||||
		align: 'right',
 | 
			
		||||
    filter: (val) => (val != null ? Number(val).toFixed(2) : '-'),
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
export default {
 | 
			
		||||
@@ -224,13 +242,16 @@ export default {
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					dateType: 'datetimerange',
 | 
			
		||||
					format: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					defaultTime: ['08:30:00', '08:30:00'],
 | 
			
		||||
					param: 'searchTime',
 | 
			
		||||
					width: 350,
 | 
			
		||||
					clearable: false,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'select',
 | 
			
		||||
@@ -287,26 +308,20 @@ export default {
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.statisticType === 2) {
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年第{w}周');
 | 
			
		||||
			}else{
 | 
			
		||||
				this.tableProps[0].filter = (val) =>
 | 
			
		||||
					parseTime(val, '{y}年{m}月{d}日');
 | 
			
		||||
      }
 | 
			
		||||
			this.formConfig2[0].startPlaceholder = '开始时间';
 | 
			
		||||
			this.formConfig2[0].endPlaceholder = '结束时间';
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.bindObjectId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
						this.getDataList();
 | 
			
		||||
					} else {
 | 
			
		||||
						this.getDataList2();
 | 
			
		||||
@@ -317,13 +332,18 @@ export default {
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.pageSize = 20;
 | 
			
		||||
					this.listQuery.bindObjectId = val.name || null;
 | 
			
		||||
					this.listQuery.statisticType = val.statisticType || 1;
 | 
			
		||||
					this.listQuery.startTime = val.searchTime ? val.searchTime[0] : null;
 | 
			
		||||
					this.listQuery.endTime = val.searchTime
 | 
			
		||||
						? val.searchTime[1]
 | 
			
		||||
						: null;
 | 
			
		||||
					if (this.activeName === 'his') {
 | 
			
		||||
						this.listQuery.endTime = val.searchTime
 | 
			
		||||
							? val.searchTime[1].substr(0, 10) + ' 23:59:59'
 | 
			
		||||
							: null;
 | 
			
		||||
					}
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
@@ -345,15 +365,26 @@ export default {
 | 
			
		||||
				const end = new Date();
 | 
			
		||||
				const start = new Date();
 | 
			
		||||
				start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 00:00:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 23:59:59';
 | 
			
		||||
				this.formConfig2[0].startPlaceholder = parseTime(start).substr(0, 10);
 | 
			
		||||
				this.formConfig2[0].endPlaceholder = parseTime(end).substr(0, 10);
 | 
			
		||||
				this.listQuery.startTime = parseTime(start).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.listQuery.endTime = parseTime(end).substr(0, 10) + ' 08:30:00';
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.$refs.searchBarForm2.formInline.searchTime = [
 | 
			
		||||
						this.listQuery.startTime,
 | 
			
		||||
						this.listQuery.endTime,
 | 
			
		||||
					];
 | 
			
		||||
				});
 | 
			
		||||
				this.listQuery.name = null;
 | 
			
		||||
				this.listQuery.pageNo = 1;
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
    getNavDataList(){
 | 
			
		||||
			if (this.activeName === 'his') {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.getDataList2();
 | 
			
		||||
			}
 | 
			
		||||
    },
 | 
			
		||||
		// 获取数据2列表
 | 
			
		||||
		getDataList2() {
 | 
			
		||||
			if (this.listQuery.startTime) {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										83
									
								
								src/views/group/Calendar/holidayLog.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,83 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-23 13:43:55
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-23 16:50:43
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="app-container">
 | 
			
		||||
		<div v-for="item in groupClassArr" :key="item.planId">
 | 
			
		||||
			<small-title style="margin: 16px 0" size="sm" :no-padding="true">
 | 
			
		||||
				{{item.planName}}
 | 
			
		||||
			</small-title>
 | 
			
		||||
			<base-table
 | 
			
		||||
				:table-props="tableProps"
 | 
			
		||||
				:table-data="
 | 
			
		||||
					tableData.filter((titem) => titem.schedulingPlanId == item.planId)
 | 
			
		||||
				"></base-table>
 | 
			
		||||
		</div>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import SmallTitle from '../Schedule/SmallTitle';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'classesName',
 | 
			
		||||
		label: '班次名称',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'workTime',
 | 
			
		||||
		label: '班次时间',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'teamName',
 | 
			
		||||
		label: '班组名称',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'teamLeader',
 | 
			
		||||
		label: '组长',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'teamLeaderPhone',
 | 
			
		||||
		label: '组长电话',
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	components: {
 | 
			
		||||
		SmallTitle,
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			tableProps,
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			groupClassArr: [],
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {
 | 
			
		||||
		init(det) {
 | 
			
		||||
			this.tableData = det;
 | 
			
		||||
			//返回计划名和id
 | 
			
		||||
			const arr = det.map((item) => {
 | 
			
		||||
				const obj = {
 | 
			
		||||
					planName: item.schedulingPlanName,
 | 
			
		||||
					planId: item.schedulingPlanId,
 | 
			
		||||
				};
 | 
			
		||||
				return obj;
 | 
			
		||||
			});
 | 
			
		||||
			//去重
 | 
			
		||||
			const map = new Map();
 | 
			
		||||
			arr.forEach((item) => {
 | 
			
		||||
				if (!map.has(item.planId)) {
 | 
			
		||||
					map.set(item.planId, item);
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
			this.groupClassArr = Array.from(map.values());
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										567
									
								
								src/views/group/Calendar/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,567 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-23 13:43:55
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-24 11:14:55
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<el-row :gutter="10" style="background-color: #f2f4f9">
 | 
			
		||||
		<!--部门数据-->
 | 
			
		||||
		<el-col :span="4">
 | 
			
		||||
			<div class="head-container">
 | 
			
		||||
				<el-tabs v-model="activeName" stretch @tab-click="tabsClick">
 | 
			
		||||
					<el-tab-pane label="部门" name="first"></el-tab-pane>
 | 
			
		||||
					<el-tab-pane label="班组" name="second"></el-tab-pane>
 | 
			
		||||
				</el-tabs>
 | 
			
		||||
				<div v-if="activeName == 'first'">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="deptName"
 | 
			
		||||
						placeholder="请输入部门名称"
 | 
			
		||||
						clearable
 | 
			
		||||
						size="small"
 | 
			
		||||
						prefix-icon="el-icon-search"
 | 
			
		||||
						style="margin-bottom: 20px" />
 | 
			
		||||
					<el-tree
 | 
			
		||||
						:data="deptOptions"
 | 
			
		||||
						:props="defaultProps"
 | 
			
		||||
						:expand-on-click-node="false"
 | 
			
		||||
						:filter-node-method="filterNode"
 | 
			
		||||
						ref="tree"
 | 
			
		||||
						default-expand-all
 | 
			
		||||
						highlight-current
 | 
			
		||||
						@node-click="handleNodeClick" />
 | 
			
		||||
				</div>
 | 
			
		||||
				<div v-else>
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="groupName"
 | 
			
		||||
						placeholder="请输入班组名称"
 | 
			
		||||
						clearable
 | 
			
		||||
						size="small"
 | 
			
		||||
						prefix-icon="el-icon-search"
 | 
			
		||||
						style="margin-bottom: 20px" />
 | 
			
		||||
					<el-tree
 | 
			
		||||
						:data="groupOptions"
 | 
			
		||||
						:props="defaultProps"
 | 
			
		||||
						:expand-on-click-node="false"
 | 
			
		||||
						:filter-node-method="filterNode"
 | 
			
		||||
						ref="tree1"
 | 
			
		||||
						default-expand-all
 | 
			
		||||
						highlight-current
 | 
			
		||||
						@node-click="handleNodeClick1" />
 | 
			
		||||
				</div>
 | 
			
		||||
			</div>
 | 
			
		||||
		</el-col>
 | 
			
		||||
		<el-col :span="20">
 | 
			
		||||
			<div class="groupTeamScheduling">
 | 
			
		||||
				<div class="operationArea">
 | 
			
		||||
					<el-form :inline="true" class="demo-form-inline">
 | 
			
		||||
						<span class="blue-block"></span>
 | 
			
		||||
						<el-form-item label="月份选择">
 | 
			
		||||
							<el-date-picker
 | 
			
		||||
								v-model="startDay"
 | 
			
		||||
								type="month"
 | 
			
		||||
								placeholder="选择月"
 | 
			
		||||
								size="small"
 | 
			
		||||
								@change="selectMonth"
 | 
			
		||||
								:clearable="false"
 | 
			
		||||
								style="width: 120px"></el-date-picker>
 | 
			
		||||
							<span
 | 
			
		||||
								style="color: #909399; font-size: 12px"
 | 
			
		||||
								v-if="activeName == 'first'">
 | 
			
		||||
								提示:排班日历仅展示当前选中部门的节假日设置,若休假日中仍有排班,则表示下级组织已通过自定义假期进行排班。
 | 
			
		||||
							</span>
 | 
			
		||||
							<span v-else>
 | 
			
		||||
								组长:{{ showTeamName?.leaderName || '-' }} 组长电话:{{
 | 
			
		||||
									showTeamName?.leaderPhone || '-'
 | 
			
		||||
								}}
 | 
			
		||||
							</span>
 | 
			
		||||
						</el-form-item>
 | 
			
		||||
						<el-form-item style="float: right">
 | 
			
		||||
							<el-button
 | 
			
		||||
								size="small"
 | 
			
		||||
								type="primary"
 | 
			
		||||
								@click="(startDay = new Date()), getHolidayPage()">
 | 
			
		||||
								跳转到今天
 | 
			
		||||
							</el-button>
 | 
			
		||||
						</el-form-item>
 | 
			
		||||
					</el-form>
 | 
			
		||||
				</div>
 | 
			
		||||
				<!-- 日历区域 -->
 | 
			
		||||
				<div class="calenderArea">
 | 
			
		||||
					<el-calendar v-model="startDay">
 | 
			
		||||
						<template slot="dateCell" slot-scope="{ data }">
 | 
			
		||||
							<div v-if="data.type === 'current-month'">
 | 
			
		||||
								<!-- 日期 -->
 | 
			
		||||
								<div class="dateStyle">
 | 
			
		||||
									<el-row :gutter="20">
 | 
			
		||||
										<!-- 公历和农历 -->
 | 
			
		||||
										<el-col :span="18">
 | 
			
		||||
											{{ Number(data.day.split('-')[2]) }}
 | 
			
		||||
											<div class="lunar-date">{{ getLunarDate(data.day) }}</div>
 | 
			
		||||
										</el-col>
 | 
			
		||||
										<!-- 显示假或班 -->
 | 
			
		||||
										<el-col :span="6">
 | 
			
		||||
											<div
 | 
			
		||||
												class="work-tip"
 | 
			
		||||
												:style="{
 | 
			
		||||
													backgroundColor: HolidayList[
 | 
			
		||||
														Number(data.day.split('-')[2]) - 1
 | 
			
		||||
													]?.isHoliday
 | 
			
		||||
														? '#67C23A'
 | 
			
		||||
														: '#409EFF',
 | 
			
		||||
												}">
 | 
			
		||||
												{{
 | 
			
		||||
													HolidayList[Number(data.day.split('-')[2]) - 1]
 | 
			
		||||
														?.isHoliday
 | 
			
		||||
														? '假'
 | 
			
		||||
														: '班'
 | 
			
		||||
												}}
 | 
			
		||||
                        <!-- //变更节假日未更新排班计划的角标 -->
 | 
			
		||||
												<div
 | 
			
		||||
													class="subIcon"
 | 
			
		||||
													v-if="
 | 
			
		||||
														HolidayList[Number(data.day.split('-')[2]) - 1]
 | 
			
		||||
															?.isUpdate
 | 
			
		||||
													">
 | 
			
		||||
													<el-tooltip
 | 
			
		||||
														effect="dark"
 | 
			
		||||
														content="本日节假日变更已影响当前排班计划,但尚未同步,请及时处理。"
 | 
			
		||||
														placement="top">
 | 
			
		||||
														<i
 | 
			
		||||
															class="el-icon-warning"
 | 
			
		||||
															style="color: #f56c6c"></i>
 | 
			
		||||
													</el-tooltip>
 | 
			
		||||
												</div>
 | 
			
		||||
											</div>
 | 
			
		||||
										</el-col>
 | 
			
		||||
										<!-- 显示排班 -->
 | 
			
		||||
										<div
 | 
			
		||||
											v-if="
 | 
			
		||||
												HolidayList[Number(data.day.split('-')[2]) - 1]?.det
 | 
			
		||||
													.length > 0
 | 
			
		||||
											">
 | 
			
		||||
											<el-col
 | 
			
		||||
												:span="24"
 | 
			
		||||
												v-for="(item, index) in HolidayList[
 | 
			
		||||
													Number(data.day.split('-')[2]) - 1
 | 
			
		||||
												]?.det.filter(
 | 
			
		||||
													(item) =>
 | 
			
		||||
														item.schedulingPlanId ==
 | 
			
		||||
														HolidayList[Number(data.day.split('-')[2]) - 1]
 | 
			
		||||
															?.schedulingPlanId
 | 
			
		||||
												)"
 | 
			
		||||
												:key="index">
 | 
			
		||||
												<el-tooltip
 | 
			
		||||
													effect="dark"
 | 
			
		||||
													content="点击展示全部排班计划"
 | 
			
		||||
													placement="top-start">
 | 
			
		||||
													<div
 | 
			
		||||
														class="holiday-div"
 | 
			
		||||
														:style="{
 | 
			
		||||
															backgroundColor:
 | 
			
		||||
																holidayDivColor[item?.classesCode],
 | 
			
		||||
														}"
 | 
			
		||||
														@click="
 | 
			
		||||
															holidayLog(
 | 
			
		||||
																HolidayList[Number(data.day.split('-')[2]) - 1]
 | 
			
		||||
																	?.det,
 | 
			
		||||
																HolidayList[Number(data.day.split('-')[2]) - 1]
 | 
			
		||||
																	?.date
 | 
			
		||||
															)
 | 
			
		||||
														"
 | 
			
		||||
														:title="
 | 
			
		||||
															item.classesName +
 | 
			
		||||
															' | ' +
 | 
			
		||||
															item.teamName +
 | 
			
		||||
															' | ' +
 | 
			
		||||
															item.workTime
 | 
			
		||||
														">
 | 
			
		||||
														{{
 | 
			
		||||
															item.classesName +
 | 
			
		||||
															' | ' +
 | 
			
		||||
															item.teamName +
 | 
			
		||||
															' | ' +
 | 
			
		||||
															item.workTime
 | 
			
		||||
														}}
 | 
			
		||||
													</div>
 | 
			
		||||
												</el-tooltip>
 | 
			
		||||
											</el-col>
 | 
			
		||||
										</div>
 | 
			
		||||
									</el-row>
 | 
			
		||||
								</div>
 | 
			
		||||
							</div>
 | 
			
		||||
							<div
 | 
			
		||||
								v-else
 | 
			
		||||
								style="font-size: 20px; font-weight: 500; text-align: left">
 | 
			
		||||
								<el-row :gutter="20">
 | 
			
		||||
									<el-col :span="24">
 | 
			
		||||
										{{ Number(data.day.split('-')[2]) }}
 | 
			
		||||
										<span style="font-size: 12px">
 | 
			
		||||
											{{ getLunarDate(data.day) }}
 | 
			
		||||
										</span>
 | 
			
		||||
									</el-col>
 | 
			
		||||
								</el-row>
 | 
			
		||||
							</div>
 | 
			
		||||
						</template>
 | 
			
		||||
					</el-calendar>
 | 
			
		||||
				</div>
 | 
			
		||||
			</div>
 | 
			
		||||
		</el-col>
 | 
			
		||||
		<base-dialog
 | 
			
		||||
			:dialogTitle="dialogTitle"
 | 
			
		||||
			:dialogVisible="logVisible"
 | 
			
		||||
			@cancel="cancelLog"
 | 
			
		||||
			:before-close="cancelLog"
 | 
			
		||||
			:destroy-on-close="true"
 | 
			
		||||
			width="70%">
 | 
			
		||||
			<holiday-log ref="holidayLogRef"></holiday-log>
 | 
			
		||||
			<template #footer>
 | 
			
		||||
				<slot name="footer">
 | 
			
		||||
					<el-row slot="footer" type="flex" justify="end">
 | 
			
		||||
						<el-col :span="24">
 | 
			
		||||
							<el-button size="small" class="btnTextStyle" @click="cancelLog">
 | 
			
		||||
								取消
 | 
			
		||||
							</el-button>
 | 
			
		||||
						</el-col>
 | 
			
		||||
					</el-row>
 | 
			
		||||
				</slot>
 | 
			
		||||
			</template>
 | 
			
		||||
		</base-dialog>
 | 
			
		||||
	</el-row>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import moment from 'moment';
 | 
			
		||||
import { solarToLunar } from 'chinese-lunar';
 | 
			
		||||
 | 
			
		||||
import { getUserProfile } from '@/api/system/user';
 | 
			
		||||
import { listByDeptId } from '@/api/group/Schedule';
 | 
			
		||||
import { getEnableData } from '@/api/group/holidaySetting';
 | 
			
		||||
import {
 | 
			
		||||
	getDeptSchedulingList,
 | 
			
		||||
	getClassSchedulingList,
 | 
			
		||||
} from '@/api/group/calendar';
 | 
			
		||||
import holidayLog from './holidayLog';
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	name: '',
 | 
			
		||||
	components: {
 | 
			
		||||
		holidayLog,
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			activeName: 'first',
 | 
			
		||||
			startDay: '', // 查询参数
 | 
			
		||||
			HolidayList: [],
 | 
			
		||||
			// 选择的部门名称
 | 
			
		||||
			showDeptName: undefined,
 | 
			
		||||
			showTeamName: {},
 | 
			
		||||
			// 部门树选项
 | 
			
		||||
			deptOptions: undefined,
 | 
			
		||||
			groupOptions: undefined,
 | 
			
		||||
			// 查询的部门名称
 | 
			
		||||
			deptName: undefined,
 | 
			
		||||
			groupName: undefined,
 | 
			
		||||
 | 
			
		||||
			topDept: {}, // 保存当前用户的部门id为最高级部门id
 | 
			
		||||
			deptId: undefined,
 | 
			
		||||
			teamId: undefined,
 | 
			
		||||
 | 
			
		||||
			defaultProps: {
 | 
			
		||||
				children: 'children',
 | 
			
		||||
				label: 'name',
 | 
			
		||||
			},
 | 
			
		||||
			logVisible: false,
 | 
			
		||||
			dialogTitle: '',
 | 
			
		||||
			holidayDivColor: ['#67c23a', '#69d983', '#f5c931', '#4fa6f0'],
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	watch: {
 | 
			
		||||
		// 根据名称筛选部门树
 | 
			
		||||
		deptName(val) {
 | 
			
		||||
			this.$refs.tree.filter(val);
 | 
			
		||||
		},
 | 
			
		||||
		groupName(val) {
 | 
			
		||||
			this.$refs.tree1.filter(val);
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	created() {
 | 
			
		||||
		this.startDay = new Date();
 | 
			
		||||
		// 查询用户个人信息
 | 
			
		||||
		getUserProfile().then((response) => {
 | 
			
		||||
			this.showDeptName = response.data.dept.name || '';
 | 
			
		||||
			this.topDept = {
 | 
			
		||||
				name: response.data.dept.name || '',
 | 
			
		||||
				id: response.data.dept.id || '',
 | 
			
		||||
			}; // 保存当前用户的部门为最高级部门id
 | 
			
		||||
			this.deptId = response.data.dept.id || '';
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
			this.getTreeselect();
 | 
			
		||||
		});
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		getHolidayPage() {
 | 
			
		||||
			const now = new Date(this.startDay);
 | 
			
		||||
			const year = now.getFullYear();
 | 
			
		||||
			const month = now.getMonth();
 | 
			
		||||
			const startTime = `${year}-${String(month + 1).padStart(2, '0')}-01`;
 | 
			
		||||
			const lastDate = new Date(year, month + 1, 0).getDate();
 | 
			
		||||
			const endTime = `${year}-${String(month + 1).padStart(2, '0')}-${String(
 | 
			
		||||
				lastDate
 | 
			
		||||
			).padStart(2, '0')}`;
 | 
			
		||||
 | 
			
		||||
			this.HolidayList = [];
 | 
			
		||||
			if (this.activeName == 'first') {
 | 
			
		||||
				getDeptSchedulingList({
 | 
			
		||||
					deptId: this.deptId,
 | 
			
		||||
					startTime: Date.parse(startTime),
 | 
			
		||||
					endTime: Date.parse(endTime),
 | 
			
		||||
				}).then((res) => {
 | 
			
		||||
					this.HolidayList = res.data;
 | 
			
		||||
				});
 | 
			
		||||
			} else {
 | 
			
		||||
				getClassSchedulingList({
 | 
			
		||||
					teamId: this.teamId,
 | 
			
		||||
					startTime: Date.parse(startTime),
 | 
			
		||||
					endTime: Date.parse(endTime),
 | 
			
		||||
				}).then((res) => {
 | 
			
		||||
					this.HolidayList = res.data;
 | 
			
		||||
				});
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		// 切换月份
 | 
			
		||||
		selectMonth() {
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
		},
 | 
			
		||||
		/** 查询部门下拉树结构 */
 | 
			
		||||
		getTreeselect() {
 | 
			
		||||
			getEnableData().then((response) => {
 | 
			
		||||
				// 处理 deptOptions 参数
 | 
			
		||||
				this.deptOptions = [];
 | 
			
		||||
				this.deptOptions.push(...this.handleTree(response.data, 'id'));
 | 
			
		||||
			});
 | 
			
		||||
			listByDeptId(this.topDept.id).then((response) => {
 | 
			
		||||
				this.groupOptions = [];
 | 
			
		||||
				this.groupOptions.push(...response.data);
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		// 筛选节点
 | 
			
		||||
		filterNode(value, data) {
 | 
			
		||||
			if (!value) return true;
 | 
			
		||||
			return data.name.indexOf(value) !== -1;
 | 
			
		||||
		},
 | 
			
		||||
		tabsClick() {
 | 
			
		||||
			if (this.activeName == 'second' && this.groupOptions.length > 0) {
 | 
			
		||||
				this.teamId = this.groupOptions[0].id;
 | 
			
		||||
				this.showTeamName = {
 | 
			
		||||
					leaderName: this.groupOptions[0].leaderName || '-',
 | 
			
		||||
					leaderPhone: this.groupOptions[0].leaderPhone || '-',
 | 
			
		||||
				};
 | 
			
		||||
			} else if (this.activeName == 'first') {
 | 
			
		||||
				this.deptId = this.topDept.id;
 | 
			
		||||
			}
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
		},
 | 
			
		||||
		// 节点单击事件
 | 
			
		||||
		handleNodeClick(data) {
 | 
			
		||||
			this.deptId = data.id;
 | 
			
		||||
			this.showDeptName = data.name;
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
		},
 | 
			
		||||
		handleNodeClick1(data) {
 | 
			
		||||
			this.teamId = data.id;
 | 
			
		||||
			this.showTeamName = {
 | 
			
		||||
				leaderName: data.leaderName || '-',
 | 
			
		||||
				leaderPhone: data.leaderPhone || '-',
 | 
			
		||||
			};
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
		},
 | 
			
		||||
		//获取农历
 | 
			
		||||
		getLunarDate(solarDate) {
 | 
			
		||||
			try {
 | 
			
		||||
				const [year, month, day] = solarDate.split('-').map(Number);
 | 
			
		||||
 | 
			
		||||
				const date = new Date(year, month - 1, day);
 | 
			
		||||
				const lunar = solarToLunar(date);
 | 
			
		||||
 | 
			
		||||
				// 将数字月份和日期转换为中文
 | 
			
		||||
				const monthMap = {
 | 
			
		||||
					1: '正',
 | 
			
		||||
					2: '二',
 | 
			
		||||
					3: '三',
 | 
			
		||||
					4: '四',
 | 
			
		||||
					5: '五',
 | 
			
		||||
					6: '六',
 | 
			
		||||
					7: '七',
 | 
			
		||||
					8: '八',
 | 
			
		||||
					9: '九',
 | 
			
		||||
					10: '十',
 | 
			
		||||
					11: '冬',
 | 
			
		||||
					12: '腊',
 | 
			
		||||
				};
 | 
			
		||||
 | 
			
		||||
				const dayMap = {
 | 
			
		||||
					1: '初一',
 | 
			
		||||
					2: '初二',
 | 
			
		||||
					3: '初三',
 | 
			
		||||
					4: '初四',
 | 
			
		||||
					5: '初五',
 | 
			
		||||
					6: '初六',
 | 
			
		||||
					7: '初七',
 | 
			
		||||
					8: '初八',
 | 
			
		||||
					9: '初九',
 | 
			
		||||
					10: '初十',
 | 
			
		||||
					11: '十一',
 | 
			
		||||
					12: '十二',
 | 
			
		||||
					13: '十三',
 | 
			
		||||
					14: '十四',
 | 
			
		||||
					15: '十五',
 | 
			
		||||
					16: '十六',
 | 
			
		||||
					17: '十七',
 | 
			
		||||
					18: '十八',
 | 
			
		||||
					19: '十九',
 | 
			
		||||
					20: '二十',
 | 
			
		||||
					21: '廿一',
 | 
			
		||||
					22: '廿二',
 | 
			
		||||
					23: '廿三',
 | 
			
		||||
					24: '廿四',
 | 
			
		||||
					25: '廿五',
 | 
			
		||||
					26: '廿六',
 | 
			
		||||
					27: '廿七',
 | 
			
		||||
					28: '廿八',
 | 
			
		||||
					29: '廿九',
 | 
			
		||||
					30: '三十',
 | 
			
		||||
				};
 | 
			
		||||
 | 
			
		||||
				// 返回 "三月初四" 格式
 | 
			
		||||
				return `${monthMap[lunar.month]}月${dayMap[lunar.day]}`;
 | 
			
		||||
			} catch (error) {
 | 
			
		||||
				console.log(error);
 | 
			
		||||
				return '';
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		holidayLog(det, date) {
 | 
			
		||||
			this.dialogTitle = this.showDeptName + '-' + date + '-排班详情';
 | 
			
		||||
			this.logVisible = true;
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.$refs.holidayLogRef.init(det);
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		cancelLog() {
 | 
			
		||||
			this.dialogTitle = '';
 | 
			
		||||
			this.logVisible = false;
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style lang="scss">
 | 
			
		||||
.head-container {
 | 
			
		||||
	padding: 20px 10px 0;
 | 
			
		||||
	background-color: #fff;
 | 
			
		||||
	min-height: calc(100vh - 120px - 8px);
 | 
			
		||||
	border-radius: 8px;
 | 
			
		||||
}
 | 
			
		||||
.groupTeamScheduling {
 | 
			
		||||
	.operationArea {
 | 
			
		||||
		padding: 14px 10px 0 16px;
 | 
			
		||||
		margin-bottom: 8px;
 | 
			
		||||
		background-color: #fff;
 | 
			
		||||
		border-radius: 8px;
 | 
			
		||||
		.blue-block {
 | 
			
		||||
			display: inline-block;
 | 
			
		||||
			width: 4px;
 | 
			
		||||
			height: 16px;
 | 
			
		||||
			background-color: #0b58ff;
 | 
			
		||||
			border-radius: 1px;
 | 
			
		||||
			margin-right: 8px;
 | 
			
		||||
			margin-top: 10px;
 | 
			
		||||
		}
 | 
			
		||||
		.el-form-item {
 | 
			
		||||
			margin-bottom: 10px;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	// 日历
 | 
			
		||||
	.calenderArea {
 | 
			
		||||
		padding: 14px 10px 0 20px;
 | 
			
		||||
		background-color: #fff;
 | 
			
		||||
		border-radius: 8px;
 | 
			
		||||
		min-height: calc(100vh - 120px - 8px - 168px);
 | 
			
		||||
		.el-calendar__body {
 | 
			
		||||
			padding: 10px 16px 16px 0;
 | 
			
		||||
		}
 | 
			
		||||
		.el-calendar__header {
 | 
			
		||||
			display: none;
 | 
			
		||||
		}
 | 
			
		||||
		.el-calendar-table > thead {
 | 
			
		||||
			height: 48px;
 | 
			
		||||
			font-size: 20px;
 | 
			
		||||
			font-weight: 500;
 | 
			
		||||
			color: #000000;
 | 
			
		||||
			background-color: rgba(242, 244, 249, 1);
 | 
			
		||||
		}
 | 
			
		||||
		.el-calendar-table__row {
 | 
			
		||||
			height: 133px;
 | 
			
		||||
			.prev,
 | 
			
		||||
			.next {
 | 
			
		||||
				pointer-events: none;
 | 
			
		||||
			}
 | 
			
		||||
			.is-selected,
 | 
			
		||||
			.is-today {
 | 
			
		||||
				background-color: #e4f0fd;
 | 
			
		||||
			}
 | 
			
		||||
			.el-calendar-day {
 | 
			
		||||
				padding: 0;
 | 
			
		||||
				height: 100%;
 | 
			
		||||
				:hover {
 | 
			
		||||
					background-color: #e4f0fd;
 | 
			
		||||
				}
 | 
			
		||||
				.dateStyle {
 | 
			
		||||
					font-size: 20px;
 | 
			
		||||
					font-weight: 500;
 | 
			
		||||
					color: #000000;
 | 
			
		||||
					text-align: left;
 | 
			
		||||
					height: 133px;
 | 
			
		||||
					line-height: 28px;
 | 
			
		||||
					padding: 10px;
 | 
			
		||||
					overflow: hidden;
 | 
			
		||||
 | 
			
		||||
					.lunar-date {
 | 
			
		||||
						display: inline-block;
 | 
			
		||||
						font-size: 12px;
 | 
			
		||||
						color: #909399;
 | 
			
		||||
					}
 | 
			
		||||
					.work-tip {
 | 
			
		||||
						background: #87c1ff;
 | 
			
		||||
						color: white;
 | 
			
		||||
						font-size: 18px;
 | 
			
		||||
						width: 30px;
 | 
			
		||||
						text-align: center;
 | 
			
		||||
						float: right;
 | 
			
		||||
						position: relative;
 | 
			
		||||
						.subIcon {
 | 
			
		||||
							position: absolute;
 | 
			
		||||
							top: -18px;
 | 
			
		||||
							right: -10px;
 | 
			
		||||
							font-size: 10px;
 | 
			
		||||
						}
 | 
			
		||||
					}
 | 
			
		||||
					.holiday-div {
 | 
			
		||||
						background-color: #67c23a;
 | 
			
		||||
						border-radius: 3px;
 | 
			
		||||
						height: 25px;
 | 
			
		||||
						text-align: center;
 | 
			
		||||
						font-size: 12px;
 | 
			
		||||
						line-height: 24px;
 | 
			
		||||
						color: #fff;
 | 
			
		||||
						margin-bottom: 2px;
 | 
			
		||||
						white-space: nowrap;
 | 
			
		||||
						overflow: hidden;
 | 
			
		||||
						text-overflow: ellipsis;
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										65
									
								
								src/views/group/Schedule/SmallTitle.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,65 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2023-08-01 15:27:31
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2023-08-01 16:25:54
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div :class="[className, { 'p-0': noPadding }]">
 | 
			
		||||
		<slot />
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
	props: {
 | 
			
		||||
		size: {
 | 
			
		||||
			// 取值范围:  xl lg md sm
 | 
			
		||||
			type: String,
 | 
			
		||||
			default: 'de',
 | 
			
		||||
			validator: function (val) {
 | 
			
		||||
				return ['xl', 'lg', 'de', 'md', 'sm'].indexOf(val) !== -1;
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
		noPadding: {
 | 
			
		||||
			type: Boolean,
 | 
			
		||||
			default: false,
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	computed: {
 | 
			
		||||
		className: function () {
 | 
			
		||||
			return `${this.size}-title`;
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
$pxls: (xl, 28px) (lg, 24px) (de, 20px) (md, 18px) (sm, 16px);
 | 
			
		||||
$mgr: 8px;
 | 
			
		||||
@each $size, $height in $pxls {
 | 
			
		||||
	.#{$size}-title {
 | 
			
		||||
		font-size: $height;
 | 
			
		||||
		line-height: $height;
 | 
			
		||||
		color: #000;
 | 
			
		||||
		font-weight: 500;
 | 
			
		||||
		font-family: '微软雅黑', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
 | 
			
		||||
 | 
			
		||||
		&::before {
 | 
			
		||||
			content: '';
 | 
			
		||||
			display: inline-block;
 | 
			
		||||
			vertical-align: top;
 | 
			
		||||
			width: 4px;
 | 
			
		||||
			height: $height + 2px;
 | 
			
		||||
			border-radius: 1px;
 | 
			
		||||
			margin-right: $mgr;
 | 
			
		||||
			background-color: #0b58ff;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.p-0 {
 | 
			
		||||
	padding: 0;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										175
									
								
								src/views/group/Schedule/add-group.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,175 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-11 14:27:37
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-29 17:12:04
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="app-container">
 | 
			
		||||
		<search-bar
 | 
			
		||||
			:formConfigs="formConfig"
 | 
			
		||||
			ref="searchBarForm"
 | 
			
		||||
			@headBtnClick="buttonClick" />
 | 
			
		||||
		<base-table
 | 
			
		||||
			ref="groupTableRef"
 | 
			
		||||
			:id="'groupTableSelectRef'"
 | 
			
		||||
			row-key="id"
 | 
			
		||||
			:selectWidth="55"
 | 
			
		||||
			@selection-change="selectChange"
 | 
			
		||||
			:table-props="tableProps"
 | 
			
		||||
			:page="1"
 | 
			
		||||
			:limit="999"
 | 
			
		||||
			:table-data="tableData"></base-table>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { listByDeptId } from '@/api/group/Schedule';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'code',
 | 
			
		||||
		label: '班组编号',
 | 
			
		||||
		width: 140,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'name',
 | 
			
		||||
		label: '班组名称',
 | 
			
		||||
		width: 100,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'deptId',
 | 
			
		||||
		label: '所属部门',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'leaderName',
 | 
			
		||||
		label: '组长',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
		showOverflowtooltip: true,
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			urlOptions: {
 | 
			
		||||
				getDataListURL: listByDeptId,
 | 
			
		||||
			},
 | 
			
		||||
			tableProps,
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			formConfig: [
 | 
			
		||||
				{
 | 
			
		||||
					type: 'input',
 | 
			
		||||
					label: '班组编号',
 | 
			
		||||
					placeholder: '班组编号',
 | 
			
		||||
					param: 'code',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'input',
 | 
			
		||||
					label: '班组名称',
 | 
			
		||||
					placeholder: '班组名称',
 | 
			
		||||
					param: 'name',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '查询',
 | 
			
		||||
					name: 'search',
 | 
			
		||||
					color: 'primary',
 | 
			
		||||
				},
 | 
			
		||||
			],
 | 
			
		||||
			formInline: {
 | 
			
		||||
				pageNo: 1,
 | 
			
		||||
				pageSize: 100,
 | 
			
		||||
				code: '',
 | 
			
		||||
				name: '',
 | 
			
		||||
			},
 | 
			
		||||
			selectedList: [],
 | 
			
		||||
			selectedArr: [], //已选的班组,从父组件传过来的
 | 
			
		||||
			deptId: undefined,
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {
 | 
			
		||||
		init(id, tableData) {
 | 
			
		||||
			this.deptId = id;
 | 
			
		||||
			this.selectedArr = tableData || [];
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.getDataList();
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		// 获取数据列表
 | 
			
		||||
		getDataList() {
 | 
			
		||||
			this.urlOptions.getDataListURL(this.deptId).then((response) => {
 | 
			
		||||
				this.tableData = response.data;
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					if (this.selectedArr.length > 0) {
 | 
			
		||||
						this.setSelectedRows();
 | 
			
		||||
					}
 | 
			
		||||
				});
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		setSelectedRows() {
 | 
			
		||||
			const table = this.$refs.groupTableRef.$children[0];
 | 
			
		||||
 | 
			
		||||
			// 先清空选择
 | 
			
		||||
			table.clearSelection();
 | 
			
		||||
 | 
			
		||||
			this.selectedArr.forEach((item) => {
 | 
			
		||||
				const rowInTable = this.tableData.find((i) => i.id === item.id);
 | 
			
		||||
				if (rowInTable) {
 | 
			
		||||
					//这里一定要用table.tableData,这样才是指向同一个数组
 | 
			
		||||
					this.$set(table.store.states, 'selection', [
 | 
			
		||||
						...table.store.states.selection,
 | 
			
		||||
						table.tableData.find((i) => i.id === item.id),
 | 
			
		||||
					]);
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
 | 
			
		||||
			// 强制更新视图
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				table.$forceUpdate();
 | 
			
		||||
				this.$forceUpdate();
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.formInline.name = val.name;
 | 
			
		||||
					this.formInline.code = val.code;
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
					console.log(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		selectChange(val) {
 | 
			
		||||
			this.selectedList = val;
 | 
			
		||||
		},
 | 
			
		||||
		// 判断两个数组是否有重复的 id
 | 
			
		||||
		hasDuplicateIds(arr1, arr2) {
 | 
			
		||||
			const idSet = new Set(arr1.map((item) => item.id));
 | 
			
		||||
			return arr2.some((item) => idSet.has(item.id));
 | 
			
		||||
		},
 | 
			
		||||
 | 
			
		||||
		dataFormSubmit() {
 | 
			
		||||
			if (this.selectedList && this.selectedList.length > 0) {
 | 
			
		||||
				const haveData = this.hasDuplicateIds(
 | 
			
		||||
					this.selectedArr,
 | 
			
		||||
					this.selectedList
 | 
			
		||||
				);
 | 
			
		||||
				if (haveData) {
 | 
			
		||||
					this.$message('请不要重复添加数组');
 | 
			
		||||
					return;
 | 
			
		||||
				}
 | 
			
		||||
				this.$emit('refreshTableData', this.selectedList);
 | 
			
		||||
			} else if (this.selectedArr.length > 0) {
 | 
			
		||||
				this.$message('请不要重复添加数组');
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										1076
									
								
								src/views/group/Schedule/add-or-updata.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										88
									
								
								src/views/group/Schedule/bind-line.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,88 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2021-11-18 14:16:25
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-30 10:47:09
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div style="width: 100%; display: flex; justify-content: center">
 | 
			
		||||
		<tree-transfer
 | 
			
		||||
			:title="title"
 | 
			
		||||
			:from_data="fromData"
 | 
			
		||||
			:to_data="toData"
 | 
			
		||||
			@add-btn="add"
 | 
			
		||||
			@remove-btn="remove"
 | 
			
		||||
			pid="pid"
 | 
			
		||||
			:defaultProps="{ label: 'name' }"
 | 
			
		||||
			height="450px"
 | 
			
		||||
			style="padding-bottom: 20px"
 | 
			
		||||
			:mode="mode"
 | 
			
		||||
			filter
 | 
			
		||||
			openAll></tree-transfer>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import treeTransfer from 'el-tree-transfer';
 | 
			
		||||
import { getGroupPlanTree } from '@/api/group/Schedule';
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	components: { treeTransfer },
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			title: ['待选', '已选'],
 | 
			
		||||
			mode: 'transfer',
 | 
			
		||||
			fromData: [], //左边内容
 | 
			
		||||
			toData: [], //右边已选内容
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		init(val) {
 | 
			
		||||
			this._pageIndex = val._pageIndex - 1;
 | 
			
		||||
			this.fromData = [];
 | 
			
		||||
			this.toData = [];
 | 
			
		||||
			getGroupPlanTree().then((res) => {
 | 
			
		||||
				this.fromData = res.data;
 | 
			
		||||
				this.fromData.forEach((item) => {
 | 
			
		||||
					item.productionLineId = 0;
 | 
			
		||||
				});
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.toData = val.bindLineTree || [];
 | 
			
		||||
					this.getFilterLeftData(this.fromData, this.toData); //编辑时组件有bug,左边相同数据不消失
 | 
			
		||||
				});
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		// 监听穿梭框组件添加
 | 
			
		||||
		add(fromData, toData, obj) {
 | 
			
		||||
			console.log('fromData:', fromData);
 | 
			
		||||
			console.log('toData:', toData, obj);
 | 
			
		||||
		},
 | 
			
		||||
		// 监听穿梭框组件移除
 | 
			
		||||
		remove(fromData, toData, obj) {
 | 
			
		||||
			console.log('fromData:', fromData);
 | 
			
		||||
			console.log('toData:', toData);
 | 
			
		||||
		},
 | 
			
		||||
		/** 消除组件左边与右边选中数据相同项 */
 | 
			
		||||
		// 处理过滤数据
 | 
			
		||||
		getFilterLeftData(data, selData) {
 | 
			
		||||
			for (let i = data.length - 1; i >= 0; i--) {
 | 
			
		||||
				for (let j = selData.length - 1; j >= 0; j--) {
 | 
			
		||||
					if (data[i] && data[i].id === selData[j].id) {
 | 
			
		||||
						// 当id相等可以删除的情况 即:没有子级可以删除;
 | 
			
		||||
						if (!data[i].children || data[i].children.length == 0) {
 | 
			
		||||
							data.splice(i, 1);
 | 
			
		||||
						} else {
 | 
			
		||||
							this.getFilterLeftData(data[i].children, selData[j].children);
 | 
			
		||||
						}
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		// 表单提交
 | 
			
		||||
		dataFormSubmit() {
 | 
			
		||||
			this.$emit('refreshTableData', this._pageIndex, this.toData);
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										187
									
								
								src/views/group/Schedule/detail.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,187 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-21 14:27:23
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-21 15:02:27
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div>
 | 
			
		||||
		<div class="info-div">
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">计划编号:</span>
 | 
			
		||||
				{{ infoData.code }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">计划状态:</span>
 | 
			
		||||
				{{ ['', '草稿', '已确认', '已作废'][infoData.status] }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">计划名称:</span>
 | 
			
		||||
				{{ infoData.name }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">部门:</span>
 | 
			
		||||
				{{ infoData.deptName }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">开始时间:</span>
 | 
			
		||||
				{{ parseTime(infoData.startDay) }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">结束时间:</span>
 | 
			
		||||
				{{ parseTime(infoData.endDay) }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">周末休假方式:</span>
 | 
			
		||||
				{{ ['', '双休', '周六休', '周日休', '不休'][infoData.weekType] }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">倒班方式:</span>
 | 
			
		||||
				{{ ['', '长白班', '两班倒', '三班倒'][infoData.shiftType] }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">同班次连排:</span>
 | 
			
		||||
				{{ infoData.shiftSustainedNum }}日
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">创建人:</span>
 | 
			
		||||
				{{ infoData.creator }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">创建时间:</span>
 | 
			
		||||
				{{ parseTime(infoData.createTime) }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div v-if="infoData.status == 3">
 | 
			
		||||
				<span class="title">作废时间:</span>
 | 
			
		||||
				{{ parseTime(infoData.disableTime) }}
 | 
			
		||||
			</div>
 | 
			
		||||
			<div>
 | 
			
		||||
				<span class="title">备注:</span>
 | 
			
		||||
				{{ infoData.remark }}
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
		<div>
 | 
			
		||||
			<el-tabs v-model="activeName" stretch>
 | 
			
		||||
				<el-tab-pane label="班次" name="first"></el-tab-pane>
 | 
			
		||||
				<el-tab-pane label="班组" name="second"></el-tab-pane>
 | 
			
		||||
			</el-tabs>
 | 
			
		||||
			<base-table
 | 
			
		||||
				v-if="activeName == 'first'"
 | 
			
		||||
				:table-props="tableProps1"
 | 
			
		||||
				:page="1"
 | 
			
		||||
				:limit="10"
 | 
			
		||||
				:table-data="tableData1"></base-table>
 | 
			
		||||
			<base-table
 | 
			
		||||
      v-else
 | 
			
		||||
				:table-props="tableProps2"
 | 
			
		||||
				:page="1"
 | 
			
		||||
				:limit="10"
 | 
			
		||||
				:table-data="tableData2"></base-table>
 | 
			
		||||
		</div>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { parseTime } from '@/filter/code-filter';
 | 
			
		||||
import { getPlan } from '@/api/group/Schedule';
 | 
			
		||||
 | 
			
		||||
const tableProps1 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'name',
 | 
			
		||||
		label: '班次名称',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'startTime',
 | 
			
		||||
		label: '开始时间',
 | 
			
		||||
		filter: (val) => {
 | 
			
		||||
			return val ? val.slice(0, -3) : '-';
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'endTime',
 | 
			
		||||
		label: '结束时间',
 | 
			
		||||
		filter: (val) => {
 | 
			
		||||
			return val ? val.slice(0, -3) : '-';
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
const tableProps2 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'code',
 | 
			
		||||
		label: '班组编号',
 | 
			
		||||
		width: 140,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'name',
 | 
			
		||||
		label: '班组名称',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'isProduction',
 | 
			
		||||
		label: '是否生产班组',
 | 
			
		||||
		filter: (val) => {
 | 
			
		||||
			return val ? '是' : '否';
 | 
			
		||||
		},
 | 
			
		||||
		width: 110,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'lineName',
 | 
			
		||||
		label: '产线及工段',
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
export default {
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			infoData: {},
 | 
			
		||||
			activeName: 'first',
 | 
			
		||||
			tableProps1,
 | 
			
		||||
			tableData1: [],
 | 
			
		||||
			tableProps2,
 | 
			
		||||
			tableData2: [],
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		init(id) {
 | 
			
		||||
			this.infoData = {};
 | 
			
		||||
			getPlan(id).then((res) => {
 | 
			
		||||
				this.infoData = res.data || {};
 | 
			
		||||
				console.log(res);
 | 
			
		||||
				this.tableData1 = res.data?.groupPlanClassesBaseVOList;
 | 
			
		||||
				this.tableData2 = res.data?.groupPlanTeamBaseVOList;
 | 
			
		||||
				this.tableData2.forEach((item, index) => {
 | 
			
		||||
					let lineName = '';
 | 
			
		||||
					lineName = this.setLineName(item.bindLineTree, lineName);
 | 
			
		||||
					this.$set(this.tableData2[index], 'lineName', lineName.slice(0, -1));
 | 
			
		||||
				});
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		//提取绑定的产线工段名展示出来
 | 
			
		||||
		setLineName(val, lineName) {
 | 
			
		||||
			val.forEach((item) => {
 | 
			
		||||
				lineName += item.name + ':';
 | 
			
		||||
				if (item.children && item.children.length > 0) {
 | 
			
		||||
					const childName = this.setLineName(item.children, lineName);
 | 
			
		||||
					lineName = childName;
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
			return lineName;
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.info-div {
 | 
			
		||||
	display: grid;
 | 
			
		||||
	grid-template-columns: 1fr 1fr 1fr;
 | 
			
		||||
	gap: 10px;
 | 
			
		||||
}
 | 
			
		||||
.title {
 | 
			
		||||
	font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										114
									
								
								src/views/group/Schedule/edit-class.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,114 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2021-11-18 14:16:25
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-20 10:23:52
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<el-form
 | 
			
		||||
		:model="dataForm"
 | 
			
		||||
		:rules="dataRule"
 | 
			
		||||
		ref="dataForm"
 | 
			
		||||
		@keyup.enter.native="dataFormSubmit()"
 | 
			
		||||
		label-position="top"
 | 
			
		||||
		label-width="80px">
 | 
			
		||||
		<el-row :gutter="20">
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
				<el-form-item label="序号" prop="index">
 | 
			
		||||
					<el-input-number
 | 
			
		||||
						v-model="dataForm.index"
 | 
			
		||||
						:step="1"
 | 
			
		||||
						:min="1"
 | 
			
		||||
						step-strictly />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
				<el-form-item label="班次名称" prop="name">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="dataForm.name"
 | 
			
		||||
						clearable
 | 
			
		||||
						placeholder="请输入班次名称" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
				<el-form-item label="开始时间" prop="startTime">
 | 
			
		||||
					<el-time-picker
 | 
			
		||||
						style="width: 100%"
 | 
			
		||||
						format="H:mm"
 | 
			
		||||
						value-format="HH:mm:ss"
 | 
			
		||||
						v-model="dataForm.startTime"
 | 
			
		||||
						placeholder="选择日期时间"></el-time-picker>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
				<el-form-item label="结束时间" prop="endTime">
 | 
			
		||||
					<el-time-picker
 | 
			
		||||
						style="width: 100%"
 | 
			
		||||
						format="H:mm"
 | 
			
		||||
						value-format="HH:mm:ss"
 | 
			
		||||
						v-model="dataForm.endTime"
 | 
			
		||||
						placeholder="选择日期时间"></el-time-picker>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="12">
 | 
			
		||||
				<el-form-item label="备注" prop="remark">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="dataForm.remark"
 | 
			
		||||
						clearable
 | 
			
		||||
						placeholder="请输入备注" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
		</el-row>
 | 
			
		||||
	</el-form>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
	components: {},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			dataForm: {
 | 
			
		||||
				id: undefined,
 | 
			
		||||
				index: undefined,
 | 
			
		||||
				name: undefined,
 | 
			
		||||
				startTime: undefined,
 | 
			
		||||
				endTime: undefined,
 | 
			
		||||
				remark: undefined,
 | 
			
		||||
			},
 | 
			
		||||
			_pageIndex: 1,
 | 
			
		||||
			dataRule: {
 | 
			
		||||
				index: [{ required: true, message: '序号不能为空', trigger: 'blur' }],
 | 
			
		||||
				name: [
 | 
			
		||||
					{ required: true, message: '班次名称不能为空', trigger: 'blur' },
 | 
			
		||||
				],
 | 
			
		||||
				startTime: [
 | 
			
		||||
					{ required: true, message: '开始时间不能为空', trigger: 'change' },
 | 
			
		||||
				],
 | 
			
		||||
				endTime: [
 | 
			
		||||
					{ required: true, message: '结束时间不能为空', trigger: 'change' },
 | 
			
		||||
				],
 | 
			
		||||
			},
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		init(val) {
 | 
			
		||||
			this._pageIndex = val._pageIndex-1;
 | 
			
		||||
			this.dataForm.index = val._pageIndex || 1;
 | 
			
		||||
			this.dataForm.name = val.name || undefined;
 | 
			
		||||
			this.dataForm.startTime = val.startTime || undefined;
 | 
			
		||||
			this.dataForm.endTime = val.endTime || undefined;
 | 
			
		||||
			this.dataForm.remark = val.remark || undefined;
 | 
			
		||||
		},
 | 
			
		||||
		// 表单提交
 | 
			
		||||
		dataFormSubmit() {
 | 
			
		||||
			this.$refs['dataForm'].validate((valid) => {
 | 
			
		||||
				if (!valid) {
 | 
			
		||||
					return false;
 | 
			
		||||
				}
 | 
			
		||||
				this.$emit('refreshTableData', this._pageIndex, this.dataForm);
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										552
									
								
								src/views/group/Schedule/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,552 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-11 14:27:37
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-29 14:50:16
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="app-container">
 | 
			
		||||
		<div class="searchBarBox">
 | 
			
		||||
			<el-form
 | 
			
		||||
				:inline="true"
 | 
			
		||||
				ref="searchBarForm"
 | 
			
		||||
				:model="formInline"
 | 
			
		||||
				class="searchBar">
 | 
			
		||||
				<span class="blue-block" />
 | 
			
		||||
				<el-form-item label="计划编号" prop="code">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="formInline.code"
 | 
			
		||||
						clearable
 | 
			
		||||
						size="small"
 | 
			
		||||
						placeholder="请输入计划编号" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item label="计划名称" prop="name">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="formInline.name"
 | 
			
		||||
						clearable
 | 
			
		||||
						size="small"
 | 
			
		||||
						placeholder="请输入计划名称" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item label="开始时间" prop="startDay">
 | 
			
		||||
					<el-date-picker
 | 
			
		||||
						v-model="formInline.startDay"
 | 
			
		||||
						type="datetime"
 | 
			
		||||
						placeholder="选择日期时间"></el-date-picker>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item label="结束时间" prop="endDay">
 | 
			
		||||
					<el-date-picker
 | 
			
		||||
						v-model="formInline.endDay"
 | 
			
		||||
						type="datetime"
 | 
			
		||||
						placeholder="选择日期时间"></el-date-picker>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item label="部门" prop="deptId">
 | 
			
		||||
					<dept-select
 | 
			
		||||
						style="width: 200px"
 | 
			
		||||
						ref="deptSelect"
 | 
			
		||||
						@DeptId="setDeptId"></dept-select>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item label="状态" prop="leaderName">
 | 
			
		||||
					<el-select v-model="formInline.status" placeholder="请选择状态">
 | 
			
		||||
						<el-option
 | 
			
		||||
							v-for="item in options"
 | 
			
		||||
							:key="item.value"
 | 
			
		||||
							:label="item.label"
 | 
			
		||||
							:value="item.value"></el-option>
 | 
			
		||||
					</el-select>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<el-button
 | 
			
		||||
						type="primary"
 | 
			
		||||
						size="small"
 | 
			
		||||
						v-hasPermi="['base:group-scheduling-plan:query']"
 | 
			
		||||
						@click="buttonClick({ btnName: 'search' })">
 | 
			
		||||
						查询
 | 
			
		||||
					</el-button>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<span class="separateStyle"
 | 
			
		||||
						v-hasPermi="['base:group-scheduling-plan:query']"></span>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<el-button size="small" @click="buttonClick({ btnName: 'reset' })">
 | 
			
		||||
						重置
 | 
			
		||||
					</el-button>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<span class="separateStyle"
 | 
			
		||||
						v-hasPermi="['base:group-scheduling-plan:create']"></span>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<el-button
 | 
			
		||||
						type="success"
 | 
			
		||||
						size="small"
 | 
			
		||||
						:plain="true"
 | 
			
		||||
						v-hasPermi="['base:group-scheduling-plan:create']"
 | 
			
		||||
						@click="buttonClick({ btnName: 'add' })">
 | 
			
		||||
						新增
 | 
			
		||||
					</el-button>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-form>
 | 
			
		||||
		</div>
 | 
			
		||||
		<base-table
 | 
			
		||||
			v-loading="dataListLoading"
 | 
			
		||||
			:table-props="tableProps"
 | 
			
		||||
			:page="listQuery.pageNo"
 | 
			
		||||
			:limit="listQuery.pageSize"
 | 
			
		||||
			:table-data="tableData"
 | 
			
		||||
			@emitFun="getDataList">
 | 
			
		||||
			<method-btn
 | 
			
		||||
				v-if="tableBtn.length"
 | 
			
		||||
				slot="handleBtn"
 | 
			
		||||
				:width="270"
 | 
			
		||||
				label="操作"
 | 
			
		||||
				:method-list="tableBtn"
 | 
			
		||||
				@clickBtn="handleClick" />
 | 
			
		||||
		</base-table>
 | 
			
		||||
		<pagination
 | 
			
		||||
			:limit.sync="listQuery.pageSize"
 | 
			
		||||
			:page.sync="listQuery.pageNo"
 | 
			
		||||
			:total="listQuery.total"
 | 
			
		||||
			@pagination="getDataList" />
 | 
			
		||||
		<base-dialog
 | 
			
		||||
			:dialogTitle="addOrEditTitle"
 | 
			
		||||
			:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
			@cancel="handleCancel"
 | 
			
		||||
			@confirm="handleConfirm"
 | 
			
		||||
			:before-close="handleCancel"
 | 
			
		||||
			:destroy-on-close="true"
 | 
			
		||||
			append-to-body
 | 
			
		||||
			width="60%">
 | 
			
		||||
			<add-or-update
 | 
			
		||||
				ref="addOrUpdate"
 | 
			
		||||
				@setSN="setStepNum"
 | 
			
		||||
				@refreshDataList="successSubmit"></add-or-update>
 | 
			
		||||
			<template #footer>
 | 
			
		||||
				<slot name="footer">
 | 
			
		||||
					<el-row slot="footer" type="flex" justify="end">
 | 
			
		||||
						<el-col :span="24">
 | 
			
		||||
							<el-button
 | 
			
		||||
								v-if="stepNum > 1"
 | 
			
		||||
								size="small"
 | 
			
		||||
								class="btnTextStyle"
 | 
			
		||||
								@click="handleConfirm('up')">
 | 
			
		||||
								上一步
 | 
			
		||||
							</el-button>
 | 
			
		||||
							<el-button
 | 
			
		||||
								size="small"
 | 
			
		||||
								class="btnTextStyle"
 | 
			
		||||
								@click="handleCancel">
 | 
			
		||||
								取消
 | 
			
		||||
							</el-button>
 | 
			
		||||
							<el-button
 | 
			
		||||
								v-if="stepNum == 3"
 | 
			
		||||
								type="primary"
 | 
			
		||||
								class="btnTextStyle"
 | 
			
		||||
								size="small"
 | 
			
		||||
								plain
 | 
			
		||||
								@click="successSubmit">
 | 
			
		||||
								保存草稿
 | 
			
		||||
							</el-button>
 | 
			
		||||
							<el-button
 | 
			
		||||
								type="primary"
 | 
			
		||||
								class="btnTextStyle"
 | 
			
		||||
								size="small"
 | 
			
		||||
								@click="handleConfirm">
 | 
			
		||||
								{{ stepNum < 3 ? '下一步' : '确认并执行' }}
 | 
			
		||||
							</el-button>
 | 
			
		||||
						</el-col>
 | 
			
		||||
					</el-row>
 | 
			
		||||
				</slot>
 | 
			
		||||
			</template>
 | 
			
		||||
		</base-dialog>
 | 
			
		||||
		<base-dialog
 | 
			
		||||
			:dialogTitle="'排班计划详情'"
 | 
			
		||||
			:dialogVisible="detailVisible"
 | 
			
		||||
			@cancel="detailCancel"
 | 
			
		||||
			:before-close="detailCancel"
 | 
			
		||||
			:destroy-on-close="true"
 | 
			
		||||
			append-to-body
 | 
			
		||||
			width="50%">
 | 
			
		||||
			<detail ref="detailRef"></detail>
 | 
			
		||||
			<template #footer>
 | 
			
		||||
				<slot name="footer">
 | 
			
		||||
					<el-row slot="footer" type="flex" justify="end">
 | 
			
		||||
						<el-col :span="24">
 | 
			
		||||
							<el-button
 | 
			
		||||
								size="small"
 | 
			
		||||
								class="btnTextStyle"
 | 
			
		||||
								@click="detailCancel">
 | 
			
		||||
								取消
 | 
			
		||||
							</el-button>
 | 
			
		||||
						</el-col>
 | 
			
		||||
					</el-row>
 | 
			
		||||
				</slot>
 | 
			
		||||
			</template>
 | 
			
		||||
		</base-dialog>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import AddOrUpdate from './add-or-updata';
 | 
			
		||||
import deptSelect from './../deptSelect.vue';
 | 
			
		||||
import basicPage from '@/mixins/basic-page';
 | 
			
		||||
import subSpan from './subSpan.vue';
 | 
			
		||||
import subStatus from './subStatus.vue';
 | 
			
		||||
import detail from './detail.vue';
 | 
			
		||||
import { parseTime } from '@/filter/code-filter';
 | 
			
		||||
import {
 | 
			
		||||
	getGroupPlanPage,
 | 
			
		||||
	deleteGroupPlan,
 | 
			
		||||
	copyPlan,
 | 
			
		||||
	disablePlan,
 | 
			
		||||
	updateScheduleLater,
 | 
			
		||||
} from '@/api/group/Schedule';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'code',
 | 
			
		||||
		label: '计划编号',
 | 
			
		||||
		width: 140,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'name',
 | 
			
		||||
		label: '计划名称',
 | 
			
		||||
		width: 100,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'startDay',
 | 
			
		||||
		label: '开始时间',
 | 
			
		||||
		filter: parseTime,
 | 
			
		||||
		width: 150,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'endDay',
 | 
			
		||||
		label: '结束时间',
 | 
			
		||||
		filter: parseTime,
 | 
			
		||||
		width: 150,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'shiftType',
 | 
			
		||||
		label: '倒班方式',
 | 
			
		||||
		filter: (val) => {
 | 
			
		||||
			return val ? ['', '长白班', '两班倒', '三班倒'][val] : '-';
 | 
			
		||||
		},
 | 
			
		||||
		width: 110,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'shiftSustainedNum',
 | 
			
		||||
		label: '同班次连排',
 | 
			
		||||
		width: 110,
 | 
			
		||||
		subcomponent: subSpan,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'deptName',
 | 
			
		||||
		label: '部门',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'status',
 | 
			
		||||
		label: '计划状态',
 | 
			
		||||
		width: 110,
 | 
			
		||||
		subcomponent: subStatus,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'createTime',
 | 
			
		||||
		label: '创建时间',
 | 
			
		||||
		filter: parseTime,
 | 
			
		||||
		width: 150,
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	mixins: [basicPage],
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			urlOptions: {
 | 
			
		||||
				getDataListURL: getGroupPlanPage,
 | 
			
		||||
				deleteURL: deleteGroupPlan,
 | 
			
		||||
			},
 | 
			
		||||
			tableProps,
 | 
			
		||||
			tableBtn: [
 | 
			
		||||
				this.$auth.hasPermi('base:group-scheduling-plan:update')?
 | 
			
		||||
				{
 | 
			
		||||
					type: 'edit',
 | 
			
		||||
					btnName: '编辑',
 | 
			
		||||
					showParam: {
 | 
			
		||||
						type: '&',
 | 
			
		||||
						data: [
 | 
			
		||||
							{
 | 
			
		||||
								type: 'equal',
 | 
			
		||||
								name: 'status',
 | 
			
		||||
								value: 1,
 | 
			
		||||
							},
 | 
			
		||||
						],
 | 
			
		||||
					},
 | 
			
		||||
				}:undefined,
 | 
			
		||||
				this.$auth.hasPermi('base:group-scheduling-plan:delete')?
 | 
			
		||||
				{
 | 
			
		||||
					type: 'delete',
 | 
			
		||||
					btnName: '删除',
 | 
			
		||||
					showParam: {
 | 
			
		||||
						type: '&',
 | 
			
		||||
						data: [
 | 
			
		||||
							{
 | 
			
		||||
								type: 'equal',
 | 
			
		||||
								name: 'status',
 | 
			
		||||
								value: 1,
 | 
			
		||||
							},
 | 
			
		||||
						],
 | 
			
		||||
					},
 | 
			
		||||
				}:undefined,
 | 
			
		||||
				this.$auth.hasPermi('base:group-scheduling-plan:query')?
 | 
			
		||||
				{
 | 
			
		||||
					type: 'detail',
 | 
			
		||||
					btnName: '查看',
 | 
			
		||||
					showParam: {
 | 
			
		||||
						type: '&',
 | 
			
		||||
						data: [
 | 
			
		||||
							{
 | 
			
		||||
								type: 'unequal',
 | 
			
		||||
								name: 'status',
 | 
			
		||||
								value: 1,
 | 
			
		||||
							},
 | 
			
		||||
						],
 | 
			
		||||
					},
 | 
			
		||||
				}:undefined,
 | 
			
		||||
				this.$auth.hasPermi('base:group-scheduling-plan:delete')?
 | 
			
		||||
				{
 | 
			
		||||
					type: 'cancel',
 | 
			
		||||
					btnName: '作废',
 | 
			
		||||
					showParam: {
 | 
			
		||||
						type: '&',
 | 
			
		||||
						data: [
 | 
			
		||||
							{
 | 
			
		||||
								type: 'equal',
 | 
			
		||||
								name: 'status',
 | 
			
		||||
								value: 2,
 | 
			
		||||
							},
 | 
			
		||||
						],
 | 
			
		||||
					},
 | 
			
		||||
				}:undefined,
 | 
			
		||||
				this.$auth.hasPermi('base:group-holiday:update')?
 | 
			
		||||
				{
 | 
			
		||||
					type: 'sync',
 | 
			
		||||
					btnName: '同步节假日',
 | 
			
		||||
					showParam: {
 | 
			
		||||
						type: '&',
 | 
			
		||||
						data: [
 | 
			
		||||
							{
 | 
			
		||||
								type: 'equal',
 | 
			
		||||
								name: 'status',
 | 
			
		||||
								value: 2,
 | 
			
		||||
							},
 | 
			
		||||
							{
 | 
			
		||||
								type: 'equal',
 | 
			
		||||
								name: 'updateFlag',
 | 
			
		||||
								value: true,
 | 
			
		||||
							},
 | 
			
		||||
						],
 | 
			
		||||
					},
 | 
			
		||||
				}:undefined,
 | 
			
		||||
				this.$auth.hasPermi('base:group-scheduling-plan:create')?
 | 
			
		||||
				{
 | 
			
		||||
					type: 'copy',
 | 
			
		||||
					btnName: '复制',
 | 
			
		||||
				}:undefined,
 | 
			
		||||
			].filter((v) => v),
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			options: [
 | 
			
		||||
				{
 | 
			
		||||
					value: '1',
 | 
			
		||||
					label: '草稿',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					value: '2',
 | 
			
		||||
					label: '已确认',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					value: '3',
 | 
			
		||||
					label: '已作废',
 | 
			
		||||
				},
 | 
			
		||||
			],
 | 
			
		||||
			formInline: {
 | 
			
		||||
				code: '',
 | 
			
		||||
				name: '',
 | 
			
		||||
				startDay: '',
 | 
			
		||||
				endDay: '',
 | 
			
		||||
				deptId: '',
 | 
			
		||||
				status: '',
 | 
			
		||||
			},
 | 
			
		||||
			stepNum: 1, // 新增编辑时当前第几步
 | 
			
		||||
			detailVisible: false,
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	components: {
 | 
			
		||||
		AddOrUpdate,
 | 
			
		||||
		deptSelect,
 | 
			
		||||
    detail
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					const date1 = new Date(this.formInline.startDay).getTime();
 | 
			
		||||
					const date2 = new Date(this.formInline.endDay).getTime();
 | 
			
		||||
 | 
			
		||||
					if (date1 > date2) {
 | 
			
		||||
						this.$message('开始时间不得晚于结束时间');
 | 
			
		||||
						return;
 | 
			
		||||
					}
 | 
			
		||||
					this.listQuery = {
 | 
			
		||||
						pageNo: 1,
 | 
			
		||||
						pageSize: 10,
 | 
			
		||||
						total: 1,
 | 
			
		||||
						...this.formInline,
 | 
			
		||||
					};
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'reset':
 | 
			
		||||
					this.formInline.name = null;
 | 
			
		||||
					this.formInline.code = null;
 | 
			
		||||
					this.formInline.deptId = null;
 | 
			
		||||
					this.$refs.deptSelect.clear();
 | 
			
		||||
					this.formInline.leaderName = null;
 | 
			
		||||
					this.listQuery = {
 | 
			
		||||
						pageSize: 10,
 | 
			
		||||
						pageNo: 1,
 | 
			
		||||
						total: 1,
 | 
			
		||||
					};
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'add':
 | 
			
		||||
					this.addOrEditTitle = '添加排班计划';
 | 
			
		||||
					this.addOrUpdateVisible = true;
 | 
			
		||||
					this.$nextTick(() => {
 | 
			
		||||
						this.$refs.addOrUpdate.init();
 | 
			
		||||
					});
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
					console.log(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		setDeptId(val) {
 | 
			
		||||
			this.formInline.deptId = val;
 | 
			
		||||
		},
 | 
			
		||||
		setStepNum(val) {
 | 
			
		||||
			this.stepNum = val;
 | 
			
		||||
		},
 | 
			
		||||
		successSubmit() {
 | 
			
		||||
			this.addOrUpdateVisible = false;
 | 
			
		||||
			this.addOrEditTitle = '';
 | 
			
		||||
			this.stepNum = 1;
 | 
			
		||||
			this.getDataList();
 | 
			
		||||
		},
 | 
			
		||||
		// dialog取消
 | 
			
		||||
		handleCancel() {
 | 
			
		||||
			this.$refs.addOrUpdate.cancelStep();
 | 
			
		||||
		},
 | 
			
		||||
		handleConfirm(val) {
 | 
			
		||||
			if (val == 'up') {
 | 
			
		||||
				this.$refs.addOrUpdate.upSubmit();
 | 
			
		||||
			} else {
 | 
			
		||||
				this.$refs.addOrUpdate.nextSubmit();
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		//tableBtn点击
 | 
			
		||||
		handleClick(val) {
 | 
			
		||||
			if (val.type === 'edit') {
 | 
			
		||||
				this.addOrUpdateVisible = true;
 | 
			
		||||
				this.addOrEditTitle = '编辑';
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.$refs.addOrUpdate.init(val.data.id);
 | 
			
		||||
				});
 | 
			
		||||
			} else if (val.type === 'delete') {
 | 
			
		||||
				this.deleteHandle(val.data.id, val.data.name, val.data._pageIndex);
 | 
			
		||||
			} else if (val.type === 'detail') {
 | 
			
		||||
				this.detailVisible = true;
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.$refs.detailRef.init(val.data.id);
 | 
			
		||||
				});
 | 
			
		||||
			} else if (val.type === 'cancel') {
 | 
			
		||||
				disablePlan(val.data.id).then((res) => {
 | 
			
		||||
					this.$modal.msgSuccess('作废成功');
 | 
			
		||||
          this.getDataList()
 | 
			
		||||
				});
 | 
			
		||||
			} else if (val.type === 'sync') {
 | 
			
		||||
				updateScheduleLater({ planId: val.data.id }).then((res) => {
 | 
			
		||||
					this.$modal.msgSuccess('同步节假日成功');
 | 
			
		||||
          this.getDataList()
 | 
			
		||||
				});
 | 
			
		||||
			} else if (val.type === 'copy') {
 | 
			
		||||
				copyPlan(val.data.id).then((res) => {
 | 
			
		||||
					this.$modal.msgSuccess('复制成功');
 | 
			
		||||
          this.getDataList()
 | 
			
		||||
				});
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		detailCancel() {
 | 
			
		||||
			this.detailVisible = false;
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scope>
 | 
			
		||||
.searchBarBox {
 | 
			
		||||
	width: 100%;
 | 
			
		||||
	position: relative;
 | 
			
		||||
	margin-bottom: 8px;
 | 
			
		||||
}
 | 
			
		||||
.searchBarBox::after {
 | 
			
		||||
	content: '';
 | 
			
		||||
	display: block;
 | 
			
		||||
	clear: both;
 | 
			
		||||
}
 | 
			
		||||
.searchBar .blue-block {
 | 
			
		||||
	display: inline-block;
 | 
			
		||||
	float: left;
 | 
			
		||||
	width: 4px;
 | 
			
		||||
	height: 16px;
 | 
			
		||||
	background-color: #0b58ff;
 | 
			
		||||
	border-radius: 1px;
 | 
			
		||||
	margin-right: 8px;
 | 
			
		||||
	margin-top: 12px;
 | 
			
		||||
}
 | 
			
		||||
.searchBar .el-form-item {
 | 
			
		||||
	margin-bottom: 4px;
 | 
			
		||||
}
 | 
			
		||||
.searchBar .separateStyle {
 | 
			
		||||
	display: inline-block;
 | 
			
		||||
	width: 1px;
 | 
			
		||||
	height: 24px;
 | 
			
		||||
	background: #e8e8e8;
 | 
			
		||||
	vertical-align: middle;
 | 
			
		||||
}
 | 
			
		||||
.searchBar .vue-treeselect__control {
 | 
			
		||||
	height: 32px !important;
 | 
			
		||||
	line-height: 32px !important;
 | 
			
		||||
	margin: 4px 0;
 | 
			
		||||
}
 | 
			
		||||
body .el-dialog__header {
 | 
			
		||||
	font-size: 16px;
 | 
			
		||||
	color: rgba(0, 0, 0, 0.85);
 | 
			
		||||
	font-weight: 500;
 | 
			
		||||
	padding: 13px 24px;
 | 
			
		||||
	border-bottom: 1px solid #e9e9e9;
 | 
			
		||||
}
 | 
			
		||||
body .el-dialog__header .titleStyle::before {
 | 
			
		||||
	content: '';
 | 
			
		||||
	display: inline-block;
 | 
			
		||||
	width: 4px;
 | 
			
		||||
	height: 16px;
 | 
			
		||||
	background-color: #0b58ff;
 | 
			
		||||
	border-radius: 1px;
 | 
			
		||||
	margin-right: 8px;
 | 
			
		||||
	position: relative;
 | 
			
		||||
	top: 2px;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										36
									
								
								src/views/group/Schedule/propSpan.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,36 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-13 16:18:41
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-21 13:54:52
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<span>
 | 
			
		||||
		<el-tag
 | 
			
		||||
			v-if="injectData.work"
 | 
			
		||||
			size="small"
 | 
			
		||||
			:type="['', 'success', 'warning'][injectData.sort]">
 | 
			
		||||
			{{ injectData[injectData.prop] }}
 | 
			
		||||
		</el-tag>
 | 
			
		||||
		<el-tag v-else effect="dark" size="small" type="info">
 | 
			
		||||
			{{ injectData[injectData.prop] }}
 | 
			
		||||
		</el-tag>
 | 
			
		||||
	</span>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
	props: {
 | 
			
		||||
		injectData: {
 | 
			
		||||
			type: Object,
 | 
			
		||||
			default: () => ({}),
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {};
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										33
									
								
								src/views/group/Schedule/propfirstSpan.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,33 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-13 16:18:41
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-20 10:13:26
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div>
 | 
			
		||||
		<div>
 | 
			
		||||
			{{ injectData.name.split('/')[0] }}
 | 
			
		||||
		</div>
 | 
			
		||||
		<div>
 | 
			
		||||
			{{ injectData.name.split('/')[1] }}
 | 
			
		||||
		</div>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
	props: {
 | 
			
		||||
		injectData: {
 | 
			
		||||
			type: Object,
 | 
			
		||||
			default: () => ({}),
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {};
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										33
									
								
								src/views/group/Schedule/subSpan.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,33 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-13 16:18:41
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-20 10:13:26
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<span>
 | 
			
		||||
		{{
 | 
			
		||||
			injectData.shiftSustainedNum +
 | 
			
		||||
			(injectData.shiftSustainedType
 | 
			
		||||
				? ['', '日', '周', '月', '季'][injectData.shiftSustainedType]
 | 
			
		||||
				: '')
 | 
			
		||||
		}}
 | 
			
		||||
	</span>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
	props: {
 | 
			
		||||
		injectData: {
 | 
			
		||||
			type: Object,
 | 
			
		||||
			default: () => ({}),
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {};
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										31
									
								
								src/views/group/Schedule/subStatus.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,31 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-13 16:40:08
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-13 16:43:11
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<el-tag
 | 
			
		||||
		v-if="injectData.status"
 | 
			
		||||
     size="medium"
 | 
			
		||||
		:type="['', '', 'success', 'warning'][injectData.status]">
 | 
			
		||||
		{{ ['', '草稿', '已确认', '已作废'][injectData.status] }}
 | 
			
		||||
	</el-tag>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
export default {
 | 
			
		||||
	props: {
 | 
			
		||||
		injectData: {
 | 
			
		||||
			type: Object,
 | 
			
		||||
			default: () => ({}),
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {};
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										64
									
								
								src/views/group/deptSelect.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,64 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<treeselect
 | 
			
		||||
		v-model="deptId"
 | 
			
		||||
		:options="deptOptions"
 | 
			
		||||
		:show-count="true"
 | 
			
		||||
		sise="small"
 | 
			
		||||
		ref="treeselect"
 | 
			
		||||
		placeholder="请选择归属部门"
 | 
			
		||||
		@input="setId"
 | 
			
		||||
		:normalizer="normalizer" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import Treeselect from '@riophae/vue-treeselect';
 | 
			
		||||
import '@riophae/vue-treeselect/dist/vue-treeselect.css';
 | 
			
		||||
import { listSimpleDepts } from '@/api/system/dept';
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	components: { Treeselect },
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			deptId: undefined,
 | 
			
		||||
			deptOptions: undefined,
 | 
			
		||||
			defaultProps: {
 | 
			
		||||
				children: 'children',
 | 
			
		||||
				label: 'name',
 | 
			
		||||
			},
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	created() {
 | 
			
		||||
		this.getTreeselect();
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		/** 查询部门下拉树结构  */
 | 
			
		||||
		getTreeselect() {
 | 
			
		||||
			listSimpleDepts().then((response) => {
 | 
			
		||||
				// 处理 deptOptions 参数
 | 
			
		||||
				this.deptOptions = [];
 | 
			
		||||
				this.deptOptions.push(...this.handleTree(response.data, 'id'));
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
    // 子组件返回id
 | 
			
		||||
		setId(val) {
 | 
			
		||||
			this.$emit('DeptId', val);
 | 
			
		||||
		},
 | 
			
		||||
    // 父组件赋值id
 | 
			
		||||
		setID(id) {
 | 
			
		||||
			this.deptId = id;
 | 
			
		||||
		},
 | 
			
		||||
		clear() {
 | 
			
		||||
			console.log(this.$refs.treeselect);
 | 
			
		||||
			this.$refs.treeselect.clear();
 | 
			
		||||
		},
 | 
			
		||||
		// 格式化部门的下拉框
 | 
			
		||||
		normalizer(node) {
 | 
			
		||||
			return {
 | 
			
		||||
				id: node.id,
 | 
			
		||||
				label: node.name,
 | 
			
		||||
				children: node.children,
 | 
			
		||||
			};
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										226
									
								
								src/views/group/groupSetting/add-or-updata.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,226 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2021-11-18 14:16:25
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-29 14:47:33
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<el-form
 | 
			
		||||
		:model="dataForm"
 | 
			
		||||
		:rules="dataRule"
 | 
			
		||||
		ref="dataForm"
 | 
			
		||||
		@keyup.enter.native="dataFormSubmit()"
 | 
			
		||||
		label-position="top"
 | 
			
		||||
		label-width="80px">
 | 
			
		||||
		<el-row :gutter="20">
 | 
			
		||||
			<el-col :span="8">
 | 
			
		||||
				<el-form-item label="班组编号" prop="code">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="dataForm.code"
 | 
			
		||||
						clearable
 | 
			
		||||
						placeholder="请输入班组编号" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="8">
 | 
			
		||||
				<el-form-item label="班组名称" prop="name">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="dataForm.name"
 | 
			
		||||
						clearable
 | 
			
		||||
						placeholder="请输入班组名称" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="8">
 | 
			
		||||
				<el-form-item label="部门">
 | 
			
		||||
					<dept-select
 | 
			
		||||
						style="width: 100%"
 | 
			
		||||
						ref="deptSelect"
 | 
			
		||||
						@DeptId="setDeptId"></dept-select>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="8">
 | 
			
		||||
				<el-form-item label="组长" prop="leaderId">
 | 
			
		||||
					<el-select
 | 
			
		||||
						style="width: 100%"
 | 
			
		||||
						v-model="dataForm.leaderId"
 | 
			
		||||
						@change="setLeaderName"
 | 
			
		||||
            filterable
 | 
			
		||||
						placeholder="请选择组长">
 | 
			
		||||
						<el-option
 | 
			
		||||
							v-for="item in leaderArr"
 | 
			
		||||
							:key="item.id"
 | 
			
		||||
							:label="item.nickname"
 | 
			
		||||
							:value="item.id"></el-option>
 | 
			
		||||
					</el-select>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="8">
 | 
			
		||||
				<el-form-item label="组长电话" prop="leaderPhone">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="dataForm.leaderPhone"
 | 
			
		||||
						clearable
 | 
			
		||||
             maxlength="11"
 | 
			
		||||
						placeholder="请输入组长电话" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="8">
 | 
			
		||||
				<el-form-item label="班组人数" prop="num">
 | 
			
		||||
					<el-input-number
 | 
			
		||||
						style="width: 100%"
 | 
			
		||||
						v-model="dataForm.num"
 | 
			
		||||
						:step="1"
 | 
			
		||||
						:min="0"
 | 
			
		||||
						step-strictly />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="8">
 | 
			
		||||
				<el-form-item label="生产班组" prop="isProduction">
 | 
			
		||||
					<el-select
 | 
			
		||||
						style="width: 100%"
 | 
			
		||||
						v-model="dataForm.isProduction"
 | 
			
		||||
						placeholder="请选择是否为生产班组">
 | 
			
		||||
						<el-option
 | 
			
		||||
							v-for="item in options"
 | 
			
		||||
							:key="item.value"
 | 
			
		||||
							:label="item.label"
 | 
			
		||||
							:value="item.value"></el-option>
 | 
			
		||||
					</el-select>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
			<el-col :span="8">
 | 
			
		||||
				<el-form-item label="备注" prop="remark">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="dataForm.remark"
 | 
			
		||||
						clearable
 | 
			
		||||
						placeholder="请输入备注" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-col>
 | 
			
		||||
		</el-row>
 | 
			
		||||
	</el-form>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import basicAdd from '@/mixins/basic-add';
 | 
			
		||||
import deptSelect from './../deptSelect.vue';
 | 
			
		||||
import { listSimpleUsers } from '@/api/system/user';
 | 
			
		||||
import {
 | 
			
		||||
	createGroup,
 | 
			
		||||
	updateGroup,
 | 
			
		||||
	getGroup,
 | 
			
		||||
	getCode,
 | 
			
		||||
} from '@/api/group/groupSetting';
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	mixins: [basicAdd],
 | 
			
		||||
	components: {
 | 
			
		||||
		deptSelect,
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			urlOptions: {
 | 
			
		||||
				isGetCode: true,
 | 
			
		||||
				codeURL: getCode,
 | 
			
		||||
				createURL: createGroup,
 | 
			
		||||
				updateURL: updateGroup,
 | 
			
		||||
				infoURL: getGroup,
 | 
			
		||||
				optionArrUrl: [listSimpleUsers], //需要获取下拉框的方法数组
 | 
			
		||||
			},
 | 
			
		||||
			dataForm: {
 | 
			
		||||
				id: undefined,
 | 
			
		||||
				code: undefined,
 | 
			
		||||
				name: undefined,
 | 
			
		||||
				leaderId: undefined,
 | 
			
		||||
				leaderName: undefined,
 | 
			
		||||
				leaderPhone: undefined,
 | 
			
		||||
				deptId: undefined,
 | 
			
		||||
				isProduction: undefined,
 | 
			
		||||
				num: undefined,
 | 
			
		||||
				remark: undefined,
 | 
			
		||||
			},
 | 
			
		||||
      setData: true,
 | 
			
		||||
			leaderArr: [],
 | 
			
		||||
			options: [
 | 
			
		||||
				{
 | 
			
		||||
					value: true,
 | 
			
		||||
					label: '是',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					value: false,
 | 
			
		||||
					label: '否',
 | 
			
		||||
				},
 | 
			
		||||
			],
 | 
			
		||||
			dataRule: {
 | 
			
		||||
				code: [
 | 
			
		||||
					{ required: true, message: '班组编码不能为空', trigger: 'blur' },
 | 
			
		||||
				],
 | 
			
		||||
				name: [
 | 
			
		||||
					{ required: true, message: '班组名称不能为空', trigger: 'blur' },
 | 
			
		||||
				],
 | 
			
		||||
				leaderId: [
 | 
			
		||||
					{ required: true, message: '组长不能为空', trigger: 'change' },
 | 
			
		||||
				],
 | 
			
		||||
				isProduction: [
 | 
			
		||||
					{ required: true, message: '生产班组不能为空', trigger: 'change' },
 | 
			
		||||
				],
 | 
			
		||||
        leaderPhone: [
 | 
			
		||||
          {
 | 
			
		||||
            pattern: /^(?:(?:\+|00)86)?1(?:3[\d]|4[5-79]|5[0-35-9]|6[5-7]|7[0-8]|8[\d]|9[189])\d{8}$/,
 | 
			
		||||
            message: "请输入正确的手机号码",
 | 
			
		||||
            trigger: "blur"
 | 
			
		||||
          }
 | 
			
		||||
        ]
 | 
			
		||||
			},
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		setDeptId(val) {
 | 
			
		||||
			this.dataForm.deptId = val;
 | 
			
		||||
		},
 | 
			
		||||
		/** 获取下拉框数组 */
 | 
			
		||||
		getArr() {
 | 
			
		||||
			this.urlOptions.optionArrUrl[0]()
 | 
			
		||||
				.then(({ data: res }) => {
 | 
			
		||||
					this.leaderArr = res;
 | 
			
		||||
				})
 | 
			
		||||
				.catch(() => {});
 | 
			
		||||
		},
 | 
			
		||||
    setDataForm(){
 | 
			
		||||
      this.$refs.deptSelect.setID(this.dataForm.deptId)
 | 
			
		||||
    },
 | 
			
		||||
		setLeaderName(val) {
 | 
			
		||||
			this.leaderArr.map((item) => {
 | 
			
		||||
				if (val === item.id) {
 | 
			
		||||
					this.dataForm.leaderName = item.nickname;
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
    // 表单提交
 | 
			
		||||
    dataFormSubmit() {
 | 
			
		||||
      this.$refs["dataForm"].validate((valid) => {
 | 
			
		||||
        if (!valid) {
 | 
			
		||||
          return false;
 | 
			
		||||
        }
 | 
			
		||||
        if(!this.dataForm.deptId){
 | 
			
		||||
						this.$message('部门不能为空');
 | 
			
		||||
            return
 | 
			
		||||
        }
 | 
			
		||||
        // 修改的提交
 | 
			
		||||
        if (this.dataForm.id) {
 | 
			
		||||
          this.urlOptions.updateURL(this.dataForm).then(response => {
 | 
			
		||||
            this.$modal.msgSuccess("修改成功");
 | 
			
		||||
            this.visible = false;
 | 
			
		||||
            this.$emit("refreshDataList");
 | 
			
		||||
          });
 | 
			
		||||
          return;
 | 
			
		||||
        }
 | 
			
		||||
        // 添加的提交
 | 
			
		||||
        this.urlOptions.createURL(this.dataForm).then(response => {
 | 
			
		||||
          this.$modal.msgSuccess("新增成功");
 | 
			
		||||
          this.visible = false;
 | 
			
		||||
          this.$emit("refreshDataList");
 | 
			
		||||
        });
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										35
									
								
								src/views/group/groupSetting/changeStatus.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,35 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<el-switch
 | 
			
		||||
		@change="changeStatus"
 | 
			
		||||
		size="small"
 | 
			
		||||
		v-model="list.enabled"
 | 
			
		||||
		:active-value="1"
 | 
			
		||||
		:inactive-value="0"></el-switch>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { updateGroup } from '@/api/group/groupSetting';
 | 
			
		||||
export default {
 | 
			
		||||
	props: {
 | 
			
		||||
		injectData: {
 | 
			
		||||
			type: Object,
 | 
			
		||||
			default: () => ({}),
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			list: this.injectData,
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {
 | 
			
		||||
		changeStatus(val) {
 | 
			
		||||
			const data = { ...this.injectData, enabled: val };
 | 
			
		||||
			updateGroup(data).then((res) => {
 | 
			
		||||
				this.$modal.msgSuccess('修改成功');
 | 
			
		||||
					this.$emit('emitData');
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										289
									
								
								src/views/group/groupSetting/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,289 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2025-10-11 14:27:37
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-29 14:44:41
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="app-container">
 | 
			
		||||
		<div class="searchBarBox">
 | 
			
		||||
			<el-form
 | 
			
		||||
				:inline="true"
 | 
			
		||||
				ref="searchBarForm"
 | 
			
		||||
				:model="formInline"
 | 
			
		||||
				class="searchBar">
 | 
			
		||||
				<span class="blue-block" />
 | 
			
		||||
				<el-form-item label="班组编号" prop="code">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="formInline.code"
 | 
			
		||||
						clearable
 | 
			
		||||
						size="small"
 | 
			
		||||
						placeholder="请输入班组编号" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item label="部门" prop="deptId">
 | 
			
		||||
					<dept-select
 | 
			
		||||
						style="width: 200px"
 | 
			
		||||
						ref="deptSelect"
 | 
			
		||||
						@DeptId="setDeptId"></dept-select>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item label="班组名称" prop="name">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="formInline.name"
 | 
			
		||||
						clearable
 | 
			
		||||
						size="small"
 | 
			
		||||
						placeholder="请输入班组名称" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item label="组长" prop="leaderName">
 | 
			
		||||
					<el-input
 | 
			
		||||
						v-model="formInline.leaderName"
 | 
			
		||||
						clearable
 | 
			
		||||
						size="small"
 | 
			
		||||
						placeholder="请输入组长" />
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<el-button
 | 
			
		||||
						type="primary"
 | 
			
		||||
						size="small"
 | 
			
		||||
						v-hasPermi="['base:group-team:query']"
 | 
			
		||||
						@click="buttonClick({ btnName: 'search' })">
 | 
			
		||||
						查询
 | 
			
		||||
					</el-button>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<span
 | 
			
		||||
						class="separateStyle"
 | 
			
		||||
						v-hasPermi="['base:group-team:query']"></span>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<el-button size="small" @click="buttonClick({ btnName: 'reset' })">
 | 
			
		||||
						重置
 | 
			
		||||
					</el-button>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<span
 | 
			
		||||
						class="separateStyle"
 | 
			
		||||
						v-hasPermi="['base:group-team:create']"></span>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
				<el-form-item>
 | 
			
		||||
					<el-button
 | 
			
		||||
						type="success"
 | 
			
		||||
						size="small"
 | 
			
		||||
						:plain="true"
 | 
			
		||||
						v-hasPermi="['base:group-team:create']"
 | 
			
		||||
						@click="buttonClick({ btnName: 'add' })">
 | 
			
		||||
						新增
 | 
			
		||||
					</el-button>
 | 
			
		||||
				</el-form-item>
 | 
			
		||||
			</el-form>
 | 
			
		||||
		</div>
 | 
			
		||||
		<base-table
 | 
			
		||||
			v-loading="dataListLoading"
 | 
			
		||||
			:table-props="tableProps"
 | 
			
		||||
			:page="listQuery.pageNo"
 | 
			
		||||
			:limit="listQuery.pageSize"
 | 
			
		||||
			:table-data="tableData"
 | 
			
		||||
			@emitFun="getDataList">
 | 
			
		||||
			<method-btn
 | 
			
		||||
				v-if="tableBtn.length"
 | 
			
		||||
				slot="handleBtn"
 | 
			
		||||
				:width="80"
 | 
			
		||||
				label="操作"
 | 
			
		||||
				:method-list="tableBtn"
 | 
			
		||||
				@clickBtn="handleClick" />
 | 
			
		||||
		</base-table>
 | 
			
		||||
		<pagination
 | 
			
		||||
			:limit.sync="listQuery.pageSize"
 | 
			
		||||
			:page.sync="listQuery.pageNo"
 | 
			
		||||
			:total="listQuery.total"
 | 
			
		||||
			@pagination="getDataList" />
 | 
			
		||||
		<base-dialog
 | 
			
		||||
			:dialogTitle="addOrEditTitle"
 | 
			
		||||
			:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
			@cancel="handleCancel"
 | 
			
		||||
			@confirm="handleConfirm"
 | 
			
		||||
			:before-close="handleCancel"
 | 
			
		||||
			:destroy-on-close="true"
 | 
			
		||||
			width="50%">
 | 
			
		||||
			<add-or-update
 | 
			
		||||
				ref="addOrUpdate"
 | 
			
		||||
				@refreshDataList="successSubmit"></add-or-update>
 | 
			
		||||
		</base-dialog>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import AddOrUpdate from './add-or-updata';
 | 
			
		||||
import deptSelect from './../deptSelect.vue';
 | 
			
		||||
import basicPage from '@/mixins/basic-page';
 | 
			
		||||
import changeStatus from './changeStatus.vue';
 | 
			
		||||
import { parseTime } from '@/filter/code-filter';
 | 
			
		||||
import { getGroupPage } from '@/api/group/groupSetting';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'code',
 | 
			
		||||
		label: '班组编号',
 | 
			
		||||
		width: 210,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'name',
 | 
			
		||||
		label: '班组名称',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'deptName',
 | 
			
		||||
		label: '所属部门',
 | 
			
		||||
		width: 110,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'leaderName',
 | 
			
		||||
		label: '组长',
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'leaderPhone',
 | 
			
		||||
		label: '组长电话',
 | 
			
		||||
		width: 110,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'num',
 | 
			
		||||
		label: '人数',
 | 
			
		||||
		width: 70,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'isProduction',
 | 
			
		||||
		label: '是否生产班组',
 | 
			
		||||
		filter: (val) => {
 | 
			
		||||
			return val ? '是' : '否';
 | 
			
		||||
		},
 | 
			
		||||
		width: 110,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'remark',
 | 
			
		||||
		label: '备注',
 | 
			
		||||
		showOverflowtooltip: true,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'createTime',
 | 
			
		||||
		label: '创建时间',
 | 
			
		||||
		filter: parseTime,
 | 
			
		||||
		width: 150,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'enabled',
 | 
			
		||||
		label: '班组状态',
 | 
			
		||||
		subcomponent: changeStatus,
 | 
			
		||||
		width: 80,
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	mixins: [basicPage],
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			urlOptions: {
 | 
			
		||||
				getDataListURL: getGroupPage,
 | 
			
		||||
			},
 | 
			
		||||
			tableProps,
 | 
			
		||||
			tableBtn: [
 | 
			
		||||
				this.$auth.hasPermi('base:group-team:update')
 | 
			
		||||
					? {
 | 
			
		||||
							type: 'edit',
 | 
			
		||||
							btnName: '编辑',
 | 
			
		||||
					  }
 | 
			
		||||
					: undefined,
 | 
			
		||||
			].filter((v) => v),
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			formInline: {
 | 
			
		||||
				code: '',
 | 
			
		||||
				name: '',
 | 
			
		||||
				deptId: '',
 | 
			
		||||
				leaderName: '',
 | 
			
		||||
			},
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	components: {
 | 
			
		||||
		AddOrUpdate,
 | 
			
		||||
		deptSelect,
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery = {
 | 
			
		||||
						pageNo: 1,
 | 
			
		||||
						pageSize: 10,
 | 
			
		||||
						total: 1,
 | 
			
		||||
						...this.formInline,
 | 
			
		||||
					};
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'reset':
 | 
			
		||||
					this.formInline.name = null;
 | 
			
		||||
					this.formInline.code = null;
 | 
			
		||||
					this.formInline.deptId = null;
 | 
			
		||||
					this.$refs.deptSelect.clear();
 | 
			
		||||
					this.formInline.leaderName = null;
 | 
			
		||||
					this.listQuery = {
 | 
			
		||||
						pageSize: 10,
 | 
			
		||||
						pageNo: 1,
 | 
			
		||||
						total: 1,
 | 
			
		||||
					};
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'add':
 | 
			
		||||
					this.addOrEditTitle = '新增';
 | 
			
		||||
					this.addOrUpdateVisible = true;
 | 
			
		||||
					this.addOrUpdateHandle();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'export':
 | 
			
		||||
					this.handleExport();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
					console.log(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		setDeptId(val) {
 | 
			
		||||
			this.formInline.deptId = val;
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scope>
 | 
			
		||||
.searchBarBox {
 | 
			
		||||
	width: 100%;
 | 
			
		||||
	position: relative;
 | 
			
		||||
	margin-bottom: 8px;
 | 
			
		||||
}
 | 
			
		||||
.searchBarBox::after {
 | 
			
		||||
	content: '';
 | 
			
		||||
	display: block;
 | 
			
		||||
	clear: both;
 | 
			
		||||
}
 | 
			
		||||
.searchBar .blue-block {
 | 
			
		||||
	display: inline-block;
 | 
			
		||||
	float: left;
 | 
			
		||||
	width: 4px;
 | 
			
		||||
	height: 16px;
 | 
			
		||||
	background-color: #0b58ff;
 | 
			
		||||
	border-radius: 1px;
 | 
			
		||||
	margin-right: 8px;
 | 
			
		||||
	margin-top: 12px;
 | 
			
		||||
}
 | 
			
		||||
.searchBar .el-form-item {
 | 
			
		||||
	margin-bottom: 4px;
 | 
			
		||||
}
 | 
			
		||||
.searchBar .separateStyle {
 | 
			
		||||
	display: inline-block;
 | 
			
		||||
	width: 1px;
 | 
			
		||||
	height: 24px;
 | 
			
		||||
	background: #e8e8e8;
 | 
			
		||||
	vertical-align: middle;
 | 
			
		||||
}
 | 
			
		||||
.searchBar .vue-treeselect__control {
 | 
			
		||||
	height: 32px !important;
 | 
			
		||||
	line-height: 32px !important;
 | 
			
		||||
	margin: 4px 0;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
							
								
								
									
										382
									
								
								src/views/group/holidaySetting/add-or-updata.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,382 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2021-11-18 14:16:25
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-23 13:29:58
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<div>
 | 
			
		||||
		<el-form
 | 
			
		||||
			:model="dataForm"
 | 
			
		||||
			:rules="dataRule"
 | 
			
		||||
			ref="dataForm"
 | 
			
		||||
			@keyup.enter.native="dataFormSubmit()"
 | 
			
		||||
			label-position="top"
 | 
			
		||||
			label-width="80px">
 | 
			
		||||
			<el-row :gutter="20">
 | 
			
		||||
				<el-col :span="12">
 | 
			
		||||
					<el-form-item label="节假日名称" prop="name">
 | 
			
		||||
						<el-input
 | 
			
		||||
							v-model="dataForm.name"
 | 
			
		||||
							clearable
 | 
			
		||||
							:disabled="detail"
 | 
			
		||||
							placeholder="请输入节假日名称" />
 | 
			
		||||
					</el-form-item>
 | 
			
		||||
				</el-col>
 | 
			
		||||
				<el-col :span="12">
 | 
			
		||||
					<el-form-item label="日历类型" prop="calendarType">
 | 
			
		||||
						<el-select
 | 
			
		||||
							v-model="dataForm.calendarType"
 | 
			
		||||
							:disabled="detail"
 | 
			
		||||
							style="width: 100%">
 | 
			
		||||
							<el-option
 | 
			
		||||
								v-for="item in options1"
 | 
			
		||||
								:key="item.value"
 | 
			
		||||
								:label="item.label"
 | 
			
		||||
								:value="item.value"></el-option>
 | 
			
		||||
						</el-select>
 | 
			
		||||
					</el-form-item>
 | 
			
		||||
				</el-col>
 | 
			
		||||
				<el-col :span="12">
 | 
			
		||||
					<el-form-item label="日期类型" prop="dateType">
 | 
			
		||||
						<el-select
 | 
			
		||||
							style="width: 100%"
 | 
			
		||||
							:disabled="detail"
 | 
			
		||||
							v-model="dataForm.dateType">
 | 
			
		||||
							<el-option
 | 
			
		||||
								v-for="item in options2"
 | 
			
		||||
								:key="item.value"
 | 
			
		||||
								:label="item.label"
 | 
			
		||||
								:value="item.value"></el-option>
 | 
			
		||||
						</el-select>
 | 
			
		||||
					</el-form-item>
 | 
			
		||||
				</el-col>
 | 
			
		||||
				<el-col :span="12">
 | 
			
		||||
					<el-form-item
 | 
			
		||||
						v-if="dataForm.dateType == 1"
 | 
			
		||||
						label="日期"
 | 
			
		||||
						prop="dateDay">
 | 
			
		||||
						<el-date-picker
 | 
			
		||||
							:disabled="detail"
 | 
			
		||||
							style="width: 100%"
 | 
			
		||||
							key="date"
 | 
			
		||||
							v-model="dataForm.dateDay"
 | 
			
		||||
							type="date"
 | 
			
		||||
							placeholder="选择日期"
 | 
			
		||||
							format="yyyy-MM-dd"
 | 
			
		||||
							value-format="--MM-dd"
 | 
			
		||||
							:picker-options="pickerOptions"></el-date-picker>
 | 
			
		||||
					</el-form-item>
 | 
			
		||||
					<el-form-item v-else label="日期" prop="dateDayArr">
 | 
			
		||||
						<el-date-picker
 | 
			
		||||
							:disabled="detail"
 | 
			
		||||
							style="width: 100%"
 | 
			
		||||
							key="daterange"
 | 
			
		||||
							v-model="dataForm.dateDayArr"
 | 
			
		||||
							type="daterange"
 | 
			
		||||
							format="yyyy-MM-dd"
 | 
			
		||||
							value-format="--MM-dd"
 | 
			
		||||
							range-separator="至"
 | 
			
		||||
							start-placeholder="开始日期"
 | 
			
		||||
							end-placeholder="结束日期"
 | 
			
		||||
							:picker-options="pickerOptions"></el-date-picker>
 | 
			
		||||
					</el-form-item>
 | 
			
		||||
				</el-col>
 | 
			
		||||
				<el-col :span="12">
 | 
			
		||||
					<el-form-item label="是否每年重复" prop="repeat">
 | 
			
		||||
						<el-select
 | 
			
		||||
							v-model="dataForm.repeat"
 | 
			
		||||
							:disabled="detail"
 | 
			
		||||
							style="width: 100%">
 | 
			
		||||
							<el-option
 | 
			
		||||
								v-for="item in options3"
 | 
			
		||||
								:key="item.value"
 | 
			
		||||
								:label="item.label"
 | 
			
		||||
								:value="item.value"></el-option>
 | 
			
		||||
						</el-select>
 | 
			
		||||
					</el-form-item>
 | 
			
		||||
				</el-col>
 | 
			
		||||
				<el-col :span="12" v-if="detail">
 | 
			
		||||
					<el-form-item label="来源" prop="inherited">
 | 
			
		||||
						<el-radio-group disabled v-model="dataForm.inherited">
 | 
			
		||||
							<el-radio :label="true">继承</el-radio>
 | 
			
		||||
							<el-radio :label="false">自定义</el-radio>
 | 
			
		||||
						</el-radio-group>
 | 
			
		||||
					</el-form-item>
 | 
			
		||||
				</el-col>
 | 
			
		||||
			</el-row>
 | 
			
		||||
		</el-form>
 | 
			
		||||
		<el-dialog
 | 
			
		||||
			title="删除确认"
 | 
			
		||||
			:visible.sync="dialogVisible"
 | 
			
		||||
			width="30%"
 | 
			
		||||
			append-to-body>
 | 
			
		||||
			<span>
 | 
			
		||||
				确认删除该节假日吗?
 | 
			
		||||
				<br />
 | 
			
		||||
				该节假日已被排班计划使用,建议确认是否同步更新排班计划。
 | 
			
		||||
				<br />
 | 
			
		||||
				此操作不可恢复,请确认是否继续
 | 
			
		||||
			</span>
 | 
			
		||||
			<span slot="footer" class="dialog-footer">
 | 
			
		||||
				<el-button @click="dialogVisible = false">取 消</el-button>
 | 
			
		||||
				<el-button @click="onlyDelete">仅删除</el-button>
 | 
			
		||||
				<el-button type="primary" @click="deleteAndUpdate">
 | 
			
		||||
					删除并更新
 | 
			
		||||
				</el-button>
 | 
			
		||||
			</span>
 | 
			
		||||
		</el-dialog>
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import {
 | 
			
		||||
	createHoliday,
 | 
			
		||||
	updateHoliday,
 | 
			
		||||
	checkDeleteHoliday,
 | 
			
		||||
	deleteHoliday,
 | 
			
		||||
	updateSchedule,
 | 
			
		||||
	getHoliday,
 | 
			
		||||
} from '@/api/group/holidaySetting';
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	components: {},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			dataForm: {
 | 
			
		||||
				id: undefined,
 | 
			
		||||
				name: undefined,
 | 
			
		||||
				calendarType: 1,
 | 
			
		||||
				dateType: 1,
 | 
			
		||||
				dateDay: undefined,
 | 
			
		||||
				dateDayArr: [],
 | 
			
		||||
				repeat: true,
 | 
			
		||||
				inherited: true, //	是否为继承
 | 
			
		||||
				deptId: undefined,
 | 
			
		||||
			},
 | 
			
		||||
			detail: false,
 | 
			
		||||
			options1: [
 | 
			
		||||
				{
 | 
			
		||||
					value: 1,
 | 
			
		||||
					label: '公历(阳历)',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					value: 2,
 | 
			
		||||
					label: '农历(阴历)',
 | 
			
		||||
				},
 | 
			
		||||
			],
 | 
			
		||||
			options2: [
 | 
			
		||||
				{
 | 
			
		||||
					value: 1,
 | 
			
		||||
					label: '单天',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					value: 2,
 | 
			
		||||
					label: '时间段',
 | 
			
		||||
				},
 | 
			
		||||
			],
 | 
			
		||||
			options3: [
 | 
			
		||||
				{
 | 
			
		||||
					value: false,
 | 
			
		||||
					label: '否,本年度有效',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					value: true,
 | 
			
		||||
					label: '是,每年循环生效',
 | 
			
		||||
				},
 | 
			
		||||
			],
 | 
			
		||||
			dataRule: {
 | 
			
		||||
				name: [
 | 
			
		||||
					{ required: true, message: '节假日名称不能为空', trigger: 'blur' },
 | 
			
		||||
				],
 | 
			
		||||
				calendarType: [
 | 
			
		||||
					{ required: true, message: '日历类型不能为空', trigger: 'change' },
 | 
			
		||||
				],
 | 
			
		||||
				dateType: [
 | 
			
		||||
					{ required: true, message: '日期类型不能为空', trigger: 'change' },
 | 
			
		||||
				],
 | 
			
		||||
				dateDay: [
 | 
			
		||||
					{ required: true, message: '日期不能为空', trigger: 'change' },
 | 
			
		||||
				],
 | 
			
		||||
				dateDayArr: [
 | 
			
		||||
					{ required: true, message: '日期不能为空', trigger: 'change' },
 | 
			
		||||
				],
 | 
			
		||||
				repeat: [
 | 
			
		||||
					{
 | 
			
		||||
						required: true,
 | 
			
		||||
						message: '是否每年重复不能为空',
 | 
			
		||||
						trigger: 'change',
 | 
			
		||||
					},
 | 
			
		||||
				],
 | 
			
		||||
			},
 | 
			
		||||
			pickerOptions: {
 | 
			
		||||
				disabledDate(time) {
 | 
			
		||||
					return time.getTime() < Date.now();
 | 
			
		||||
				},
 | 
			
		||||
			},
 | 
			
		||||
			dialogVisible: false,
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		init(deptId, id, detail) {
 | 
			
		||||
			this.dataForm.deptId = deptId || undefined;
 | 
			
		||||
			this.dataForm.id = id || undefined;
 | 
			
		||||
			this.detail = detail || false;
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.$refs['dataForm'].resetFields();
 | 
			
		||||
				if (this.dataForm.id) {
 | 
			
		||||
					getHoliday(this.dataForm.id).then((res) => {
 | 
			
		||||
						this.dataForm = res.data;
 | 
			
		||||
						if (
 | 
			
		||||
							this.dataForm.dateType == 1 &&
 | 
			
		||||
							this.dataForm.calendarType == 1
 | 
			
		||||
						) {
 | 
			
		||||
							this.dataForm.dateDay = this.dataForm.oneDay;
 | 
			
		||||
						} else if (
 | 
			
		||||
							this.dataForm.dateType == 2 &&
 | 
			
		||||
							this.dataForm.calendarType == 1
 | 
			
		||||
						) {
 | 
			
		||||
							this.dataForm.dateDayArr = [
 | 
			
		||||
								this.dataForm.startDay,
 | 
			
		||||
								this.dataForm.endDay,
 | 
			
		||||
							];
 | 
			
		||||
						} else if (
 | 
			
		||||
							this.dataForm.dateType == 1 &&
 | 
			
		||||
							this.dataForm.calendarType == 2
 | 
			
		||||
						) {
 | 
			
		||||
							this.dataForm.dateDay = this.dataForm.oneDayChinese;
 | 
			
		||||
						} else if (
 | 
			
		||||
							this.dataForm.dateType == 2 &&
 | 
			
		||||
							this.dataForm.calendarType == 2
 | 
			
		||||
						) {
 | 
			
		||||
							this.dataForm.dateDayArr = [
 | 
			
		||||
								this.dataForm.startDayChinese,
 | 
			
		||||
								this.dataForm.endDayChinese,
 | 
			
		||||
							];
 | 
			
		||||
						}
 | 
			
		||||
					});
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		editHoliday() {
 | 
			
		||||
			this.detail = false;
 | 
			
		||||
		},
 | 
			
		||||
		deleteHoliday() {
 | 
			
		||||
			//删除节假日基础信息前校验是否影响排班
 | 
			
		||||
			checkDeleteHoliday(this.dataForm.id).then((res) => {
 | 
			
		||||
				if (res.data) {
 | 
			
		||||
					this.dialogVisible = true;
 | 
			
		||||
				} else {
 | 
			
		||||
					this.$confirm(
 | 
			
		||||
						'确认删除该节假日吗?<br/>此操作不可恢复,请确认是否继续',
 | 
			
		||||
						'删除确认',
 | 
			
		||||
						{
 | 
			
		||||
							dangerouslyUseHTMLString: true,
 | 
			
		||||
							confirmButtonText: '确认删除',
 | 
			
		||||
							cancelButtonText: '取消',
 | 
			
		||||
							type: 'warning',
 | 
			
		||||
						}
 | 
			
		||||
					)
 | 
			
		||||
						.then(() => {
 | 
			
		||||
							deleteHoliday(this.dataForm.id).then((res) => {
 | 
			
		||||
								console.log(res);
 | 
			
		||||
								this.$modal.msgSuccess('删除成功');
 | 
			
		||||
								this.$emit('refreshPage');
 | 
			
		||||
							});
 | 
			
		||||
						})
 | 
			
		||||
						.catch(() => {
 | 
			
		||||
							this.$message({
 | 
			
		||||
								type: 'info',
 | 
			
		||||
								message: '已取消',
 | 
			
		||||
							});
 | 
			
		||||
						});
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		onlyDelete() {
 | 
			
		||||
			deleteHoliday(this.dataForm.id).then((res) => {
 | 
			
		||||
				this.dialogVisible = false;
 | 
			
		||||
				this.$modal.msgSuccess('删除成功');
 | 
			
		||||
				this.$emit('refreshPage');
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		deleteAndUpdate() {
 | 
			
		||||
			deleteHoliday(this.dataForm.id).then((res) => {
 | 
			
		||||
				this.dialogVisible = false;
 | 
			
		||||
				this.$modal.msgSuccess('删除成功');
 | 
			
		||||
				updateSchedule({ logId: res.data.logId }).then((res1) => {
 | 
			
		||||
					this.$modal.msgSuccess('更新成功');
 | 
			
		||||
					this.$emit('refreshPage');
 | 
			
		||||
				});
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		// 表单提交
 | 
			
		||||
		dataFormSubmit() {
 | 
			
		||||
			this.$refs['dataForm'].validate((valid) => {
 | 
			
		||||
				if (!valid) {
 | 
			
		||||
					return false;
 | 
			
		||||
				}
 | 
			
		||||
				if (this.dataForm.dateType == 1 && this.dataForm.calendarType == 1) {
 | 
			
		||||
					this.dataForm.oneDay = this.dataForm.dateDay;
 | 
			
		||||
				} else if (
 | 
			
		||||
					this.dataForm.dateType == 2 &&
 | 
			
		||||
					this.dataForm.calendarType == 1
 | 
			
		||||
				) {
 | 
			
		||||
					this.dataForm.startDay = this.dataForm.dateDayArr[0];
 | 
			
		||||
					this.dataForm.endDay = this.dataForm.dateDayArr[1];
 | 
			
		||||
				} else if (
 | 
			
		||||
					this.dataForm.dateType == 1 &&
 | 
			
		||||
					this.dataForm.calendarType == 2
 | 
			
		||||
				) {
 | 
			
		||||
					this.dataForm.oneDayChinese = this.dataForm.dateDay;
 | 
			
		||||
				} else if (
 | 
			
		||||
					this.dataForm.dateType == 2 &&
 | 
			
		||||
					this.dataForm.calendarType == 2
 | 
			
		||||
				) {
 | 
			
		||||
					this.dataForm.startDayChinese = this.dataForm.dateDayArr[0];
 | 
			
		||||
					this.dataForm.endDayChinese = this.dataForm.dateDayArr[1];
 | 
			
		||||
				}
 | 
			
		||||
				// 修改的提交
 | 
			
		||||
				if (this.dataForm.id) {
 | 
			
		||||
					updateHoliday(this.dataForm).then((response) => {
 | 
			
		||||
						this.$modal.msgSuccess('修改成功');
 | 
			
		||||
						this.$emit('refreshPage');
 | 
			
		||||
					});
 | 
			
		||||
					return;
 | 
			
		||||
				}
 | 
			
		||||
				// 添加的提交
 | 
			
		||||
				createHoliday(this.dataForm).then((res) => {
 | 
			
		||||
					updateSchedule;
 | 
			
		||||
					if (!res.data.updateFlag) {
 | 
			
		||||
						this.$modal.msgSuccess('新增成功');
 | 
			
		||||
						this.$emit('refreshPage');
 | 
			
		||||
					} else {
 | 
			
		||||
						this.$confirm(
 | 
			
		||||
							'新增节假日影响已有排班计划,是否立即更新?',
 | 
			
		||||
							'更新排班',
 | 
			
		||||
							{
 | 
			
		||||
								confirmButtonText: '立即更新',
 | 
			
		||||
								cancelButtonText: '暂不更新',
 | 
			
		||||
								type: 'warning',
 | 
			
		||||
							}
 | 
			
		||||
						)
 | 
			
		||||
							.then(() => {
 | 
			
		||||
								updateSchedule({ logId: res.data.logId }).then((res1) => {
 | 
			
		||||
									this.$modal.msgSuccess('新增成功');
 | 
			
		||||
									this.$emit('refreshPage');
 | 
			
		||||
								});
 | 
			
		||||
							})
 | 
			
		||||
							.catch(() => {
 | 
			
		||||
								this.$message({
 | 
			
		||||
									type: 'info',
 | 
			
		||||
									message: '已取消',
 | 
			
		||||
								});
 | 
			
		||||
							});
 | 
			
		||||
					}
 | 
			
		||||
				});
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										182
									
								
								src/views/group/holidaySetting/holidayLog.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,182 @@
 | 
			
		||||
<template>
 | 
			
		||||
	<div class="app-container">
 | 
			
		||||
		<search-bar
 | 
			
		||||
			:formConfigs="formConfig"
 | 
			
		||||
			ref="searchBarForm"
 | 
			
		||||
      :isFold="true"
 | 
			
		||||
			@headBtnClick="buttonClick" />
 | 
			
		||||
		<base-table
 | 
			
		||||
			:table-props="tableProps"
 | 
			
		||||
			:page="listQuery.pageNo"
 | 
			
		||||
			:limit="listQuery.pageSize"
 | 
			
		||||
			:table-data="tableData">
 | 
			
		||||
		</base-table>
 | 
			
		||||
		<pagination
 | 
			
		||||
			:limit.sync="listQuery.pageSize"
 | 
			
		||||
			:page.sync="listQuery.pageNo"
 | 
			
		||||
			:total="listQuery.total"
 | 
			
		||||
			@pagination="getDataList" />
 | 
			
		||||
	</div>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { parseTime } from '@/filter/code-filter';
 | 
			
		||||
import { deptHolidayLogList } from '@/api/group/holidaySetting';
 | 
			
		||||
 | 
			
		||||
const tableProps = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'createTime',
 | 
			
		||||
		label: '操作时间',
 | 
			
		||||
		filter: parseTime
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'opPeopleName',
 | 
			
		||||
		label: '操作人'
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'opType',
 | 
			
		||||
		label: '操作类型',
 | 
			
		||||
    filter: (val)=>{return val?['','创建','删除','修改','-','-'][val]:'-'}
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'name',
 | 
			
		||||
		label: '节假日名称'
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'opDet',
 | 
			
		||||
		label: '修改内容'
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'planType',
 | 
			
		||||
		label: '更新排班计划',
 | 
			
		||||
    filter: (val)=>{return val?['','是','否','无排班计划'][val]:'-'}
 | 
			
		||||
	},
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
      listQuery: { //分页
 | 
			
		||||
        pageSize: 10,
 | 
			
		||||
        pageNo: 1,
 | 
			
		||||
        total: 1,
 | 
			
		||||
      },
 | 
			
		||||
			tableProps,
 | 
			
		||||
			tableData: [],
 | 
			
		||||
			formConfig: [
 | 
			
		||||
				{
 | 
			
		||||
					type: 'datePicker',
 | 
			
		||||
					label: '时间范围',
 | 
			
		||||
					dateType: 'daterange',
 | 
			
		||||
					format: 'yyyy-MM-dd',
 | 
			
		||||
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
 | 
			
		||||
					rangeSeparator: '-',
 | 
			
		||||
					startPlaceholder: '开始时间',
 | 
			
		||||
					endPlaceholder: '结束时间',
 | 
			
		||||
					param: 'createTime',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'input',
 | 
			
		||||
					label: '操作人',
 | 
			
		||||
					placeholder: '操作人',
 | 
			
		||||
					param: 'opPeopleName',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'select',
 | 
			
		||||
					label: '操作类型',
 | 
			
		||||
					selectOptions: [
 | 
			
		||||
						{
 | 
			
		||||
							id: 1,
 | 
			
		||||
							name: '创建',
 | 
			
		||||
						},
 | 
			
		||||
						{
 | 
			
		||||
							id: 2,
 | 
			
		||||
							name: '删除',
 | 
			
		||||
						},
 | 
			
		||||
						{
 | 
			
		||||
							id: 3,
 | 
			
		||||
							name: '修改',
 | 
			
		||||
						},
 | 
			
		||||
						{
 | 
			
		||||
							id: 4,
 | 
			
		||||
							name: '解除继承',
 | 
			
		||||
						},
 | 
			
		||||
						{
 | 
			
		||||
							id: 5,
 | 
			
		||||
							name: '恢复继承',
 | 
			
		||||
						},
 | 
			
		||||
					],
 | 
			
		||||
					param: 'opType',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'select',
 | 
			
		||||
					label: '更新排班计划',
 | 
			
		||||
					selectOptions: [
 | 
			
		||||
						{
 | 
			
		||||
							id: 1,
 | 
			
		||||
							name: '是',
 | 
			
		||||
						},
 | 
			
		||||
						{
 | 
			
		||||
							id: 2,
 | 
			
		||||
							name: '否',
 | 
			
		||||
						},
 | 
			
		||||
						{
 | 
			
		||||
							id: 3,
 | 
			
		||||
							name: '无排班计划',
 | 
			
		||||
						},
 | 
			
		||||
					],
 | 
			
		||||
					param: 'planType',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '搜索',
 | 
			
		||||
					name: 'search',
 | 
			
		||||
					color: 'primary',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'separate',
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
					btnName: '重置',
 | 
			
		||||
					name: 'reset',
 | 
			
		||||
				},
 | 
			
		||||
			],
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	created() {},
 | 
			
		||||
	methods: {
 | 
			
		||||
    // 获取数据列表
 | 
			
		||||
    getDataList() {
 | 
			
		||||
      deptHolidayLogList(this.listQuery).then(response => {
 | 
			
		||||
        this.tableData = response.data.list;
 | 
			
		||||
        this.listQuery.total = response.data.total;
 | 
			
		||||
      });
 | 
			
		||||
    },
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			switch (val.btnName) {
 | 
			
		||||
				case 'search':
 | 
			
		||||
					this.listQuery.pageNo = 1;
 | 
			
		||||
					this.listQuery.pageSize = 10;
 | 
			
		||||
					this.listQuery.createTime = val.createTime || [];
 | 
			
		||||
					this.listQuery.planType = val.planType || undefined;
 | 
			
		||||
					this.listQuery.opType = val.opType || undefined;
 | 
			
		||||
					this.listQuery.opPeopleName = val.opPeopleName || undefined;
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				case 'reset':
 | 
			
		||||
					this.$refs.searchBarForm.resetForm();
 | 
			
		||||
					this.listQuery = {
 | 
			
		||||
						pageSize: 10,
 | 
			
		||||
						pageNo: 1,
 | 
			
		||||
						total: 1,
 | 
			
		||||
					};
 | 
			
		||||
					this.getDataList();
 | 
			
		||||
					break;
 | 
			
		||||
				default:
 | 
			
		||||
					console.log(val);
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
							
								
								
									
										564
									
								
								src/views/group/holidaySetting/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,564 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2024-07-01 14:54:06
 | 
			
		||||
 * @LastEditors: zwq
 | 
			
		||||
 * @LastEditTime: 2025-10-27 10:18:54
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
	<el-row :gutter="10" style="background-color: #f2f4f9">
 | 
			
		||||
		<!--部门数据-->
 | 
			
		||||
		<el-col :span="4">
 | 
			
		||||
			<div class="head-container">
 | 
			
		||||
				<el-input
 | 
			
		||||
					v-model="deptName"
 | 
			
		||||
					placeholder="请输入部门名称"
 | 
			
		||||
					clearable
 | 
			
		||||
					size="small"
 | 
			
		||||
					prefix-icon="el-icon-search"
 | 
			
		||||
					style="margin-bottom: 20px" />
 | 
			
		||||
				<el-tree
 | 
			
		||||
					:data="deptOptions"
 | 
			
		||||
					:props="defaultProps"
 | 
			
		||||
					:expand-on-click-node="false"
 | 
			
		||||
					:filter-node-method="filterNode"
 | 
			
		||||
					ref="tree"
 | 
			
		||||
					default-expand-all
 | 
			
		||||
					highlight-current
 | 
			
		||||
					@node-click="handleNodeClick" />
 | 
			
		||||
			</div>
 | 
			
		||||
		</el-col>
 | 
			
		||||
		<el-col :span="20">
 | 
			
		||||
			<div class="groupTeamScheduling">
 | 
			
		||||
				<div class="operationArea">
 | 
			
		||||
					<el-row>
 | 
			
		||||
						<el-col :span="16">
 | 
			
		||||
							<div style="height: 40px; font-size: 16px">
 | 
			
		||||
								<span style="color: #409eff; font-weight: 600">
 | 
			
		||||
									{{ showDeptName }}
 | 
			
		||||
								</span>
 | 
			
		||||
								节假日设置
 | 
			
		||||
							</div>
 | 
			
		||||
						</el-col>
 | 
			
		||||
						<el-col :span="8">
 | 
			
		||||
							<div style="float: right">
 | 
			
		||||
								<el-button
 | 
			
		||||
									size="small"
 | 
			
		||||
									type="primary"
 | 
			
		||||
									style="margin-right: 10px"
 | 
			
		||||
									v-hasPermi="['base:group-holiday:create']"
 | 
			
		||||
									@click="addHoliday">
 | 
			
		||||
									新增节假日
 | 
			
		||||
								</el-button>
 | 
			
		||||
								<el-button
 | 
			
		||||
									size="small"
 | 
			
		||||
									v-hasPermi="['base:group-holiday-log:query']"
 | 
			
		||||
									@click="holidayLog">
 | 
			
		||||
									节假日变更记录
 | 
			
		||||
								</el-button>
 | 
			
		||||
							</div>
 | 
			
		||||
						</el-col>
 | 
			
		||||
					</el-row>
 | 
			
		||||
				</div>
 | 
			
		||||
				<div class="operationArea">
 | 
			
		||||
					<el-form :inline="true" class="demo-form-inline">
 | 
			
		||||
						<span class="blue-block"></span>
 | 
			
		||||
						<el-form-item label="月份选择">
 | 
			
		||||
							<el-date-picker
 | 
			
		||||
								v-model="startDay"
 | 
			
		||||
								type="month"
 | 
			
		||||
								placeholder="选择月"
 | 
			
		||||
								size="small"
 | 
			
		||||
								@change="selectMonth"
 | 
			
		||||
								:clearable="false"
 | 
			
		||||
								style="width: 120px"></el-date-picker>
 | 
			
		||||
						</el-form-item>
 | 
			
		||||
						<el-form-item style="float: right">
 | 
			
		||||
							<el-button
 | 
			
		||||
								size="small"
 | 
			
		||||
								type="primary"
 | 
			
		||||
								@click="(startDay = new Date()), getHolidayPage()">
 | 
			
		||||
								跳转到今天
 | 
			
		||||
							</el-button>
 | 
			
		||||
						</el-form-item>
 | 
			
		||||
					</el-form>
 | 
			
		||||
					<el-tag
 | 
			
		||||
						v-if="topDeptId == deptId"
 | 
			
		||||
						type="warning"
 | 
			
		||||
						closable
 | 
			
		||||
						style="margin-bottom: 10px; color: black">
 | 
			
		||||
						<i class="el-icon-warning" style="color: #ffbd02"></i>
 | 
			
		||||
						当前节假日设置为组织架构中最高层级配置,默认自动继承至下属部门。子部门可选择
 | 
			
		||||
						<span style="color: red">解除继承</span>
 | 
			
		||||
						设置后进行独立修改,复制后不再继承上级设置
 | 
			
		||||
					</el-tag>
 | 
			
		||||
				</div>
 | 
			
		||||
				<!-- 日历区域 -->
 | 
			
		||||
				<div class="calenderArea">
 | 
			
		||||
					<el-calendar v-model="startDay">
 | 
			
		||||
						<template slot="dateCell" slot-scope="{ data }">
 | 
			
		||||
							<div v-if="data.type === 'current-month'">
 | 
			
		||||
								<!-- 日期 -->
 | 
			
		||||
								<div class="dateStyle">
 | 
			
		||||
									<el-row :gutter="20">
 | 
			
		||||
										<!-- 公历和农历 -->
 | 
			
		||||
										<el-col :span="18">
 | 
			
		||||
											{{ Number(data.day.split('-')[2]) }}
 | 
			
		||||
											<div class="lunar-date">{{ getLunarDate(data.day) }}</div>
 | 
			
		||||
										</el-col>
 | 
			
		||||
										<!-- 显示假或班 -->
 | 
			
		||||
										<el-col :span="6">
 | 
			
		||||
											<div
 | 
			
		||||
												class="work-tip"
 | 
			
		||||
												:style="{
 | 
			
		||||
													backgroundColor: HolidayList[
 | 
			
		||||
														Number(data.day.split('-')[2]) - 1
 | 
			
		||||
													]?.isHoliday
 | 
			
		||||
														? '#67C23A'
 | 
			
		||||
														: '#409EFF',
 | 
			
		||||
												}">
 | 
			
		||||
												{{
 | 
			
		||||
													HolidayList[Number(data.day.split('-')[2]) - 1]
 | 
			
		||||
														?.isHoliday
 | 
			
		||||
														? '假'
 | 
			
		||||
														: '班'
 | 
			
		||||
												}}
 | 
			
		||||
											</div>
 | 
			
		||||
										</el-col>
 | 
			
		||||
										<!-- 显示假期名和操作 -->
 | 
			
		||||
										<el-col
 | 
			
		||||
											:span="24"
 | 
			
		||||
											v-if="
 | 
			
		||||
												HolidayList[Number(data.day.split('-')[2]) - 1]
 | 
			
		||||
													?.isHoliday
 | 
			
		||||
											">
 | 
			
		||||
											<div
 | 
			
		||||
												class="holiday-div"
 | 
			
		||||
												@click="
 | 
			
		||||
													new Date(data.day).getTime() > Date.now() &&
 | 
			
		||||
														showDetail(
 | 
			
		||||
															HolidayList[Number(data.day.split('-')[2]) - 1]
 | 
			
		||||
																.holidayId
 | 
			
		||||
														)
 | 
			
		||||
												">
 | 
			
		||||
												{{
 | 
			
		||||
													HolidayList[Number(data.day.split('-')[2]) - 1]
 | 
			
		||||
														?.holidayName
 | 
			
		||||
												}}
 | 
			
		||||
												<span
 | 
			
		||||
													class="holiday-div-btn"
 | 
			
		||||
													v-if="new Date(data.day).getTime() > Date.now()">
 | 
			
		||||
													<i class="el-icon-more" style="color: #fff"></i>
 | 
			
		||||
												</span>
 | 
			
		||||
											</div>
 | 
			
		||||
										</el-col>
 | 
			
		||||
									</el-row>
 | 
			
		||||
								</div>
 | 
			
		||||
							</div>
 | 
			
		||||
							<div
 | 
			
		||||
								v-else
 | 
			
		||||
								style="font-size: 20px; font-weight: 500; text-align: left">
 | 
			
		||||
								<el-row :gutter="20">
 | 
			
		||||
									<el-col :span="24">
 | 
			
		||||
										{{ Number(data.day.split('-')[2]) }}
 | 
			
		||||
										<span style="font-size: 12px">
 | 
			
		||||
											{{ getLunarDate(data.day) }}
 | 
			
		||||
										</span>
 | 
			
		||||
									</el-col>
 | 
			
		||||
								</el-row>
 | 
			
		||||
							</div>
 | 
			
		||||
						</template>
 | 
			
		||||
					</el-calendar>
 | 
			
		||||
				</div>
 | 
			
		||||
			</div>
 | 
			
		||||
		</el-col>
 | 
			
		||||
		<base-dialog
 | 
			
		||||
			:dialogTitle="dialogTitle"
 | 
			
		||||
			:dialogVisible="addOrUpdateVisible"
 | 
			
		||||
			@cancel="cancel"
 | 
			
		||||
			@confirm="handleConfirm"
 | 
			
		||||
			:before-close="cancel"
 | 
			
		||||
			:destroy-on-close="true"
 | 
			
		||||
			width="40%">
 | 
			
		||||
			<add-or-updata
 | 
			
		||||
				ref="addOrUpdataRef"
 | 
			
		||||
				@refreshPage="successSubmit"></add-or-updata>
 | 
			
		||||
			<template #footer>
 | 
			
		||||
				<slot name="footer">
 | 
			
		||||
					<el-row slot="footer" type="flex" justify="end">
 | 
			
		||||
						<el-col :span="24">
 | 
			
		||||
							<el-button
 | 
			
		||||
								v-if="!detail"
 | 
			
		||||
								size="small"
 | 
			
		||||
								class="btnTextStyle"
 | 
			
		||||
								@click="cancel">
 | 
			
		||||
								取消
 | 
			
		||||
							</el-button>
 | 
			
		||||
							<el-button
 | 
			
		||||
								v-if="!detail"
 | 
			
		||||
								type="primary"
 | 
			
		||||
								class="btnTextStyle"
 | 
			
		||||
								size="small"
 | 
			
		||||
								@click="handleConfirm">
 | 
			
		||||
								确定
 | 
			
		||||
							</el-button>
 | 
			
		||||
							<el-button
 | 
			
		||||
								v-if="detail"
 | 
			
		||||
								size="small"
 | 
			
		||||
								type="primary"
 | 
			
		||||
								class="btnTextStyle"
 | 
			
		||||
								v-hasPermi="['base:group-holiday:update']"
 | 
			
		||||
								@click="editHoliday">
 | 
			
		||||
								修改
 | 
			
		||||
							</el-button>
 | 
			
		||||
							<el-button
 | 
			
		||||
								v-if="detail"
 | 
			
		||||
								class="btnTextStyle"
 | 
			
		||||
								size="small"
 | 
			
		||||
								v-hasPermi="['base:group-holiday:delete']"
 | 
			
		||||
								@click="deleteHoliday">
 | 
			
		||||
								删除
 | 
			
		||||
							</el-button>
 | 
			
		||||
						</el-col>
 | 
			
		||||
					</el-row>
 | 
			
		||||
				</slot>
 | 
			
		||||
			</template>
 | 
			
		||||
		</base-dialog>
 | 
			
		||||
		<base-dialog
 | 
			
		||||
			dialogTitle="节假日变更记录"
 | 
			
		||||
			:dialogVisible="logVisible"
 | 
			
		||||
			@cancel="cancelLog"
 | 
			
		||||
			:before-close="cancelLog"
 | 
			
		||||
			:destroy-on-close="true"
 | 
			
		||||
			width="70%">
 | 
			
		||||
			<holiday-log ref="holidayLogRef"></holiday-log>
 | 
			
		||||
			<template #footer>
 | 
			
		||||
				<slot name="footer">
 | 
			
		||||
					<el-row slot="footer" type="flex" justify="end">
 | 
			
		||||
						<el-col :span="24">
 | 
			
		||||
							<el-button size="small" class="btnTextStyle" @click="cancelLog">
 | 
			
		||||
								取消
 | 
			
		||||
							</el-button>
 | 
			
		||||
						</el-col>
 | 
			
		||||
					</el-row>
 | 
			
		||||
				</slot>
 | 
			
		||||
			</template>
 | 
			
		||||
		</base-dialog>
 | 
			
		||||
	</el-row>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import moment from 'moment';
 | 
			
		||||
import { solarToLunar } from 'chinese-lunar';
 | 
			
		||||
 | 
			
		||||
import { getUserProfile } from '@/api/system/user';
 | 
			
		||||
import { deptHolidayList, getEnableData } from '@/api/group/holidaySetting';
 | 
			
		||||
 | 
			
		||||
import addOrUpdata from './add-or-updata.vue';
 | 
			
		||||
import holidayLog from './holidayLog';
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
	name: '',
 | 
			
		||||
	components: {
 | 
			
		||||
		addOrUpdata,
 | 
			
		||||
		holidayLog,
 | 
			
		||||
	},
 | 
			
		||||
	data() {
 | 
			
		||||
		return {
 | 
			
		||||
			startDay: '', // 查询参数
 | 
			
		||||
			HolidayList: [],
 | 
			
		||||
			// 部门树选项
 | 
			
		||||
			deptOptions: undefined,
 | 
			
		||||
			// 查询的部门名称
 | 
			
		||||
			deptName: undefined,
 | 
			
		||||
			// 选择的部门名称
 | 
			
		||||
			showDeptName: undefined,
 | 
			
		||||
			topDeptId: undefined, // 保存当前用户的部门id为最高级部门id
 | 
			
		||||
			deptId: undefined,
 | 
			
		||||
			defaultProps: {
 | 
			
		||||
				children: 'children',
 | 
			
		||||
				label: 'name',
 | 
			
		||||
			},
 | 
			
		||||
			dialogTitle: undefined,
 | 
			
		||||
			addOrUpdateVisible: false,
 | 
			
		||||
			detail: false,
 | 
			
		||||
			logVisible: false,
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
	watch: {
 | 
			
		||||
		// 根据名称筛选部门树
 | 
			
		||||
		deptName(val) {
 | 
			
		||||
			this.$refs.tree.filter(val);
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
	created() {
 | 
			
		||||
		this.startDay = new Date();
 | 
			
		||||
		// 查询用户个人信息
 | 
			
		||||
		getUserProfile().then((response) => {
 | 
			
		||||
			this.showDeptName = response.data.dept.name || '';
 | 
			
		||||
			this.topDeptId = response.data.dept.id || ''; // 保存当前用户的部门id为最高级部门id
 | 
			
		||||
			this.deptId = response.data.dept.id || '';
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
		});
 | 
			
		||||
		this.getTreeselect();
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
		getHolidayPage() {
 | 
			
		||||
			const now = new Date(this.startDay);
 | 
			
		||||
			const year = now.getFullYear();
 | 
			
		||||
			const month = now.getMonth();
 | 
			
		||||
			const startTime = `${year}-${String(month + 1).padStart(2, '0')}-01`;
 | 
			
		||||
			const lastDate = new Date(year, month + 1, 0).getDate();
 | 
			
		||||
			const endTime = `${year}-${String(month + 1).padStart(2, '0')}-${String(
 | 
			
		||||
				lastDate
 | 
			
		||||
			).padStart(2, '0')}`;
 | 
			
		||||
 | 
			
		||||
			this.HolidayList = [];
 | 
			
		||||
			deptHolidayList({
 | 
			
		||||
				deptId: this.deptId,
 | 
			
		||||
				startTime: Date.parse(startTime),
 | 
			
		||||
				endTime: Date.parse(endTime),
 | 
			
		||||
			}).then((res) => {
 | 
			
		||||
				this.HolidayList = res.data;
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		// 切换月份
 | 
			
		||||
		selectMonth() {
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
		},
 | 
			
		||||
		/** 查询部门下拉树结构 */
 | 
			
		||||
		getTreeselect() {
 | 
			
		||||
			getEnableData().then((response) => {
 | 
			
		||||
				// 处理 deptOptions 参数
 | 
			
		||||
				this.deptOptions = [];
 | 
			
		||||
				this.deptOptions.push(...this.handleTree(response.data, 'id'));
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		// 筛选节点
 | 
			
		||||
		filterNode(value, data) {
 | 
			
		||||
			if (!value) return true;
 | 
			
		||||
			return data.name.indexOf(value) !== -1;
 | 
			
		||||
		},
 | 
			
		||||
		// 节点单击事件
 | 
			
		||||
		handleNodeClick(data) {
 | 
			
		||||
			this.deptId = data.id;
 | 
			
		||||
			this.showDeptName = data.name;
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
		},
 | 
			
		||||
		//获取农历
 | 
			
		||||
		getLunarDate(solarDate) {
 | 
			
		||||
			try {
 | 
			
		||||
				const [year, month, day] = solarDate.split('-').map(Number);
 | 
			
		||||
 | 
			
		||||
				const date = new Date(year, month - 1, day);
 | 
			
		||||
				const lunar = solarToLunar(date);
 | 
			
		||||
 | 
			
		||||
				// 将数字月份和日期转换为中文
 | 
			
		||||
				const monthMap = {
 | 
			
		||||
					1: '正',
 | 
			
		||||
					2: '二',
 | 
			
		||||
					3: '三',
 | 
			
		||||
					4: '四',
 | 
			
		||||
					5: '五',
 | 
			
		||||
					6: '六',
 | 
			
		||||
					7: '七',
 | 
			
		||||
					8: '八',
 | 
			
		||||
					9: '九',
 | 
			
		||||
					10: '十',
 | 
			
		||||
					11: '冬',
 | 
			
		||||
					12: '腊',
 | 
			
		||||
				};
 | 
			
		||||
 | 
			
		||||
				const dayMap = {
 | 
			
		||||
					1: '初一',
 | 
			
		||||
					2: '初二',
 | 
			
		||||
					3: '初三',
 | 
			
		||||
					4: '初四',
 | 
			
		||||
					5: '初五',
 | 
			
		||||
					6: '初六',
 | 
			
		||||
					7: '初七',
 | 
			
		||||
					8: '初八',
 | 
			
		||||
					9: '初九',
 | 
			
		||||
					10: '初十',
 | 
			
		||||
					11: '十一',
 | 
			
		||||
					12: '十二',
 | 
			
		||||
					13: '十三',
 | 
			
		||||
					14: '十四',
 | 
			
		||||
					15: '十五',
 | 
			
		||||
					16: '十六',
 | 
			
		||||
					17: '十七',
 | 
			
		||||
					18: '十八',
 | 
			
		||||
					19: '十九',
 | 
			
		||||
					20: '二十',
 | 
			
		||||
					21: '廿一',
 | 
			
		||||
					22: '廿二',
 | 
			
		||||
					23: '廿三',
 | 
			
		||||
					24: '廿四',
 | 
			
		||||
					25: '廿五',
 | 
			
		||||
					26: '廿六',
 | 
			
		||||
					27: '廿七',
 | 
			
		||||
					28: '廿八',
 | 
			
		||||
					29: '廿九',
 | 
			
		||||
					30: '三十',
 | 
			
		||||
				};
 | 
			
		||||
 | 
			
		||||
				// 返回 "三月初四" 格式
 | 
			
		||||
				return `${monthMap[lunar.month]}月${dayMap[lunar.day]}`;
 | 
			
		||||
			} catch (error) {
 | 
			
		||||
				console.log(error);
 | 
			
		||||
				return '';
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		addHoliday() {
 | 
			
		||||
			this.addOrUpdateVisible = true;
 | 
			
		||||
			this.detail = false;
 | 
			
		||||
			this.dialogTitle = '新增节假日';
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.$refs.addOrUpdataRef.init(this.deptId);
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		holidayLog() {
 | 
			
		||||
			this.logVisible = true;
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.$refs.holidayLogRef.getDataList();
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		cancel() {
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
			this.addOrUpdateVisible = false;
 | 
			
		||||
		},
 | 
			
		||||
		successSubmit() {
 | 
			
		||||
			this.cancel();
 | 
			
		||||
			this.getHolidayPage();
 | 
			
		||||
		},
 | 
			
		||||
		handleConfirm() {
 | 
			
		||||
			this.$refs.addOrUpdataRef.dataFormSubmit();
 | 
			
		||||
		},
 | 
			
		||||
		showDetail(id) {
 | 
			
		||||
			this.addOrUpdateVisible = true;
 | 
			
		||||
			this.detail = true;
 | 
			
		||||
			this.dialogTitle = '节假日详情';
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.$refs.addOrUpdataRef.init(this.deptId, id, true);
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		editHoliday() {
 | 
			
		||||
			this.detail = false;
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.$refs.addOrUpdataRef.editHoliday();
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		deleteHoliday() {
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
				this.$refs.addOrUpdataRef.deleteHoliday();
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
		cancelLog() {
 | 
			
		||||
			this.logVisible = false;
 | 
			
		||||
		},
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style lang="scss">
 | 
			
		||||
.head-container {
 | 
			
		||||
	padding: 20px 10px 0;
 | 
			
		||||
	background-color: #fff;
 | 
			
		||||
	min-height: calc(100vh - 120px - 8px);
 | 
			
		||||
	border-radius: 8px;
 | 
			
		||||
}
 | 
			
		||||
.groupTeamScheduling {
 | 
			
		||||
	.operationArea {
 | 
			
		||||
		padding: 14px 10px 0 16px;
 | 
			
		||||
		margin-bottom: 8px;
 | 
			
		||||
		background-color: #fff;
 | 
			
		||||
		border-radius: 8px;
 | 
			
		||||
		.blue-block {
 | 
			
		||||
			display: inline-block;
 | 
			
		||||
			width: 4px;
 | 
			
		||||
			height: 16px;
 | 
			
		||||
			background-color: #0b58ff;
 | 
			
		||||
			border-radius: 1px;
 | 
			
		||||
			margin-right: 8px;
 | 
			
		||||
			margin-top: 10px;
 | 
			
		||||
		}
 | 
			
		||||
		.el-form-item {
 | 
			
		||||
			margin-bottom: 10px;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	// 日历
 | 
			
		||||
	.calenderArea {
 | 
			
		||||
		padding: 14px 10px 0 20px;
 | 
			
		||||
		background-color: #fff;
 | 
			
		||||
		border-radius: 8px;
 | 
			
		||||
		min-height: calc(100vh - 120px - 8px - 168px);
 | 
			
		||||
		.el-calendar__body {
 | 
			
		||||
			padding: 10px 16px 16px 0;
 | 
			
		||||
		}
 | 
			
		||||
		.el-calendar__header {
 | 
			
		||||
			display: none;
 | 
			
		||||
		}
 | 
			
		||||
		.el-calendar-table > thead {
 | 
			
		||||
			height: 48px;
 | 
			
		||||
			font-size: 20px;
 | 
			
		||||
			font-weight: 500;
 | 
			
		||||
			color: #000000;
 | 
			
		||||
			background-color: rgba(242, 244, 249, 1);
 | 
			
		||||
		}
 | 
			
		||||
		.el-calendar-table__row {
 | 
			
		||||
			height: 133px;
 | 
			
		||||
			.prev,
 | 
			
		||||
			.next {
 | 
			
		||||
				pointer-events: none;
 | 
			
		||||
			}
 | 
			
		||||
			.is-selected,
 | 
			
		||||
			.is-today {
 | 
			
		||||
				background-color: #e4f0fd;
 | 
			
		||||
			}
 | 
			
		||||
			.el-calendar-day {
 | 
			
		||||
				padding: 0;
 | 
			
		||||
				height: 100%;
 | 
			
		||||
				:hover {
 | 
			
		||||
					background-color: #e4f0fd;
 | 
			
		||||
				}
 | 
			
		||||
				.dateStyle {
 | 
			
		||||
					font-size: 20px;
 | 
			
		||||
					font-weight: 500;
 | 
			
		||||
					color: #000000;
 | 
			
		||||
					text-align: left;
 | 
			
		||||
					height: 133px;
 | 
			
		||||
					line-height: 28px;
 | 
			
		||||
					padding: 10px;
 | 
			
		||||
 | 
			
		||||
					.lunar-date {
 | 
			
		||||
						display: inline-block;
 | 
			
		||||
						font-size: 12px;
 | 
			
		||||
						color: #909399;
 | 
			
		||||
					}
 | 
			
		||||
					.work-tip {
 | 
			
		||||
						background: #87c1ff;
 | 
			
		||||
						color: white;
 | 
			
		||||
						font-size: 18px;
 | 
			
		||||
						width: 30px;
 | 
			
		||||
						text-align: center;
 | 
			
		||||
						float: right;
 | 
			
		||||
					}
 | 
			
		||||
					.holiday-div {
 | 
			
		||||
						background-color: #67c23a;
 | 
			
		||||
						border-radius: 3px;
 | 
			
		||||
						height: 25px;
 | 
			
		||||
						text-align: center;
 | 
			
		||||
						line-height: 24px;
 | 
			
		||||
						color: #fff;
 | 
			
		||||
						.holiday-div-btn {
 | 
			
		||||
							float: right;
 | 
			
		||||
							transform: rotate(90deg);
 | 
			
		||||
							font-size: 14px;
 | 
			
		||||
							pointer-events: none;
 | 
			
		||||
						}
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
@@ -3,16 +3,17 @@
 | 
			
		||||
    <div class='count-box'>
 | 
			
		||||
      <div class='count-tip-box'>
 | 
			
		||||
        <div class='item'>
 | 
			
		||||
          <p class='num'>2,344</p>
 | 
			
		||||
          <p class='num'> {{ totalDownLoadNumClass ? totalDownLoadNumClass  : 0}}</p>
 | 
			
		||||
          <p class='title'>本班合计</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class='split'></div>
 | 
			
		||||
        <div class='item'>
 | 
			
		||||
          <p class='num'>2,344</p>
 | 
			
		||||
          <p class='num'>{{ totalDownLoadNumDay ? totalDownLoadNumDay : 0 }} </p>
 | 
			
		||||
          <p class='title'>本日合计</p>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <dv-scroll-board :config="config" style="width:580px;height:180px;margin-top: 10px;"  class='count-table'/>
 | 
			
		||||
      <dv-scroll-board ref="locationScrollBoardTable" :config="config" style="width:580px;height:180px;margin-top: 10px;"
 | 
			
		||||
        class='count-table' />
 | 
			
		||||
      <span class='split-line' style='left: 70px;'></span>
 | 
			
		||||
      <span class='split-line' style='left: 195px;'></span>
 | 
			
		||||
      <span class='split-line' style='left: 320px;'></span>
 | 
			
		||||
@@ -26,9 +27,64 @@ export default {
 | 
			
		||||
  name: 'Count',
 | 
			
		||||
  components: {
 | 
			
		||||
    ModelBox
 | 
			
		||||
  },
 | 
			
		||||
    props: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => []
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      handler(newVal, oldVal) {
 | 
			
		||||
        console.log(newVal, 'newVal');
 | 
			
		||||
        if (newVal) {
 | 
			
		||||
          this.totalGlassNum = 0;
 | 
			
		||||
          this.tableData = [];
 | 
			
		||||
          // 累加所有项目的downLoadNumDay
 | 
			
		||||
          this.totalDownLoadNumDay = 0;
 | 
			
		||||
          this.totalDownLoadNumClass = 0
 | 
			
		||||
          // 遍历每条产线数据
 | 
			
		||||
          newVal.forEach(item => {
 | 
			
		||||
            // 计算当前项目的glassNum总和
 | 
			
		||||
            const glassArray = JSON.parse(item.glassNum);
 | 
			
		||||
            const itemGlassSum = glassArray.reduce((sum, num) => sum + num, 0);
 | 
			
		||||
            this.tableData.push({
 | 
			
		||||
              lineName: item.lineName,
 | 
			
		||||
              glassSum: itemGlassSum,
 | 
			
		||||
              downLoadNumDay:item.downLoadNumDay,
 | 
			
		||||
              downLoadNumClass: item.downLoadNumClass
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            // 累加downLoadNumDay
 | 
			
		||||
            this.totalDownLoadNumDay += item.downLoadNumDay;
 | 
			
		||||
            this.totalDownLoadNumClass += item.downLoadNumClass;
 | 
			
		||||
 | 
			
		||||
          });
 | 
			
		||||
          let eqArr = this.tableData.map((item, index) => [
 | 
			
		||||
            `<span style="color:#000;" >${index+1 || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;" >${item.lineName || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            // formatDate(item.planStartTime) || '',
 | 
			
		||||
            `
 | 
			
		||||
          <span style="color:#000;" >${item.downLoadNumClass || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;">${item.downLoadNumDay || ''}</span>`,
 | 
			
		||||
            `<span style="color:#000;">${item.glassSum || ''}</span>`,
 | 
			
		||||
          ])
 | 
			
		||||
          this.config.data = eqArr
 | 
			
		||||
          this.$refs['locationScrollBoardTable'].updateRows(eqArr)
 | 
			
		||||
        }
 | 
			
		||||
        // this.getChart(this.todayClass)
 | 
			
		||||
      },
 | 
			
		||||
      deep: true  // 深度监听
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      totalDownLoadNumDay: 0,
 | 
			
		||||
      totalDownLoadNumClass:0,
 | 
			
		||||
      config:{
 | 
			
		||||
        header: ['<span style="color:#000;">序号</span>', '<span style="color:#000;">产线</span>', '<span style="color:#000;">本班</span>', '<span style="color:#000;">本日</span>', '<span style="color:#000;">一托玻璃数量</span>'],
 | 
			
		||||
        headerHeight: 30,
 | 
			
		||||
@@ -39,11 +95,6 @@ export default {
 | 
			
		||||
        columnWidth: [70, 125, 125, 125, 130],
 | 
			
		||||
        align	: ['center', 'center', 'center', 'center', 'center'],
 | 
			
		||||
        data: [
 | 
			
		||||
          ['<span style="color:#000;">1</span>', '<span style="color:#000;">A1</span>', '<span style="color:#000;">23</span>', '<span style="color:#000;">234</span>', '<span style="color:#000;">234</span>'],
 | 
			
		||||
          ['<span style="color:#000;">2</span>', '<span style="color:#000;">A2</span>', '<span style="color:#000;">13</span>', '<span style="color:#000;">234</span>','<span style="color:#000;">234</span>'],
 | 
			
		||||
          ['<span style="color:#000;">3</span>', '<span style="color:#000;">A3</span>', '<span style="color:#000;">24</span>', '<span style="color:#000;">234</span>', '<span style="color:#000;">234</span>'],
 | 
			
		||||
          ['<span style="color:#000;">4</span>', '<span style="color:#000;">A4</span>', '<span style="color:#000;">45</span>', '<span style="color:#000;">234</span>', '<span style="color:#000;">234</span>'],
 | 
			
		||||
          ['<span style="color:#000;">5</span>', '<span style="color:#000;">A5</span>', '<span style="color:#000;">55</span>', '<span style="color:#000;">234</span>', '<span style="color:#000;">234</span>']
 | 
			
		||||
        ]
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <ModelBox name='1-2'>
 | 
			
		||||
    <div class='eq-alarm'>
 | 
			
		||||
      <dv-scroll-board :config="config" style="width:580px;height:250px;margin-top: 10px;" />
 | 
			
		||||
      <dv-scroll-board ref='locationScrollBoard' :config="config" style="width:580px;height:250px;margin-top: 10px;" />
 | 
			
		||||
      <span class='split-line' style='left: 66px;'></span>
 | 
			
		||||
      <span class='split-line' style='left: 226px;'></span>
 | 
			
		||||
      <span class='split-line' style='left: 366px;'></span>
 | 
			
		||||
@@ -15,8 +15,39 @@ export default {
 | 
			
		||||
  components: {
 | 
			
		||||
    ModelBox
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => []
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      handler(newVal, oldVal) {
 | 
			
		||||
        console.log(newVal, 'newVal');
 | 
			
		||||
        if (newVal) {
 | 
			
		||||
          this.tableData = newVal
 | 
			
		||||
          let eqArr = this.tableData.map((item, index) => [
 | 
			
		||||
            `<span style="color:#000;" >${index + 1 || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            // formatDate(item.planStartTime) || '',
 | 
			
		||||
            `
 | 
			
		||||
          <span style="color:#000;" >${this.formatDate(item.time)  || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;">${item.equipmentName || ''}</span>`,
 | 
			
		||||
            `<span style="color:#000;">${item.content || ''}</span>`,
 | 
			
		||||
          ])
 | 
			
		||||
          this.config.data = eqArr
 | 
			
		||||
          this.$refs['locationScrollBoard'].updateRows(eqArr)
 | 
			
		||||
        }
 | 
			
		||||
        // this.getChart(this.todayClass)
 | 
			
		||||
      },
 | 
			
		||||
      deep: true  // 深度监听
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      tableData:[],
 | 
			
		||||
      config:{
 | 
			
		||||
        header: ['<span style="color:#000;">序号</span>', '<span style="color:#000;">报警时间</span>', '<span style="color:#000;">报警设备</span>', '<span style="color:#000;">报警内容</span>'],
 | 
			
		||||
        headerHeight: 25,
 | 
			
		||||
@@ -27,14 +58,6 @@ export default {
 | 
			
		||||
        columnWidth: [66, 160, 140, 214],
 | 
			
		||||
        align	: ['center', 'center', 'center', 'center'],
 | 
			
		||||
        data: [
 | 
			
		||||
          ['<span style="color:#000;">1</span>', '<span style="color:#000;">2014/12/28 19:20</span>', '<span style="color:#000;">A-1打孔机</span>', '<span style="color:#000;">各种报警内容</span>'],
 | 
			
		||||
          ['<span style="color:#000;">2</span>', '<span style="color:#000;">2014/12/28 19:20</span>', '<span style="color:#000;">A-2打孔机</span>', '<span style="color:#000;">各种报警内容</span>'],
 | 
			
		||||
          ['<span style="color:#000;">3</span>', '<span style="color:#000;">2014/12/28 19:20</span>', '<span style="color:#000;">A-2打孔机</span>', '<span style="color:#000;">各种报警内容</span>'],
 | 
			
		||||
          ['<span style="color:#000;">4</span>', '<span style="color:#000;">2014/12/28 19:20</span>', '<span style="color:#000;">A-2打孔机</span>', '<span style="color:#000;">各种报警内容</span>'],
 | 
			
		||||
          ['<span style="color:#000;">5</span>', '<span style="color:#000;">2014/12/28 19:20</span>', '<span style="color:#000;">A-2打孔机</span>', '<span style="color:#000;">各种报警内容</span>'],
 | 
			
		||||
          ['<span style="color:#000;">6</span>', '<span style="color:#000;">2014/12/28 19:20</span>', '<span style="color:#000;">A-2打孔机</span>', '<span style="color:#000;">各种报警内容</span>'],
 | 
			
		||||
          ['<span style="color:#000;">7</span>', '<span style="color:#000;">2014/12/28 19:20</span>', '<span style="color:#000;">A-2打孔机</span>', '<span style="color:#000;">各种报警内容</span>'],
 | 
			
		||||
          ['<span style="color:#000;">8</span>', '<span style="color:#000;">2014/12/28 19:20</span>', '<span style="color:#000;">A-2打孔机</span>', '<span style="color:#000;">各种报警内容</span>']
 | 
			
		||||
        ]
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
@@ -42,6 +65,25 @@ export default {
 | 
			
		||||
  methods: {
 | 
			
		||||
    init() {
 | 
			
		||||
 | 
			
		||||
    },
 | 
			
		||||
    formatDate(time) {
 | 
			
		||||
      if (!time) return '';
 | 
			
		||||
 | 
			
		||||
      // 如果是时间戳格式
 | 
			
		||||
      if (typeof time === 'number' || !isNaN(time)) {
 | 
			
		||||
        const date = new Date(parseInt(time));
 | 
			
		||||
        return `${date.getFullYear()}/${(date.getMonth() + 1).toString().padStart(2, '0')}/${date.getDate().toString().padStart(2, '0')} ${date.getHours().toString().padStart(2, '0')}:${date.getMinutes().toString().padStart(2, '0')}`;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // 如果是ISO字符串格式
 | 
			
		||||
      if (typeof time === 'string') {
 | 
			
		||||
        const date = new Date(time);
 | 
			
		||||
        if (!isNaN(date.getTime())) {
 | 
			
		||||
          return `${date.getFullYear()}/${(date.getMonth() + 1).toString().padStart(2, '0')}/${date.getDate().toString().padStart(2, '0')} ${date.getHours().toString().padStart(2, '0')}:${date.getMinutes().toString().padStart(2, '0')}`;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return time;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@
 | 
			
		||||
    <div class='line-container'>
 | 
			
		||||
      <div class='table-box'>
 | 
			
		||||
        <div class='title'>本班次</div>
 | 
			
		||||
        <dv-scroll-board :config="config" style="width:600px;height:242px;margin-top: 10px;"/>
 | 
			
		||||
        <dv-scroll-board ref="classToday" :config="classConfig" style="width:600px;height:242px;margin-top: 10px;" />
 | 
			
		||||
        <span class='split-line' style='left: 66px;'></span>
 | 
			
		||||
        <span class='split-line' style='left: 186px;'></span>
 | 
			
		||||
        <span class='split-line' style='left: 311px;'></span>
 | 
			
		||||
@@ -11,7 +11,7 @@
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class='table-box'>
 | 
			
		||||
        <div class='title'>本日</div>
 | 
			
		||||
        <dv-scroll-board :config="config" style="width:600px;height:242px;margin-top: 10px;"/>
 | 
			
		||||
        <dv-scroll-board ref="day" :config="dayConfig" style="width:600px;height:242px;margin-top: 10px;" />
 | 
			
		||||
        <span class='split-line' style='left: 66px;'></span>
 | 
			
		||||
        <span class='split-line' style='left: 186px;'></span>
 | 
			
		||||
        <span class='split-line' style='left: 311px;'></span>
 | 
			
		||||
@@ -19,7 +19,7 @@
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class='table-box'>
 | 
			
		||||
        <div class='title'>本周</div>
 | 
			
		||||
        <dv-scroll-board :config="config" style="width:600px;height:242px;margin-top: 10px;"/>
 | 
			
		||||
        <dv-scroll-board ref="week" :config="weekConfig" style="width:600px;height:242px;margin-top: 10px;" />
 | 
			
		||||
        <span class='split-line' style='left: 66px;'></span>
 | 
			
		||||
        <span class='split-line' style='left: 186px;'></span>
 | 
			
		||||
        <span class='split-line' style='left: 311px;'></span>
 | 
			
		||||
@@ -27,7 +27,7 @@
 | 
			
		||||
      </div>
 | 
			
		||||
      <div class='table-box'>
 | 
			
		||||
        <div class='title'>本月</div>
 | 
			
		||||
        <dv-scroll-board :config="config" style="width:600px;height:242px;margin-top: 10px;"/>
 | 
			
		||||
        <dv-scroll-board ref="month" :config="monthConfig" style="width:600px;height:242px;margin-top: 10px;" />
 | 
			
		||||
        <span class='split-line' style='left: 66px;'></span>
 | 
			
		||||
        <span class='split-line' style='left: 186px;'></span>
 | 
			
		||||
        <span class='split-line' style='left: 311px;'></span>
 | 
			
		||||
@@ -43,9 +43,105 @@ export default {
 | 
			
		||||
  components: {
 | 
			
		||||
    ModelBox
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      type: Object,
 | 
			
		||||
      default: () => {}
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      handler(newVal, oldVal) {
 | 
			
		||||
        console.log(newVal, 'newVal');
 | 
			
		||||
        if (newVal) {
 | 
			
		||||
          this.nowMonth = newVal.todayClass ? newVal.nowMonth.map((item, index) => [
 | 
			
		||||
            `<span style="color:#000;" >${index + 1 || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;" >${item.name || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            // formatDate(item.planStartTime) || '',
 | 
			
		||||
            `
 | 
			
		||||
          <span style="color:#000;" >${item.inputNum || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;">${item.outputNum || ''}</span>`,
 | 
			
		||||
            `<div style="width:136px; margin:0px;">
 | 
			
		||||
          <div style="display:inline-block;height:8px; background:#D8DEEB; border-radius:4px; overflow:hidden;text-align:left;width:90px">
 | 
			
		||||
            <div style="width:${item.inputOutputRate}%; height:100%; background:#0B58FF;border-radius:4px;"></div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <span style="display:inline-block;margin-left:10px; color:#000; font-size:14px;">${item.inputOutputRate}%</span>
 | 
			
		||||
        </div>`,
 | 
			
		||||
          ]) : []
 | 
			
		||||
          this.monthConfig.data = this.nowMonth
 | 
			
		||||
          this.$refs['month'].updateRows(this.nowMonth)
 | 
			
		||||
          this.nowWeek = newVal.nowWeek ? newVal.nowWeek.map((item, index) => [
 | 
			
		||||
            `<span style="color:#000;" >${index + 1 || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;" >${item.name || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            // formatDate(item.planStartTime) || '',
 | 
			
		||||
            `
 | 
			
		||||
          <span style="color:#000;" >${item.inputNum || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;">${item.outputNum || ''}</span>`,
 | 
			
		||||
            `<div style="width:136px; margin:0px;">
 | 
			
		||||
          <div style="display:inline-block;height:8px; background:#D8DEEB; border-radius:4px; overflow:hidden;text-align:left;width:90px">
 | 
			
		||||
            <div style="width:${item.inputOutputRate}%; height:100%; background:#0B58FF;border-radius:4px;"></div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <span style="display:inline-block;margin-left:10px; color:#000; font-size:14px;">${item.inputOutputRate}%</span>
 | 
			
		||||
        </div>`,
 | 
			
		||||
          ]) : []
 | 
			
		||||
          this.weekConfig.data = this.nowWeek
 | 
			
		||||
          this.$refs['week'].updateRows(this.nowWeek)
 | 
			
		||||
          this.oneDay = newVal.oneDay ? newVal.oneDay.map((item, index) => [
 | 
			
		||||
            `<span style="color:#000;" >${index + 1 || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;" >${item.name || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            // formatDate(item.planStartTime) || '',
 | 
			
		||||
            `
 | 
			
		||||
          <span style="color:#000;" >${item.inputNum || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;">${item.outputNum || ''}</span>`,
 | 
			
		||||
            `<div style="width:136px; margin:0px;">
 | 
			
		||||
          <div style="display:inline-block;height:8px; background:#D8DEEB; border-radius:4px; overflow:hidden;text-align:left;width:90px">
 | 
			
		||||
            <div style="width:${item.inputOutputRate}%; height:100%; background:#0B58FF;border-radius:4px;"></div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <span style="display:inline-block;margin-left:10px; color:#000; font-size:14px;">${item.inputOutputRate}%</span>
 | 
			
		||||
        </div>`,
 | 
			
		||||
          ]) : []
 | 
			
		||||
          this.dayConfig.data = this.oneDay
 | 
			
		||||
          this.$refs['day'].updateRows(this.oneDay)
 | 
			
		||||
          this.todayClass = newVal.todayClass ? newVal.todayClass.map((item, index) => [
 | 
			
		||||
            `<span style="color:#000;" >${index + 1 || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;" >${item.name || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            // formatDate(item.planStartTime) || '',
 | 
			
		||||
            `
 | 
			
		||||
          <span style="color:#000;" >${item.inputNum || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:#000;">${item.outputNum || ''}</span>`,
 | 
			
		||||
            `<div style="width:136px; margin:0px;">
 | 
			
		||||
          <div style="display:inline-block;height:8px; background:#D8DEEB; border-radius:4px; overflow:hidden;text-align:left;width:90px">
 | 
			
		||||
            <div style="width:${item.inputOutputRate}%; height:100%; background:#0B58FF;border-radius:4px;"></div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <span style="display:inline-block;margin-left:10px; color:#000; font-size:14px;">${item.inputOutputRate}%</span>
 | 
			
		||||
        </div>`,
 | 
			
		||||
          ]) : []
 | 
			
		||||
          this.classConfig.data = this.todayClass
 | 
			
		||||
          this.$refs['classToday'].updateRows(this.todayClass)
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      deep: true  // 深度监听
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      config:{
 | 
			
		||||
      nowMonth: [],
 | 
			
		||||
      nowWeek: [],
 | 
			
		||||
      oneDay: [],
 | 
			
		||||
      todayClass: [],
 | 
			
		||||
      classConfig:{
 | 
			
		||||
        header: ['<span style="color:#000;">序号</span>', '<span style="color:#000;">工段</span>', '<span style="color:#000;">投入数量/片</span>', '<span style="color:#000;">产出数量/片</span>','<span style="color:#000;">产出率/%</span>'],
 | 
			
		||||
        headerHeight: 25,
 | 
			
		||||
        headerBGC: '#E8EDF8',
 | 
			
		||||
@@ -55,7 +151,41 @@ export default {
 | 
			
		||||
        columnWidth: [66, 120, 125, 126, 174],
 | 
			
		||||
        align	: ['center', 'center', 'center', 'center', 'center'],
 | 
			
		||||
        data: []
 | 
			
		||||
      },
 | 
			
		||||
      monthConfig: {
 | 
			
		||||
        header: ['<span style="color:#000;">序号</span>', '<span style="color:#000;">工段</span>', '<span style="color:#000;">投入数量/片</span>', '<span style="color:#000;">产出数量/片</span>', '<span style="color:#000;">产出率/%</span>'],
 | 
			
		||||
        headerHeight: 25,
 | 
			
		||||
        headerBGC: '#E8EDF8',
 | 
			
		||||
        oddRowBGC: '#E8EDF8',
 | 
			
		||||
        evenRowBGC: '#fff',
 | 
			
		||||
        rowNum: 8,
 | 
			
		||||
        columnWidth: [66, 120, 125, 126, 174],
 | 
			
		||||
        align: ['center', 'center', 'center', 'center', 'center'],
 | 
			
		||||
        data: []
 | 
			
		||||
      },
 | 
			
		||||
      dayConfig: {
 | 
			
		||||
        header: ['<span style="color:#000;">序号</span>', '<span style="color:#000;">工段</span>', '<span style="color:#000;">投入数量/片</span>', '<span style="color:#000;">产出数量/片</span>', '<span style="color:#000;">产出率/%</span>'],
 | 
			
		||||
        headerHeight: 25,
 | 
			
		||||
        headerBGC: '#E8EDF8',
 | 
			
		||||
        oddRowBGC: '#E8EDF8',
 | 
			
		||||
        evenRowBGC: '#fff',
 | 
			
		||||
        rowNum: 8,
 | 
			
		||||
        columnWidth: [66, 120, 125, 126, 174],
 | 
			
		||||
        align: ['center', 'center', 'center', 'center', 'center'],
 | 
			
		||||
        data: []
 | 
			
		||||
      },
 | 
			
		||||
      weekConfig: {
 | 
			
		||||
        header: ['<span style="color:#000;">序号</span>', '<span style="color:#000;">工段</span>', '<span style="color:#000;">投入数量/片</span>', '<span style="color:#000;">产出数量/片</span>', '<span style="color:#000;">产出率/%</span>'],
 | 
			
		||||
        headerHeight: 25,
 | 
			
		||||
        headerBGC: '#E8EDF8',
 | 
			
		||||
        oddRowBGC: '#E8EDF8',
 | 
			
		||||
        evenRowBGC: '#fff',
 | 
			
		||||
        rowNum: 8,
 | 
			
		||||
        columnWidth: [66, 120, 125, 126, 174],
 | 
			
		||||
        align: ['center', 'center', 'center', 'center', 'center'],
 | 
			
		||||
        data: []
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
@@ -63,33 +193,33 @@ export default {
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    getData() {
 | 
			
		||||
      let arr1 = []
 | 
			
		||||
      let arr2 = []
 | 
			
		||||
      let data = [
 | 
			
		||||
        [1,'A1-磨边',234344,234333,100],
 | 
			
		||||
        [2,'A1-磨边',234344,234333,10],
 | 
			
		||||
        [3,'A1-磨边',234344,234333,96],
 | 
			
		||||
        [4,'A1-磨边',234344,234333,20],
 | 
			
		||||
        [5,'A1-磨边',234344,234333,40],
 | 
			
		||||
        [6,'A1-磨边',234344,234333,90],
 | 
			
		||||
        [7,'A1-磨边',234344,234333,80],
 | 
			
		||||
        [8,'A1-磨边',234344,234333,80],
 | 
			
		||||
      ]
 | 
			
		||||
      for (let i =0; i < data.length; i++) {
 | 
			
		||||
        arr1.push(`<span style="color:#000;">${data[i][0]}</span>`)
 | 
			
		||||
        arr1.push(`<span style="color:#000;">${data[i][1]}</span>`)
 | 
			
		||||
        arr1.push(`<span style="color:#000;">${data[i][2]}</span>`)
 | 
			
		||||
        arr1.push(`<span style="color:#000;">${data[i][3]}</span>`)
 | 
			
		||||
        arr1.push(`<div style="width:136px; margin:0px;">
 | 
			
		||||
          <div style="display:inline-block;height:8px; background:#D8DEEB; border-radius:4px; overflow:hidden;text-align:left;width:90px">
 | 
			
		||||
            <div style="width:${data[i][4]}%; height:100%; background:#0B58FF;border-radius:4px;"></div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <span style="display:inline-block;margin-left:10px; color:#000; font-size:14px;">${data[i][4]}%</span>
 | 
			
		||||
        </div>`)
 | 
			
		||||
        arr2.push(arr1)
 | 
			
		||||
        arr1 = []
 | 
			
		||||
      }
 | 
			
		||||
      this.config.data = arr2
 | 
			
		||||
      // let arr1 = []
 | 
			
		||||
      // let arr2 = []
 | 
			
		||||
      // let data = [
 | 
			
		||||
      //   [1,'A1-磨边',234344,234333,100],
 | 
			
		||||
      //   [2,'A1-磨边',234344,234333,10],
 | 
			
		||||
      //   [3,'A1-磨边',234344,234333,96],
 | 
			
		||||
      //   [4,'A1-磨边',234344,234333,20],
 | 
			
		||||
      //   [5,'A1-磨边',234344,234333,40],
 | 
			
		||||
      //   [6,'A1-磨边',234344,234333,90],
 | 
			
		||||
      //   [7,'A1-磨边',234344,234333,80],
 | 
			
		||||
      //   [8,'A1-磨边',234344,234333,80],
 | 
			
		||||
      // ]
 | 
			
		||||
      // for (let i =0; i < data.length; i++) {
 | 
			
		||||
      //   arr1.push(`<span style="color:#000;">${data[i][0]}</span>`)
 | 
			
		||||
      //   arr1.push(`<span style="color:#000;">${data[i][1]}</span>`)
 | 
			
		||||
      //   arr1.push(`<span style="color:#000;">${data[i][2]}</span>`)
 | 
			
		||||
      //   arr1.push(`<span style="color:#000;">${data[i][3]}</span>`)
 | 
			
		||||
      //   arr1.push(`<div style="width:136px; margin:0px;">
 | 
			
		||||
      //     <div style="display:inline-block;height:8px; background:#D8DEEB; border-radius:4px; overflow:hidden;text-align:left;width:90px">
 | 
			
		||||
      //       <div style="width:${data[i][4]}%; height:100%; background:#0B58FF;border-radius:4px;"></div>
 | 
			
		||||
      //     </div>
 | 
			
		||||
      //     <span style="display:inline-block;margin-left:10px; color:#000; font-size:14px;">${data[i][4]}%</span>
 | 
			
		||||
      //   </div>`)
 | 
			
		||||
      //   arr2.push(arr1)
 | 
			
		||||
      //   arr1 = []
 | 
			
		||||
      // }
 | 
			
		||||
      // this.config.data = arr2
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -22,19 +22,38 @@ export default {
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      legendArr:[
 | 
			
		||||
        {color:'#FFCE6A', name:'A1'},
 | 
			
		||||
        {color:'#21CECD', name:'A2'},
 | 
			
		||||
        {color:'#77B4FD', name:'A3'},
 | 
			
		||||
        {color:'#29BDFA', name:'A4'},
 | 
			
		||||
        {color:'#5A7DDA', name:'A5'},
 | 
			
		||||
        {color:'#FFB49D', name:'A6'},
 | 
			
		||||
        {color:'#C5A6FC', name:'A7'},
 | 
			
		||||
        {color:'#7164FF', name:'A8'},
 | 
			
		||||
        {color:'#98B0C7', name:'A9'},
 | 
			
		||||
        {color:'#5D7092', name:'A10'}
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      handler(newVal, oldVal) {
 | 
			
		||||
        console.log(newVal, 'newVal');
 | 
			
		||||
        if (newVal) {
 | 
			
		||||
          let xData = []
 | 
			
		||||
          newVal.forEach(ele => {
 | 
			
		||||
            xData.push(this.formatDate(ele.time))
 | 
			
		||||
          });
 | 
			
		||||
          // console.log(, 'xData');
 | 
			
		||||
          const series = this.convertToSeries(newVal)
 | 
			
		||||
          this.getChart([...new Set(xData)], series)
 | 
			
		||||
          // this.nowMonth = newVal.nowMonth ? newVal.nowMonth : []
 | 
			
		||||
          // this.nowWeek = newVal.nowWeek ? newVal.nowWeek : []
 | 
			
		||||
          // this.oneDay = newVal.oneDay ? newVal.oneDay : []
 | 
			
		||||
          // this.todayClass = newVal.todayClass ? newVal.todayClass : []
 | 
			
		||||
        }
 | 
			
		||||
        // this.getChart(this.todayClass)
 | 
			
		||||
      },
 | 
			
		||||
      deep: true,  // 深度监听
 | 
			
		||||
      immediate: true
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      type: Array,
 | 
			
		||||
      default: () => []
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.getChart()
 | 
			
		||||
  },
 | 
			
		||||
@@ -42,7 +61,69 @@ export default {
 | 
			
		||||
    init() {
 | 
			
		||||
 | 
			
		||||
    },
 | 
			
		||||
    getChart() {
 | 
			
		||||
    formatDate(time) {
 | 
			
		||||
      if (!time) return '';
 | 
			
		||||
 | 
			
		||||
      // 如果是时间戳格式
 | 
			
		||||
      if (typeof time === 'number' || !isNaN(time)) {
 | 
			
		||||
        const date = new Date(parseInt(time));
 | 
			
		||||
        return `${date.getHours().toString().padStart(2, '0')}:${date.getMinutes().toString().padStart(2, '0')}`;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // 如果是ISO字符串格式
 | 
			
		||||
      if (typeof time === 'string') {
 | 
			
		||||
        const date = new Date(time);
 | 
			
		||||
        if (!isNaN(date.getTime())) {
 | 
			
		||||
          return `$${date.getHours().toString().padStart(2, '0')}:${date.getMinutes().toString().padStart(2, '0')}`;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      return time;
 | 
			
		||||
    },
 | 
			
		||||
    convertToSeries(data) {
 | 
			
		||||
      this.legendArr = []
 | 
			
		||||
      // 1. 按产线ID分组
 | 
			
		||||
      const colorArr = ['#FFCE6A', '#21CECD', '#77B4FD', '#29BDFA', '#5A7DDA', '#FFB49D', '#C5A6FC', '#7164FF', '#98B0C7', '#5D7092']
 | 
			
		||||
      const grouped = {};
 | 
			
		||||
 | 
			
		||||
      data.forEach(item => {
 | 
			
		||||
        if (!grouped[item.id]) {
 | 
			
		||||
          grouped[item.id] = {
 | 
			
		||||
            id: item.id,
 | 
			
		||||
            name: item.name,
 | 
			
		||||
            data: []
 | 
			
		||||
          };
 | 
			
		||||
        }
 | 
			
		||||
        // 将数据存入对应产线,并保留时间信息用于排序
 | 
			
		||||
        grouped[item.id].data.push({
 | 
			
		||||
          value: item.inputOutputRate,
 | 
			
		||||
          time: item.time
 | 
			
		||||
        });
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
      // 2. 转换为series格式,并按时间排序数据点
 | 
			
		||||
      // let legendArr= []
 | 
			
		||||
      return Object.values(grouped)
 | 
			
		||||
        .sort((a, b) => a.id - b.id) // 按产线ID排序
 | 
			
		||||
        .map((line,index) => {
 | 
			
		||||
          // 按时间排序每个产线的数据点
 | 
			
		||||
          line.data.sort((a, b) => a.time - b.time);
 | 
			
		||||
          this.legendArr.push({
 | 
			
		||||
            name: line.name, // 产线名称(与series.name一致)
 | 
			
		||||
            color: colorArr[index] // 匹配colorArr中对应索引的颜色
 | 
			
		||||
          });
 | 
			
		||||
 | 
			
		||||
          // 提取value作为数据,保持ECharts series格式
 | 
			
		||||
          return {
 | 
			
		||||
            name: line.name,
 | 
			
		||||
            type: 'line',
 | 
			
		||||
            symbol: 'circle',
 | 
			
		||||
            symbolSize: 6,
 | 
			
		||||
            data: line.data.map(item => item.value)
 | 
			
		||||
          };
 | 
			
		||||
        });
 | 
			
		||||
    },
 | 
			
		||||
    getChart(xData, series) {
 | 
			
		||||
      var chartDom = document.getElementById('lineRate');
 | 
			
		||||
      var myChart = echarts.init(chartDom);
 | 
			
		||||
      var option;
 | 
			
		||||
@@ -67,7 +148,7 @@ export default {
 | 
			
		||||
              color: 'rgba(0,0,0,0.45)'
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          data: ['6:00', '7:00', '8:00', '9:00', '10:00', '11:00', '12:00'],
 | 
			
		||||
          data: xData ? xData: [],
 | 
			
		||||
        },
 | 
			
		||||
        yAxis: {
 | 
			
		||||
          type: 'value',
 | 
			
		||||
@@ -81,43 +162,7 @@ export default {
 | 
			
		||||
            }
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        series: [
 | 
			
		||||
          {
 | 
			
		||||
            name: 'A1',
 | 
			
		||||
            type: 'line',
 | 
			
		||||
            symbol: 'circle',
 | 
			
		||||
            symbolSize: 6,
 | 
			
		||||
            data: [82, 13, 10, 33, 90, 23, 71]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: 'A2',
 | 
			
		||||
            type: 'line',
 | 
			
		||||
            symbol: 'circle',
 | 
			
		||||
            symbolSize: 6,
 | 
			
		||||
            data: [22, 38, 59, 23, 99, 33, 31]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: 'A3',
 | 
			
		||||
            type: 'line',
 | 
			
		||||
            symbol: 'circle',
 | 
			
		||||
            symbolSize: 6,
 | 
			
		||||
            data: [15, 43, 20, 95, 89, 33, 41]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: 'A4',
 | 
			
		||||
            type: 'line',
 | 
			
		||||
            symbol: 'circle',
 | 
			
		||||
            symbolSize: 6,
 | 
			
		||||
            data: [32, 33, 30, 33, 39, 33, 32]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: 'A5',
 | 
			
		||||
            type: 'line',
 | 
			
		||||
            symbol: 'circle',
 | 
			
		||||
            symbolSize: 6,
 | 
			
		||||
            data: [82, 93, 90, 93, 29, 33, 32]
 | 
			
		||||
          }
 | 
			
		||||
        ]
 | 
			
		||||
        series: series ? series: []
 | 
			
		||||
      };
 | 
			
		||||
      option && myChart.setOption(option);
 | 
			
		||||
    }
 | 
			
		||||
@@ -128,7 +173,7 @@ export default {
 | 
			
		||||
.line-rate {
 | 
			
		||||
  position: relative;
 | 
			
		||||
  .legend-box {
 | 
			
		||||
    width: 280px;
 | 
			
		||||
    width: 340px;
 | 
			
		||||
    height: 35px;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    right: 0;
 | 
			
		||||
@@ -136,7 +181,7 @@ export default {
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-flow: row wrap;
 | 
			
		||||
    .legend-item {
 | 
			
		||||
      width: 55px;
 | 
			
		||||
      width: 100px;
 | 
			
		||||
      .dot {
 | 
			
		||||
        display: inline-block;
 | 
			
		||||
        width: 8px;
 | 
			
		||||
 
 | 
			
		||||
@@ -18,14 +18,115 @@ export default {
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      
 | 
			
		||||
      nowMonth:[],
 | 
			
		||||
      nowWeek: [],
 | 
			
		||||
      oneDay: [],
 | 
			
		||||
      todayClass: []
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      type: Object,
 | 
			
		||||
      default: () => {}
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.getChart()
 | 
			
		||||
    // this.getChart()
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      handler(newVal, oldVal) {
 | 
			
		||||
        console.log(newVal,'newVal');
 | 
			
		||||
        if (newVal) {
 | 
			
		||||
          this.nowMonth = newVal.nowMonth ? newVal.nowMonth : []
 | 
			
		||||
          this.nowWeek = newVal.nowWeek ? newVal.nowWeek : []
 | 
			
		||||
          this.oneDay = newVal.oneDay ? newVal.oneDay :[]
 | 
			
		||||
          this.todayClass = newVal.todayClass ? newVal.todayClass : []
 | 
			
		||||
        }
 | 
			
		||||
        this.getChart(this.todayClass)
 | 
			
		||||
      },
 | 
			
		||||
      deep: true  // 深度监听
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    getChart() {
 | 
			
		||||
    getChart(val) {
 | 
			
		||||
      console.log(val, 'val');
 | 
			
		||||
      let series = []
 | 
			
		||||
      const lineNames = [...new Set(val.map(item => item.lineName))].sort();
 | 
			
		||||
      // const types = [...new Set(val.map(item => item.type))].sort();
 | 
			
		||||
      // lineNames.forEach(lineName => {
 | 
			
		||||
      //   series.push({
 | 
			
		||||
      //     name: lineName,
 | 
			
		||||
      //     type: 'bar',
 | 
			
		||||
      //     barGap: '30%',
 | 
			
		||||
      //     barWidth: 15,
 | 
			
		||||
      //     data: []
 | 
			
		||||
      //   });
 | 
			
		||||
      // });
 | 
			
		||||
      const types = ['上片', '磨边', '打孔', '丝印', '镀膜', '钢化', '包装']
 | 
			
		||||
      const typeMap = { 1: '上片', 2: '磨边', 3: '打孔',4:'丝印', 5: '镀膜', 6: '钢化', 7: '包装' };
 | 
			
		||||
      types.forEach(typeName => {
 | 
			
		||||
        series.push({
 | 
			
		||||
          name: typeName,
 | 
			
		||||
          type: 'bar',
 | 
			
		||||
          barGap: '30%',
 | 
			
		||||
          barWidth: 15,
 | 
			
		||||
          data: []
 | 
			
		||||
        });
 | 
			
		||||
      });
 | 
			
		||||
      types.forEach((type, index) => {
 | 
			
		||||
        const typeValue = parseInt(Object.keys(typeMap).find(key => typeMap[key] === type));
 | 
			
		||||
        console.log(typeValue,'typeValue');
 | 
			
		||||
 | 
			
		||||
        const itemSeries = series.find(s => s.name === type);
 | 
			
		||||
        lineNames.forEach(lineName => {
 | 
			
		||||
          const item = val.find(d => d.lineName === lineName && d.type === typeValue);
 | 
			
		||||
          if (item) {
 | 
			
		||||
            itemSeries.data.push(item.lossNum);
 | 
			
		||||
          } else {
 | 
			
		||||
            // 如果没有数据,添加0
 | 
			
		||||
            itemSeries.data.push(0);
 | 
			
		||||
          }
 | 
			
		||||
        });
 | 
			
		||||
        // lineSeries.data.push(lineSeries.lossNum)
 | 
			
		||||
        // types.forEach(type => {
 | 
			
		||||
        //   // 查找对应产线和工序类型的数据
 | 
			
		||||
        //   const item = oneDay.find(d => d.lineName === lineName && d.type === type);
 | 
			
		||||
        //   if (item) {
 | 
			
		||||
        //     // 将lossNum添加到对应的系列中
 | 
			
		||||
        //     lineSeries.data.push(item.lossNum);
 | 
			
		||||
        //   } else {
 | 
			
		||||
        //     // 如果没有数据,添加0
 | 
			
		||||
        //     lineSeries.data.push(0);
 | 
			
		||||
        //   }
 | 
			
		||||
        // });
 | 
			
		||||
      });
 | 
			
		||||
      console.log('series', series);
 | 
			
		||||
 | 
			
		||||
      // const lineNames = [...new Set(val.map(item => item.lineName))].sort();
 | 
			
		||||
      // // let xData = []
 | 
			
		||||
      // lineNames.forEach(line => {
 | 
			
		||||
      //   // sectionNames.forEach(section => {
 | 
			
		||||
      //     // 查找对应产线和工段的数据
 | 
			
		||||
      //     const item = val.find(d => d.lineName === line);
 | 
			
		||||
      //     if (item) {
 | 
			
		||||
      //       // 将lossNum添加到对应的系列中
 | 
			
		||||
      //       this.series[item.type - 1].data.push(item.lossNum);
 | 
			
		||||
      //     } else {
 | 
			
		||||
      //       // 如果没有数据,添加0
 | 
			
		||||
      //       this.series.forEach(s => s.data.push(0));
 | 
			
		||||
      //     }
 | 
			
		||||
      //   // });
 | 
			
		||||
      // });
 | 
			
		||||
      // val.forEach((ele) => {
 | 
			
		||||
      //   console.log(ele.lineName,ele.type);
 | 
			
		||||
 | 
			
		||||
      //   if (!xData.includes(ele.lineName)) {
 | 
			
		||||
      //     xData.push(ele.lineName)
 | 
			
		||||
      //   }
 | 
			
		||||
      // })
 | 
			
		||||
      // console.log('xData', xData);
 | 
			
		||||
 | 
			
		||||
      var chartDom = document.getElementById('lossSum');
 | 
			
		||||
      var myChart = echarts.init(chartDom);
 | 
			
		||||
      var option;
 | 
			
		||||
@@ -35,7 +136,8 @@ export default {
 | 
			
		||||
          top:18,
 | 
			
		||||
          right:5,
 | 
			
		||||
          itemWidth:8,
 | 
			
		||||
          itemHeight:8,
 | 
			
		||||
          itemHeight: 8,
 | 
			
		||||
          // data: [ '上片', '磨边','打孔','镀膜','钢化','包装'],
 | 
			
		||||
          textStyle:{
 | 
			
		||||
            color: '#8C8C8C',
 | 
			
		||||
            fontSize: '14px'
 | 
			
		||||
@@ -76,7 +178,7 @@ export default {
 | 
			
		||||
          axisTick: {
 | 
			
		||||
            show:false
 | 
			
		||||
          },
 | 
			
		||||
          data:['A1', 'A2', 'A3', 'A4', 'A5']
 | 
			
		||||
          data: lineNames
 | 
			
		||||
        },
 | 
			
		||||
        yAxis: {
 | 
			
		||||
          name:'单位/片',
 | 
			
		||||
@@ -91,62 +193,20 @@ export default {
 | 
			
		||||
            }
 | 
			
		||||
          }
 | 
			
		||||
        },
 | 
			
		||||
        series: [
 | 
			
		||||
          {
 | 
			
		||||
            name: '包装',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barGap: '30%',
 | 
			
		||||
            barWidth: 8,
 | 
			
		||||
            data: [433, 858, 937, 926, 928]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '上片',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barGap: '30%',
 | 
			
		||||
            barWidth: 8,
 | 
			
		||||
            data: [831, 734, 551, 864, 810]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '磨边',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barGap: '30%',
 | 
			
		||||
            barWidth: 8,
 | 
			
		||||
            data: [864, 652, 825, 810, 810]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '打孔',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barGap: '30%',
 | 
			
		||||
            barWidth: 8,
 | 
			
		||||
            data: [724, 539, 391, 810, 810]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '丝印',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barGap: '30%',
 | 
			
		||||
            barWidth: 8,
 | 
			
		||||
            data: [831, 734, 551, 864, 810]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '镀膜',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barGap: '30%',
 | 
			
		||||
            barWidth: 8,
 | 
			
		||||
            data: [864, 652, 825, 810, 810]
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            name: '钢化',
 | 
			
		||||
            type: 'bar',
 | 
			
		||||
            barGap: '30%',
 | 
			
		||||
            barWidth: 8,
 | 
			
		||||
            data: [433, 858, 937, 926, 928]
 | 
			
		||||
          },
 | 
			
		||||
        ]
 | 
			
		||||
        series: series
 | 
			
		||||
      };
 | 
			
		||||
      option && myChart.setOption(option);
 | 
			
		||||
    },
 | 
			
		||||
    chooseBtn(val) {
 | 
			
		||||
      console.log(val)
 | 
			
		||||
      if (val ===3) {
 | 
			
		||||
        this.getChart(this.nowMonth)
 | 
			
		||||
      } else if (val === 2) {
 | 
			
		||||
        this.getChart(this.nowWeek)
 | 
			
		||||
      } else if (val === 1) {
 | 
			
		||||
        this.getChart(this.oneDay)
 | 
			
		||||
      } else if (val === 0) {
 | 
			
		||||
        this.getChart(this.todayClass)
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,17 +1,12 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <ModelBox name='2-1'>
 | 
			
		||||
    <div class='section-content'>
 | 
			
		||||
      <SwitchBtn class='switch-btn' @chooseBtn='chooseBtn'/>
 | 
			
		||||
      <SwitchBtn class='switch-btn' @chooseBtn='chooseBtn' />
 | 
			
		||||
      <div class='section-list'>
 | 
			
		||||
        <div
 | 
			
		||||
          v-for='item in sectionArr'
 | 
			
		||||
          :key='item.id'
 | 
			
		||||
          class='section-item'
 | 
			
		||||
          :class='{acvtive: sectionActive === item.id}'
 | 
			
		||||
          @click='sectionActive = item.id'
 | 
			
		||||
        >{{item.name}}</div>
 | 
			
		||||
        <div v-for='item in sectionArr' :key='item.id' class='section-item'
 | 
			
		||||
          :class='{active: sectionActive === item.id}' @click='sectionActive = item.id'>{{item.name}}</div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <dv-scroll-board :config="config" style="width:583px;height:220px;" class='section-table'/>
 | 
			
		||||
      <dv-scroll-board  ref="showTable" :config="config" style="width:583px;height:220px;" class='section-table' />
 | 
			
		||||
      <span class='split-line' style='left: 66px;'></span>
 | 
			
		||||
      <span class='split-line' style='left: 186px;'></span>
 | 
			
		||||
      <span class='split-line' style='left: 306px;'></span>
 | 
			
		||||
@@ -30,17 +25,67 @@ export default {
 | 
			
		||||
    ModelBox,
 | 
			
		||||
    SwitchBtn
 | 
			
		||||
  },
 | 
			
		||||
  watch: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      handler(newVal, oldVal) {
 | 
			
		||||
        console.log(newVal, 'newVal');
 | 
			
		||||
        if (newVal) {
 | 
			
		||||
          this.nowMonth = newVal.nowMonth ? newVal.nowMonth : []
 | 
			
		||||
          this.nowWeek = newVal.nowWeek ? newVal.nowWeek : []
 | 
			
		||||
          this.oneDay = newVal.oneDay ? newVal.oneDay : []
 | 
			
		||||
          this.todayClass = newVal.todayClass ? newVal.todayClass : []
 | 
			
		||||
        }
 | 
			
		||||
        // this.getChart(this.todayClass)
 | 
			
		||||
      },
 | 
			
		||||
      deep: true,  // 深度监听
 | 
			
		||||
      immediate: true
 | 
			
		||||
    },
 | 
			
		||||
    sectionActive: {
 | 
			
		||||
      handler(newVal) {
 | 
			
		||||
        if (newVal) {
 | 
			
		||||
          console.log(newVal, 'sectionActive');
 | 
			
		||||
          this.updateChartData();
 | 
			
		||||
        }
 | 
			
		||||
        // this.updateChartData();
 | 
			
		||||
      },
 | 
			
		||||
      deep: true,
 | 
			
		||||
      immediate: true
 | 
			
		||||
    },
 | 
			
		||||
    time: {
 | 
			
		||||
      handler(newVal) {
 | 
			
		||||
        if (newVal) {
 | 
			
		||||
          console.log(newVal, 'sectionActive');
 | 
			
		||||
          this.updateChartData();
 | 
			
		||||
        }
 | 
			
		||||
        // this.updateChartData();
 | 
			
		||||
      },
 | 
			
		||||
      deep: true,
 | 
			
		||||
      immediate: true
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  props: {
 | 
			
		||||
    dataObj: {
 | 
			
		||||
      type: Object,
 | 
			
		||||
      default: () => {}
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      sectionArr:[
 | 
			
		||||
        {id:'1', name:'上片'},
 | 
			
		||||
        {id:'2', name:'磨边'},
 | 
			
		||||
        {id:'3', name:'打孔'},
 | 
			
		||||
        {id:'4', name:'丝印'},
 | 
			
		||||
        {id:'5', name:'镀膜'},
 | 
			
		||||
        {id:'6', name:'钢化'},
 | 
			
		||||
        {id:'7', name:'包装'}
 | 
			
		||||
        {id:1, name:'上片'},
 | 
			
		||||
        {id:2, name:'磨边'},
 | 
			
		||||
        {id:3, name:'打孔'},
 | 
			
		||||
        {id:4, name:'丝印'},
 | 
			
		||||
        {id:5, name:'镀膜'},
 | 
			
		||||
        {id:6, name:'钢化'},
 | 
			
		||||
        {id:7, name:'包装'}
 | 
			
		||||
      ],
 | 
			
		||||
      nowMonth: [],
 | 
			
		||||
      nowWeek: [],
 | 
			
		||||
      oneDay: [],
 | 
			
		||||
      todayClass: [],
 | 
			
		||||
      time: 0,
 | 
			
		||||
      showData: [],
 | 
			
		||||
      sectionActive: '1',
 | 
			
		||||
      config:{
 | 
			
		||||
        header: ['<span style="color:#000;">序号</span>', '<span style="color:#000;">工段</span>', '<span style="color:#000;">投入数量/片</span>', '<span style="color:#000;">产出数量/片</span>','<span style="color:#000;">产出率/%</span>'],
 | 
			
		||||
@@ -56,40 +101,90 @@ export default {
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    this.getData() 
 | 
			
		||||
    this.updateChartData()
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
  methods: {
 | 
			
		||||
    getData() {
 | 
			
		||||
      let arr1 = []
 | 
			
		||||
      let arr2 = []
 | 
			
		||||
      let data = [
 | 
			
		||||
        [1,'A1-磨边',234344,234333,100],
 | 
			
		||||
        [2,'A1-磨边',234344,234333,10],
 | 
			
		||||
        [3,'A1-磨边',234344,234333,96],
 | 
			
		||||
        [4,'A1-磨边',234344,234333,20],
 | 
			
		||||
        [5,'A1-磨边',234344,234333,40],
 | 
			
		||||
        [6,'A1-磨边',234344,234333,90],
 | 
			
		||||
        [7,'A1-磨边',234344,234333,80],
 | 
			
		||||
      ]
 | 
			
		||||
      for (let i =0; i < data.length; i++) {
 | 
			
		||||
        arr1.push(`<span style="color:#000;">${data[i][0]}</span>`)
 | 
			
		||||
        arr1.push(`<img src=${arrowRed} width=12 style="margin-right:2px" /><span style="color:#000;">${data[i][1]}</span>`)
 | 
			
		||||
        arr1.push(`<span style="color:#000;">${data[i][2]}</span>`)
 | 
			
		||||
        arr1.push(`<span style="color:#000;">${data[i][3]}</span>`)
 | 
			
		||||
        arr1.push(`<div style="width:136px; margin:0px;">
 | 
			
		||||
          <div style="display:inline-block;height:8px; background:#D8DEEB; border-radius:4px; overflow:hidden;text-align:left;width:90px">
 | 
			
		||||
            <div style="width:${data[i][4]}%; height:100%; background:#0B58FF;border-radius:4px;"></div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <span style="display:inline-block;margin-left:10px; color:#000; font-size:14px;">${data[i][4]}%</span>
 | 
			
		||||
        </div>`)
 | 
			
		||||
        arr2.push(arr1)
 | 
			
		||||
        arr1 = []
 | 
			
		||||
    updateChartData() {
 | 
			
		||||
      const data = this.getDataByTimeAndType();
 | 
			
		||||
      this.getData(data);
 | 
			
		||||
    },
 | 
			
		||||
    getDataByTimeAndType() {
 | 
			
		||||
      // console.log(this.time,'time');
 | 
			
		||||
      console.log(this.sectionActive, this.time, 'sectionActive');
 | 
			
		||||
 | 
			
		||||
      // 确定当前时间范围的数据源
 | 
			
		||||
      let dataSource;
 | 
			
		||||
      switch (this.time) {
 | 
			
		||||
        case 3: // 本月
 | 
			
		||||
          dataSource = this.nowMonth;
 | 
			
		||||
          break;
 | 
			
		||||
        case 2: // 本周
 | 
			
		||||
          dataSource = this.nowWeek;
 | 
			
		||||
          break;
 | 
			
		||||
        case 1: // 今日
 | 
			
		||||
          dataSource = this.oneDay;
 | 
			
		||||
          break;
 | 
			
		||||
        case 0: // 今日班次
 | 
			
		||||
        default:
 | 
			
		||||
          dataSource = this.todayClass;
 | 
			
		||||
          break;
 | 
			
		||||
      }
 | 
			
		||||
      this.config.data = arr2
 | 
			
		||||
      console.log(dataSource,'dataSource');
 | 
			
		||||
 | 
			
		||||
      // 如果没有数据,返回空数组
 | 
			
		||||
      if (!dataSource || dataSource.length === 0) {
 | 
			
		||||
        return [];
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // 根据sectionActive(对应type)筛选数据
 | 
			
		||||
      const filteredData = dataSource.filter(item => item.type === parseInt(this.sectionActive));
 | 
			
		||||
 | 
			
		||||
      // 按产出率排序
 | 
			
		||||
      return filteredData
 | 
			
		||||
    },
 | 
			
		||||
    getData(data) {
 | 
			
		||||
      console.log(data,'ryf');
 | 
			
		||||
      this.showData = data ? data.map((item, index) => [
 | 
			
		||||
        // `<span style="color:#000;" >${index + 1 || ''}
 | 
			
		||||
        //     </span>`,
 | 
			
		||||
        `<span style="color:#000;">${index + 1 }</span>`,
 | 
			
		||||
        // `<span style="color:#000;" >${item.sectionName || ''}
 | 
			
		||||
        //     </span>`,
 | 
			
		||||
        `<span style="color:#000;">${item.sectionName}</span>`,
 | 
			
		||||
        // formatDate(item.planStartTime) || '',
 | 
			
		||||
        `<span style="color:#000;" >${item.inputNum || ''}
 | 
			
		||||
          </span>`,
 | 
			
		||||
        // `<span style="color:#000;">${data[i][3]}</span>`
 | 
			
		||||
        `<span style="color:#000;">${item.outputNum || ''}</span>`,
 | 
			
		||||
        `<div style="width:136px; margin:0px;">
 | 
			
		||||
          <div style="display:inline-block;height:8px; background:#D8DEEB; border-radius:4px; overflow:hidden;text-align:left;width:90px">
 | 
			
		||||
            <div style="width:${item.inputOutputRate}%; height:100%; background:#0B58FF;border-radius:4px;"></div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <span style="display:inline-block;margin-left:10px; color:#000; font-size:14px;">${item.inputOutputRate }%</span>
 | 
			
		||||
        </div>`,
 | 
			
		||||
     ]) : []
 | 
			
		||||
 | 
			
		||||
      this.config = {
 | 
			
		||||
        ...this.config,
 | 
			
		||||
        data: this.showData
 | 
			
		||||
      };
 | 
			
		||||
      console.log(this.showData, 'arr', this.config.data);
 | 
			
		||||
      // console.log(this.$refs['showTable'])
 | 
			
		||||
 | 
			
		||||
      this.$nextTick(() => {
 | 
			
		||||
        if (this.$refs.showTable) {
 | 
			
		||||
          this.$refs.showTable.updateRows(this.showData);
 | 
			
		||||
        }
 | 
			
		||||
      });
 | 
			
		||||
      // this.$forceUpdate()
 | 
			
		||||
      // this.config.data = arr2
 | 
			
		||||
    },
 | 
			
		||||
    chooseBtn(val) {
 | 
			
		||||
      console.log(val)
 | 
			
		||||
      this.time = val
 | 
			
		||||
      console.log(this.time,' this.time');
 | 
			
		||||
 | 
			
		||||
      this.updateChartData()
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@@ -116,7 +211,7 @@ export default {
 | 
			
		||||
      letter-spacing: 4px;
 | 
			
		||||
      background-color: #E8EDF8;
 | 
			
		||||
    }
 | 
			
		||||
    .acvtive {
 | 
			
		||||
    .active {
 | 
			
		||||
      background-color: #0B58FF;
 | 
			
		||||
      color: #fff;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,27 +1,20 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <div class='home-box'>
 | 
			
		||||
    <div
 | 
			
		||||
      id="homeComtainerB"
 | 
			
		||||
      ref="homeComtainerB"
 | 
			
		||||
    >
 | 
			
		||||
      <div
 | 
			
		||||
        class='home-comtainer'
 | 
			
		||||
        id="homeComtainer"
 | 
			
		||||
        style="width: 1920px; height: 1080px"
 | 
			
		||||
        :style="{ transform: 'scale(' + scaleNum + ')' }"
 | 
			
		||||
      >
 | 
			
		||||
        <HomeHeader :isFullScreen="isFullScreen" @screenfullChange="screenfullChange"/>
 | 
			
		||||
    <div id="homeComtainerB" ref="homeComtainerB">
 | 
			
		||||
      <div class='home-comtainer' id="homeComtainer" style="width: 1920px; height: 1080px"
 | 
			
		||||
        :style="{ transform: 'scale(' + scaleNum + ')' }">
 | 
			
		||||
        <HomeHeader :isFullScreen="isFullScreen" @screenfullChange="screenfullChange" />
 | 
			
		||||
        <div class='line-one'>
 | 
			
		||||
          <LossSum style='margin-right: 16px;'/>
 | 
			
		||||
          <EqAlarm style='margin-right: 16px;'/>
 | 
			
		||||
          <Count />
 | 
			
		||||
          <LossSum style='margin-right: 16px;' :dataObj="dataObj.workShopData" />
 | 
			
		||||
          <EqAlarm style='margin-right: 16px;' :dataObj="dataObj.alarmData" />
 | 
			
		||||
          <Count :dataObj="dataObj.downLoadNum" />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class='line-two'>
 | 
			
		||||
          <div>
 | 
			
		||||
            <SectionInputAndOutput style='margin-bottom: 16px;'/>
 | 
			
		||||
            <LineRate />
 | 
			
		||||
            <SectionInputAndOutput style='margin-bottom: 16px;' :dataObj="dataObj.workShopData" />
 | 
			
		||||
            <LineRate  :dataObj="dataObj.lineHours"/>
 | 
			
		||||
          </div>
 | 
			
		||||
          <LineInpurAndOutput style='margin-left: 16px;'/>
 | 
			
		||||
          <LineInpurAndOutput :dataObj="dataObj.productionLineData" style='margin-left: 16px;' />
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
@@ -38,6 +31,8 @@ import LineRate from './components/LineRate.vue';
 | 
			
		||||
import LineInpurAndOutput from './components/LineInpurAndOutput.vue';
 | 
			
		||||
import { debounce } from '@/utils/debounce';
 | 
			
		||||
import screenfull from 'screenfull';
 | 
			
		||||
import { getAccessToken } from '@/utils/auth';
 | 
			
		||||
import store from "@/store";
 | 
			
		||||
export default {
 | 
			
		||||
  name: 'Home',
 | 
			
		||||
  components: {
 | 
			
		||||
@@ -52,15 +47,29 @@ export default {
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      isFullScreen: false,
 | 
			
		||||
      scaleNum: 1
 | 
			
		||||
      scaleNum: 1,
 | 
			
		||||
      dataObj: {},
 | 
			
		||||
      sseReader: null,        // 保存流读取器
 | 
			
		||||
      abortController: null,  // 用于中止 fetch 请求
 | 
			
		||||
      retryCount: 0,          // 当前重试次数
 | 
			
		||||
      isDestroyed: false      // 标记组件是否已销毁
 | 
			
		||||
    };
 | 
			
		||||
  },
 | 
			
		||||
  created() {
 | 
			
		||||
    this.init();
 | 
			
		||||
    this.getData()
 | 
			
		||||
	},
 | 
			
		||||
  mounted() {
 | 
			
		||||
		this.boxReset();
 | 
			
		||||
    window.addEventListener('resize', this.boxReset);
 | 
			
		||||
    // this.boxReset = debounce(() => {
 | 
			
		||||
    //   this.resetSize()
 | 
			
		||||
    // }, 300)
 | 
			
		||||
    // this.boxReset()
 | 
			
		||||
    // window.addEventListener('resize', () => {
 | 
			
		||||
    //   this.boxReset()
 | 
			
		||||
    // })
 | 
			
		||||
    this.getData()
 | 
			
		||||
	},
 | 
			
		||||
	destroyed() {
 | 
			
		||||
		window.removeEventListener('resize', this.boxReset);
 | 
			
		||||
@@ -70,6 +79,91 @@ export default {
 | 
			
		||||
			debounce(() => {
 | 
			
		||||
				this.resetSize();
 | 
			
		||||
			}, 300)();
 | 
			
		||||
    },
 | 
			
		||||
    async getData() {
 | 
			
		||||
      let _this = this;
 | 
			
		||||
      if (_this.isDestroyed) return;
 | 
			
		||||
      const url = process.env.VUE_APP_BASE_API + '/admin-api/monitoring/message/subscribe/' + store.getters.userId + '-' + Date.now();
 | 
			
		||||
      const token = getAccessToken()
 | 
			
		||||
      const headers = new Headers({
 | 
			
		||||
        'Authorization': `Bearer ${token}`,
 | 
			
		||||
        'Content-Type': 'text/event-stream'
 | 
			
		||||
      });
 | 
			
		||||
      try {
 | 
			
		||||
        // 创建中止控制器
 | 
			
		||||
        this.abortController = new AbortController();
 | 
			
		||||
        // 发起 fetch 请求(替换为你的接口地址)
 | 
			
		||||
        const response = await fetch(url, {
 | 
			
		||||
          method: 'GET',
 | 
			
		||||
          headers: headers,
 | 
			
		||||
          signal: _this.abortController.signal // 绑定中止信号
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        // 获取流读取器
 | 
			
		||||
        _this.sseReader = response.body.getReader();
 | 
			
		||||
        const decoder = new TextDecoder();
 | 
			
		||||
 | 
			
		||||
        // 持续读取流数据
 | 
			
		||||
        while (true) {
 | 
			
		||||
          const { done, value } = await _this.sseReader.read();
 | 
			
		||||
          if (done) {
 | 
			
		||||
            console.log('SSE 连接正常关闭');
 | 
			
		||||
            _this.handleReconnect(); // 触发重连
 | 
			
		||||
            break;
 | 
			
		||||
          }
 | 
			
		||||
          // 处理 SSE 事件数据
 | 
			
		||||
          const data = decoder.decode(value);
 | 
			
		||||
          console.log('收到消息:', data);
 | 
			
		||||
          if (_this.isValidData(data)) {
 | 
			
		||||
            _this.upDateMsg(data);
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      } catch (error) {
 | 
			
		||||
        // 主动中止的请求不报错
 | 
			
		||||
        if (error.name === 'AbortError') return;
 | 
			
		||||
        console.error('SSE 连接异常:', error);
 | 
			
		||||
        _this.handleReconnect(); // 触发重连
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    closeSSE() {
 | 
			
		||||
      this.isDestroyed = true; // 标记销毁
 | 
			
		||||
      if (this.abortController) {
 | 
			
		||||
        this.abortController.abort(); // 中止 fetch 请求
 | 
			
		||||
      }
 | 
			
		||||
      if (this.sseReader) {
 | 
			
		||||
        this.sseReader.cancel();      // 关闭流读取器
 | 
			
		||||
        this.sseReader = null;
 | 
			
		||||
      }
 | 
			
		||||
      console.log('SSE 连接已强制关闭');
 | 
			
		||||
    },
 | 
			
		||||
    handleReconnect() {
 | 
			
		||||
      if (this.isDestroyed) return;
 | 
			
		||||
      // 指数退避策略(最大重试 5 次)
 | 
			
		||||
      const maxRetries = 5;
 | 
			
		||||
      if (this.retryCount < maxRetries) {
 | 
			
		||||
        const delay = Math.pow(2, this.retryCount) * 1000;
 | 
			
		||||
        setTimeout(() => {
 | 
			
		||||
          this.retryCount++;
 | 
			
		||||
          this.initSSE();
 | 
			
		||||
        }, delay);
 | 
			
		||||
      } else {
 | 
			
		||||
        console.error('SSE 重连次数已达上限');
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    isValidData(data) {
 | 
			
		||||
      return data.trim().startsWith('data:{') && !data.includes('heartbeat');
 | 
			
		||||
    },
 | 
			
		||||
    upDateMsg(data) {
 | 
			
		||||
      const jsonStr = data.replace(/^data:/, '').trim();
 | 
			
		||||
      console.log('jsonStr', jsonStr);
 | 
			
		||||
 | 
			
		||||
      try {
 | 
			
		||||
        const dataObj = JSON.parse(jsonStr);
 | 
			
		||||
        this.dataObj = dataObj
 | 
			
		||||
        console.log('dataObj', this.dataObj)
 | 
			
		||||
      } catch (e) {
 | 
			
		||||
        console.error('JSON 解析失败:', e);
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
		change() {
 | 
			
		||||
			this.isFullScreen = screenfull.isFullscreen;
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										428
									
								
								yarn.lock
									
									
									
									
									
								
							
							
						
						@@ -31,7 +31,7 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.9.tgz"
 | 
			
		||||
  "version" "7.22.9"
 | 
			
		||||
 | 
			
		||||
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.0.0-0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.11.0", "@babel/core@^7.12.0", "@babel/core@^7.13.0", "@babel/core@^7.4.0 || ^8.0.0-0 <8.0.0":
 | 
			
		||||
"@babel/core@*", "@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.0.0-0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.11.0", "@babel/core@^7.12.0", "@babel/core@^7.13.0", "@babel/core@^7.4.0 || ^8.0.0-0 <8.0.0":
 | 
			
		||||
  "integrity" "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/@babel/core/-/core-7.22.9.tgz"
 | 
			
		||||
  "version" "7.22.9"
 | 
			
		||||
@@ -2024,21 +2024,16 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz"
 | 
			
		||||
  "version" "7.2.0"
 | 
			
		||||
 | 
			
		||||
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^6.4.1":
 | 
			
		||||
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.1.1", "acorn@^7.4.0":
 | 
			
		||||
  "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz"
 | 
			
		||||
  "version" "7.4.1"
 | 
			
		||||
 | 
			
		||||
"acorn@^6.4.1":
 | 
			
		||||
  "integrity" "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/acorn/-/acorn-6.4.2.tgz"
 | 
			
		||||
  "version" "6.4.2"
 | 
			
		||||
 | 
			
		||||
"acorn@^7.1.1":
 | 
			
		||||
  "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz"
 | 
			
		||||
  "version" "7.4.1"
 | 
			
		||||
 | 
			
		||||
"acorn@^7.4.0":
 | 
			
		||||
  "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz"
 | 
			
		||||
  "version" "7.4.1"
 | 
			
		||||
 | 
			
		||||
"acorn@^8.8.2":
 | 
			
		||||
  "integrity" "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz"
 | 
			
		||||
@@ -2059,7 +2054,7 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/adler-32/-/adler-32-1.3.1.tgz"
 | 
			
		||||
  "version" "1.3.1"
 | 
			
		||||
 | 
			
		||||
"aes-decrypter@^4.0.1":
 | 
			
		||||
"aes-decrypter@^4.0.1", "aes-decrypter@4.0.1":
 | 
			
		||||
  "integrity" "sha512-H1nh/P9VZXUf17AA5NQfJML88CFjVBDuGkp5zDHa7oEhYN9TTpNLJknRY1ie0iSKWlDf6JRnJKaZVDSQdPy6Cg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/aes-decrypter/-/aes-decrypter-4.0.1.tgz"
 | 
			
		||||
  "version" "4.0.1"
 | 
			
		||||
@@ -2086,16 +2081,6 @@
 | 
			
		||||
    "global" "^4.4.0"
 | 
			
		||||
    "pkcs7" "^1.0.4"
 | 
			
		||||
 | 
			
		||||
"aes-decrypter@4.0.1":
 | 
			
		||||
  "integrity" "sha512-H1nh/P9VZXUf17AA5NQfJML88CFjVBDuGkp5zDHa7oEhYN9TTpNLJknRY1ie0iSKWlDf6JRnJKaZVDSQdPy6Cg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/aes-decrypter/-/aes-decrypter-4.0.1.tgz"
 | 
			
		||||
  "version" "4.0.1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.12.5"
 | 
			
		||||
    "@videojs/vhs-utils" "^3.0.5"
 | 
			
		||||
    "global" "^4.4.0"
 | 
			
		||||
    "pkcs7" "^1.0.4"
 | 
			
		||||
 | 
			
		||||
"aggregate-error@^3.0.0":
 | 
			
		||||
  "integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz"
 | 
			
		||||
@@ -2171,21 +2156,28 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-2.2.1.tgz"
 | 
			
		||||
  "version" "2.2.1"
 | 
			
		||||
 | 
			
		||||
"ansi-styles@^3.1.0", "ansi-styles@^3.2.0", "ansi-styles@^3.2.1":
 | 
			
		||||
"ansi-styles@^3.1.0":
 | 
			
		||||
  "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz"
 | 
			
		||||
  "version" "3.2.1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "color-convert" "^1.9.0"
 | 
			
		||||
 | 
			
		||||
"ansi-styles@^4.0.0":
 | 
			
		||||
  "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz"
 | 
			
		||||
  "version" "4.3.0"
 | 
			
		||||
"ansi-styles@^3.2.0":
 | 
			
		||||
  "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz"
 | 
			
		||||
  "version" "3.2.1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "color-convert" "^2.0.1"
 | 
			
		||||
    "color-convert" "^1.9.0"
 | 
			
		||||
 | 
			
		||||
"ansi-styles@^4.1.0":
 | 
			
		||||
"ansi-styles@^3.2.1":
 | 
			
		||||
  "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz"
 | 
			
		||||
  "version" "3.2.1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "color-convert" "^1.9.0"
 | 
			
		||||
 | 
			
		||||
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
 | 
			
		||||
  "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz"
 | 
			
		||||
  "version" "4.3.0"
 | 
			
		||||
@@ -2874,7 +2866,28 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz"
 | 
			
		||||
  "version" "3.1.2"
 | 
			
		||||
 | 
			
		||||
"cacache@^12.0.2", "cacache@^12.0.3":
 | 
			
		||||
"cacache@^12.0.2":
 | 
			
		||||
  "integrity" "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/cacache/-/cacache-12.0.4.tgz"
 | 
			
		||||
  "version" "12.0.4"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "bluebird" "^3.5.5"
 | 
			
		||||
    "chownr" "^1.1.1"
 | 
			
		||||
    "figgy-pudding" "^3.5.1"
 | 
			
		||||
    "glob" "^7.1.4"
 | 
			
		||||
    "graceful-fs" "^4.1.15"
 | 
			
		||||
    "infer-owner" "^1.0.3"
 | 
			
		||||
    "lru-cache" "^5.1.1"
 | 
			
		||||
    "mississippi" "^3.0.0"
 | 
			
		||||
    "mkdirp" "^0.5.1"
 | 
			
		||||
    "move-concurrently" "^1.0.1"
 | 
			
		||||
    "promise-inflight" "^1.0.1"
 | 
			
		||||
    "rimraf" "^2.6.3"
 | 
			
		||||
    "ssri" "^6.0.1"
 | 
			
		||||
    "unique-filename" "^1.1.1"
 | 
			
		||||
    "y18n" "^4.0.0"
 | 
			
		||||
 | 
			
		||||
"cacache@^12.0.3":
 | 
			
		||||
  "integrity" "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/cacache/-/cacache-12.0.4.tgz"
 | 
			
		||||
  "version" "12.0.4"
 | 
			
		||||
@@ -3017,9 +3030,9 @@
 | 
			
		||||
    "lodash.uniq" "^4.5.0"
 | 
			
		||||
 | 
			
		||||
"caniuse-lite@^1.0.0", "caniuse-lite@^1.0.30001109", "caniuse-lite@^1.0.30001503":
 | 
			
		||||
  "integrity" "sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz"
 | 
			
		||||
  "version" "1.0.30001651"
 | 
			
		||||
  "integrity" "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz"
 | 
			
		||||
  "version" "1.0.30001517"
 | 
			
		||||
 | 
			
		||||
"canvg@^3.0.10", "canvg@^3.0.6":
 | 
			
		||||
  "integrity" "sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q=="
 | 
			
		||||
@@ -3350,9 +3363,9 @@
 | 
			
		||||
    "q" "^1.1.2"
 | 
			
		||||
 | 
			
		||||
"code-brick-zj@^1.0.2":
 | 
			
		||||
  "integrity" "sha512-X4N7gt3Vn8MIItI0q2N7M521hXPeBpaIvJXDFApvHhdXl++nc6QtrFXPqbZ9KPNUovkXOc/D9eWcu3pq5WPxpQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/code-brick-zj/-/code-brick-zj-1.1.1.tgz"
 | 
			
		||||
  "version" "1.1.1"
 | 
			
		||||
  "integrity" "sha512-V8XwYqXjIPMfPCaZMja4I2MJPT45EEnzRmTL1Ps6aMsmUQ/PhZ48OwUvddBFNqNZeVV13aPm1b5K1c3ogfad8Q=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/code-brick-zj/-/code-brick-zj-1.0.2.tgz"
 | 
			
		||||
  "version" "1.0.2"
 | 
			
		||||
 | 
			
		||||
"codepage@~1.15.0":
 | 
			
		||||
  "integrity" "sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA=="
 | 
			
		||||
@@ -3367,7 +3380,14 @@
 | 
			
		||||
    "map-visit" "^1.0.0"
 | 
			
		||||
    "object-visit" "^1.0.0"
 | 
			
		||||
 | 
			
		||||
"color-convert@^1.9.0", "color-convert@^1.9.3":
 | 
			
		||||
"color-convert@^1.9.0":
 | 
			
		||||
  "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz"
 | 
			
		||||
  "version" "1.9.3"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "color-name" "1.1.3"
 | 
			
		||||
 | 
			
		||||
"color-convert@^1.9.3":
 | 
			
		||||
  "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz"
 | 
			
		||||
  "version" "1.9.3"
 | 
			
		||||
@@ -3381,16 +3401,16 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "color-name" "~1.1.4"
 | 
			
		||||
 | 
			
		||||
"color-name@^1.0.0", "color-name@1.1.3":
 | 
			
		||||
  "integrity" "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz"
 | 
			
		||||
  "version" "1.1.3"
 | 
			
		||||
 | 
			
		||||
"color-name@~1.1.4":
 | 
			
		||||
"color-name@^1.0.0", "color-name@~1.1.4":
 | 
			
		||||
  "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz"
 | 
			
		||||
  "version" "1.1.4"
 | 
			
		||||
 | 
			
		||||
"color-name@1.1.3":
 | 
			
		||||
  "integrity" "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz"
 | 
			
		||||
  "version" "1.1.3"
 | 
			
		||||
 | 
			
		||||
"color-string@^1.6.0":
 | 
			
		||||
  "integrity" "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/color-string/-/color-string-1.9.1.tgz"
 | 
			
		||||
@@ -3419,7 +3439,22 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "delayed-stream" "~1.0.0"
 | 
			
		||||
 | 
			
		||||
"commander@*", "commander@^2.18.0", "commander@^2.19.0", "commander@^2.20.0":
 | 
			
		||||
"commander@*", "commander@2.17.x":
 | 
			
		||||
  "integrity" "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/commander/-/commander-2.17.1.tgz"
 | 
			
		||||
  "version" "2.17.1"
 | 
			
		||||
 | 
			
		||||
"commander@^2.18.0":
 | 
			
		||||
  "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz"
 | 
			
		||||
  "version" "2.20.3"
 | 
			
		||||
 | 
			
		||||
"commander@^2.19.0":
 | 
			
		||||
  "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz"
 | 
			
		||||
  "version" "2.20.3"
 | 
			
		||||
 | 
			
		||||
"commander@^2.20.0":
 | 
			
		||||
  "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz"
 | 
			
		||||
  "version" "2.20.3"
 | 
			
		||||
@@ -3434,11 +3469,6 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/commander/-/commander-2.19.0.tgz"
 | 
			
		||||
  "version" "2.19.0"
 | 
			
		||||
 | 
			
		||||
"commander@2.17.x":
 | 
			
		||||
  "integrity" "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/commander/-/commander-2.17.1.tgz"
 | 
			
		||||
  "version" "2.17.1"
 | 
			
		||||
 | 
			
		||||
"commondir@^1.0.1":
 | 
			
		||||
  "integrity" "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/commondir/-/commondir-1.0.1.tgz"
 | 
			
		||||
@@ -3664,7 +3694,7 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/core-js/-/core-js-2.6.12.tgz"
 | 
			
		||||
  "version" "2.6.12"
 | 
			
		||||
 | 
			
		||||
"core-js@^3.26.0", "core-js@^3.6.0", "core-js@^3.6.5", "core-js@^3.8.3":
 | 
			
		||||
"core-js@^3", "core-js@^3.26.0", "core-js@^3.6.0", "core-js@^3.8.3":
 | 
			
		||||
  "integrity" "sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/core-js/-/core-js-3.31.1.tgz"
 | 
			
		||||
  "version" "3.31.1"
 | 
			
		||||
@@ -4330,7 +4360,7 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/domready/-/domready-1.0.8.tgz"
 | 
			
		||||
  "version" "1.0.8"
 | 
			
		||||
 | 
			
		||||
"domutils@^1.5.1", "domutils@^1.7.0":
 | 
			
		||||
"domutils@^1.5.1":
 | 
			
		||||
  "integrity" "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/domutils/-/domutils-1.7.0.tgz"
 | 
			
		||||
  "version" "1.7.0"
 | 
			
		||||
@@ -4338,16 +4368,15 @@
 | 
			
		||||
    "dom-serializer" "0"
 | 
			
		||||
    "domelementtype" "1"
 | 
			
		||||
 | 
			
		||||
"domutils@^2.5.2":
 | 
			
		||||
  "integrity" "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz"
 | 
			
		||||
  "version" "2.8.0"
 | 
			
		||||
"domutils@^1.7.0":
 | 
			
		||||
  "integrity" "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/domutils/-/domutils-1.7.0.tgz"
 | 
			
		||||
  "version" "1.7.0"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "dom-serializer" "^1.0.1"
 | 
			
		||||
    "domelementtype" "^2.2.0"
 | 
			
		||||
    "domhandler" "^4.2.0"
 | 
			
		||||
    "dom-serializer" "0"
 | 
			
		||||
    "domelementtype" "1"
 | 
			
		||||
 | 
			
		||||
"domutils@^2.8.0":
 | 
			
		||||
"domutils@^2.5.2", "domutils@^2.8.0":
 | 
			
		||||
  "integrity" "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz"
 | 
			
		||||
  "version" "2.8.0"
 | 
			
		||||
@@ -4570,7 +4599,7 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "stackframe" "^1.3.4"
 | 
			
		||||
 | 
			
		||||
"es-abstract@^1.17.2", "es-abstract@^1.19.0", "es-abstract@^1.20.4", "es-abstract@^1.21.2":
 | 
			
		||||
"es-abstract@^1.19.0", "es-abstract@^1.20.4", "es-abstract@^1.21.2":
 | 
			
		||||
  "integrity" "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.1.tgz"
 | 
			
		||||
  "version" "1.22.1"
 | 
			
		||||
@@ -5176,6 +5205,11 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/file-saver/-/file-saver-2.0.5.tgz"
 | 
			
		||||
  "version" "2.0.5"
 | 
			
		||||
 | 
			
		||||
"file-uri-to-path@1.0.0":
 | 
			
		||||
  "integrity" "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"
 | 
			
		||||
  "version" "1.0.0"
 | 
			
		||||
 | 
			
		||||
"filesize@^3.6.1":
 | 
			
		||||
  "integrity" "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/filesize/-/filesize-3.6.1.tgz"
 | 
			
		||||
@@ -5518,7 +5552,14 @@
 | 
			
		||||
    "is-glob" "^3.1.0"
 | 
			
		||||
    "path-dirname" "^1.0.0"
 | 
			
		||||
 | 
			
		||||
"glob-parent@^5.0.0", "glob-parent@~5.1.2":
 | 
			
		||||
"glob-parent@^5.0.0":
 | 
			
		||||
  "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz"
 | 
			
		||||
  "version" "5.1.2"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "is-glob" "^4.0.1"
 | 
			
		||||
 | 
			
		||||
"glob-parent@~5.1.2":
 | 
			
		||||
  "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz"
 | 
			
		||||
  "version" "5.1.2"
 | 
			
		||||
@@ -5721,7 +5762,7 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz"
 | 
			
		||||
  "version" "1.0.1"
 | 
			
		||||
 | 
			
		||||
"has-symbols@^1.0.1", "has-symbols@^1.0.2", "has-symbols@^1.0.3":
 | 
			
		||||
"has-symbols@^1.0.2", "has-symbols@^1.0.3":
 | 
			
		||||
  "integrity" "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz"
 | 
			
		||||
  "version" "1.0.3"
 | 
			
		||||
@@ -6360,16 +6401,7 @@
 | 
			
		||||
    "is-data-descriptor" "^0.1.4"
 | 
			
		||||
    "kind-of" "^5.0.0"
 | 
			
		||||
 | 
			
		||||
"is-descriptor@^1.0.0":
 | 
			
		||||
  "integrity" "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz"
 | 
			
		||||
  "version" "1.0.2"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "is-accessor-descriptor" "^1.0.0"
 | 
			
		||||
    "is-data-descriptor" "^1.0.0"
 | 
			
		||||
    "kind-of" "^6.0.2"
 | 
			
		||||
 | 
			
		||||
"is-descriptor@^1.0.2":
 | 
			
		||||
"is-descriptor@^1.0.0", "is-descriptor@^1.0.2":
 | 
			
		||||
  "integrity" "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/is-descriptor/-/is-descriptor-1.0.2.tgz"
 | 
			
		||||
  "version" "1.0.2"
 | 
			
		||||
@@ -6393,6 +6425,11 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz"
 | 
			
		||||
  "version" "0.1.1"
 | 
			
		||||
 | 
			
		||||
"is-extendable@^0.1.1":
 | 
			
		||||
  "integrity" "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz"
 | 
			
		||||
  "version" "0.1.1"
 | 
			
		||||
 | 
			
		||||
"is-extendable@^1.0.1":
 | 
			
		||||
  "integrity" "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/is-extendable/-/is-extendable-1.0.1.tgz"
 | 
			
		||||
@@ -6594,7 +6631,7 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "is-docker" "^2.0.0"
 | 
			
		||||
 | 
			
		||||
"isarray@^1.0.0", "isarray@~1.0.0", "isarray@1.0.0":
 | 
			
		||||
"isarray@^1.0.0":
 | 
			
		||||
  "integrity" "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz"
 | 
			
		||||
  "version" "1.0.0"
 | 
			
		||||
@@ -6604,6 +6641,16 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz"
 | 
			
		||||
  "version" "2.0.5"
 | 
			
		||||
 | 
			
		||||
"isarray@~1.0.0":
 | 
			
		||||
  "integrity" "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz"
 | 
			
		||||
  "version" "1.0.0"
 | 
			
		||||
 | 
			
		||||
"isarray@1.0.0":
 | 
			
		||||
  "integrity" "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/isarray/-/isarray-1.0.0.tgz"
 | 
			
		||||
  "version" "1.0.0"
 | 
			
		||||
 | 
			
		||||
"isexe@^2.0.0":
 | 
			
		||||
  "integrity" "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz"
 | 
			
		||||
@@ -6812,14 +6859,7 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/killable/-/killable-1.0.1.tgz"
 | 
			
		||||
  "version" "1.0.1"
 | 
			
		||||
 | 
			
		||||
"kind-of@^3.0.2":
 | 
			
		||||
  "integrity" "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz"
 | 
			
		||||
  "version" "3.2.2"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "is-buffer" "^1.1.5"
 | 
			
		||||
 | 
			
		||||
"kind-of@^3.0.3":
 | 
			
		||||
"kind-of@^3.0.2", "kind-of@^3.0.3":
 | 
			
		||||
  "integrity" "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/kind-of/-/kind-of-3.2.2.tgz"
 | 
			
		||||
  "version" "3.2.2"
 | 
			
		||||
@@ -7078,7 +7118,23 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/lower-case/-/lower-case-1.1.4.tgz"
 | 
			
		||||
  "version" "1.1.4"
 | 
			
		||||
 | 
			
		||||
"lru-cache@^4.0.1", "lru-cache@^4.1.2", "lru-cache@^4.1.5":
 | 
			
		||||
"lru-cache@^4.0.1":
 | 
			
		||||
  "integrity" "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz"
 | 
			
		||||
  "version" "4.1.5"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "pseudomap" "^1.0.2"
 | 
			
		||||
    "yallist" "^2.1.2"
 | 
			
		||||
 | 
			
		||||
"lru-cache@^4.1.2":
 | 
			
		||||
  "integrity" "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz"
 | 
			
		||||
  "version" "4.1.5"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "pseudomap" "^1.0.2"
 | 
			
		||||
    "yallist" "^2.1.2"
 | 
			
		||||
 | 
			
		||||
"lru-cache@^4.1.5":
 | 
			
		||||
  "integrity" "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/lru-cache/-/lru-cache-4.1.5.tgz"
 | 
			
		||||
  "version" "4.1.5"
 | 
			
		||||
@@ -7397,18 +7453,7 @@
 | 
			
		||||
    "component-query" "^0.0.3"
 | 
			
		||||
    "domify" "^1.3.1"
 | 
			
		||||
 | 
			
		||||
"min-dom@^3.1.0":
 | 
			
		||||
  "integrity" "sha512-v6YCmnDzxk4rRJntWTUiwggLupPw/8ZSRqUq0PDaBwVZEO/wYzCH4SKVBV+KkEvf3u0XaWHly5JEosPtqRATZA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/min-dom/-/min-dom-3.2.1.tgz"
 | 
			
		||||
  "version" "3.2.1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "component-event" "^0.1.4"
 | 
			
		||||
    "domify" "^1.3.1"
 | 
			
		||||
    "indexof" "0.0.1"
 | 
			
		||||
    "matches-selector" "^1.2.0"
 | 
			
		||||
    "min-dash" "^3.8.1"
 | 
			
		||||
 | 
			
		||||
"min-dom@^3.1.3":
 | 
			
		||||
"min-dom@^3.1.0", "min-dom@^3.1.3":
 | 
			
		||||
  "integrity" "sha512-v6YCmnDzxk4rRJntWTUiwggLupPw/8ZSRqUq0PDaBwVZEO/wYzCH4SKVBV+KkEvf3u0XaWHly5JEosPtqRATZA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/min-dom/-/min-dom-3.2.1.tgz"
 | 
			
		||||
  "version" "3.2.1"
 | 
			
		||||
@@ -7535,38 +7580,22 @@
 | 
			
		||||
    "for-in" "^1.0.2"
 | 
			
		||||
    "is-extendable" "^1.0.1"
 | 
			
		||||
 | 
			
		||||
"mkdirp@^0.5.1":
 | 
			
		||||
"mkdirp@^0.5.1", "mkdirp@^0.5.3", "mkdirp@^0.5.6", "mkdirp@~0.5.1":
 | 
			
		||||
  "integrity" "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz"
 | 
			
		||||
  "version" "0.5.6"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "minimist" "^1.2.6"
 | 
			
		||||
 | 
			
		||||
"mkdirp@^0.5.3":
 | 
			
		||||
  "integrity" "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz"
 | 
			
		||||
  "version" "0.5.6"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "minimist" "^1.2.6"
 | 
			
		||||
 | 
			
		||||
"mkdirp@^0.5.6":
 | 
			
		||||
  "integrity" "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz"
 | 
			
		||||
  "version" "0.5.6"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "minimist" "^1.2.6"
 | 
			
		||||
 | 
			
		||||
"mkdirp@^1.0.3", "mkdirp@^1.0.4":
 | 
			
		||||
"mkdirp@^1.0.3":
 | 
			
		||||
  "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/mkdirp/-/mkdirp-1.0.4.tgz"
 | 
			
		||||
  "version" "1.0.4"
 | 
			
		||||
 | 
			
		||||
"mkdirp@~0.5.1":
 | 
			
		||||
  "integrity" "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz"
 | 
			
		||||
  "version" "0.5.6"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "minimist" "^1.2.6"
 | 
			
		||||
"mkdirp@^1.0.4":
 | 
			
		||||
  "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/mkdirp/-/mkdirp-1.0.4.tgz"
 | 
			
		||||
  "version" "1.0.4"
 | 
			
		||||
 | 
			
		||||
"mockjs@^1.1.0":
 | 
			
		||||
  "integrity" "sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ=="
 | 
			
		||||
@@ -7969,7 +7998,7 @@
 | 
			
		||||
    "define-properties" "^1.1.4"
 | 
			
		||||
    "es-abstract" "^1.20.4"
 | 
			
		||||
 | 
			
		||||
"object.getownpropertydescriptors@^2.0.3", "object.getownpropertydescriptors@^2.1.0":
 | 
			
		||||
"object.getownpropertydescriptors@^2.0.3":
 | 
			
		||||
  "integrity" "sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz"
 | 
			
		||||
  "version" "2.1.6"
 | 
			
		||||
@@ -8039,14 +8068,7 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "mimic-fn" "^1.0.0"
 | 
			
		||||
 | 
			
		||||
"onetime@^5.1.0":
 | 
			
		||||
  "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz"
 | 
			
		||||
  "version" "5.1.2"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "mimic-fn" "^2.1.0"
 | 
			
		||||
 | 
			
		||||
"onetime@^5.1.2":
 | 
			
		||||
"onetime@^5.1.0", "onetime@^5.1.2":
 | 
			
		||||
  "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz"
 | 
			
		||||
  "version" "5.1.2"
 | 
			
		||||
@@ -8787,7 +8809,7 @@
 | 
			
		||||
    "source-map" "^0.5.6"
 | 
			
		||||
    "supports-color" "^3.2.3"
 | 
			
		||||
 | 
			
		||||
"postcss@^7.0.0":
 | 
			
		||||
"postcss@^7.0.0", "postcss@^7.0.1", "postcss@^7.0.14", "postcss@^7.0.27", "postcss@^7.0.32", "postcss@^7.0.36", "postcss@^7.0.5", "postcss@^7.0.6", "postcss@>4 <9":
 | 
			
		||||
  "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz"
 | 
			
		||||
  "version" "7.0.39"
 | 
			
		||||
@@ -8795,63 +8817,16 @@
 | 
			
		||||
    "picocolors" "^0.2.1"
 | 
			
		||||
    "source-map" "^0.6.1"
 | 
			
		||||
 | 
			
		||||
"postcss@^7.0.1":
 | 
			
		||||
  "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz"
 | 
			
		||||
  "version" "7.0.39"
 | 
			
		||||
"postcss@^8.1.10":
 | 
			
		||||
  "integrity" "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-8.4.27.tgz"
 | 
			
		||||
  "version" "8.4.27"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "picocolors" "^0.2.1"
 | 
			
		||||
    "source-map" "^0.6.1"
 | 
			
		||||
    "nanoid" "^3.3.6"
 | 
			
		||||
    "picocolors" "^1.0.0"
 | 
			
		||||
    "source-map-js" "^1.0.2"
 | 
			
		||||
 | 
			
		||||
"postcss@^7.0.14":
 | 
			
		||||
  "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz"
 | 
			
		||||
  "version" "7.0.39"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "picocolors" "^0.2.1"
 | 
			
		||||
    "source-map" "^0.6.1"
 | 
			
		||||
 | 
			
		||||
"postcss@^7.0.27":
 | 
			
		||||
  "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz"
 | 
			
		||||
  "version" "7.0.39"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "picocolors" "^0.2.1"
 | 
			
		||||
    "source-map" "^0.6.1"
 | 
			
		||||
 | 
			
		||||
"postcss@^7.0.32":
 | 
			
		||||
  "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz"
 | 
			
		||||
  "version" "7.0.39"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "picocolors" "^0.2.1"
 | 
			
		||||
    "source-map" "^0.6.1"
 | 
			
		||||
 | 
			
		||||
"postcss@^7.0.36":
 | 
			
		||||
  "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz"
 | 
			
		||||
  "version" "7.0.39"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "picocolors" "^0.2.1"
 | 
			
		||||
    "source-map" "^0.6.1"
 | 
			
		||||
 | 
			
		||||
"postcss@^7.0.5":
 | 
			
		||||
  "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz"
 | 
			
		||||
  "version" "7.0.39"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "picocolors" "^0.2.1"
 | 
			
		||||
    "source-map" "^0.6.1"
 | 
			
		||||
 | 
			
		||||
"postcss@^7.0.6":
 | 
			
		||||
  "integrity" "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-7.0.39.tgz"
 | 
			
		||||
  "version" "7.0.39"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "picocolors" "^0.2.1"
 | 
			
		||||
    "source-map" "^0.6.1"
 | 
			
		||||
 | 
			
		||||
"postcss@^8.1.10", "postcss@^8.4.14", "postcss@>4 <9":
 | 
			
		||||
"postcss@^8.4.14":
 | 
			
		||||
  "integrity" "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/postcss/-/postcss-8.4.27.tgz"
 | 
			
		||||
  "version" "8.4.27"
 | 
			
		||||
@@ -9433,7 +9408,21 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/rgbcolor/-/rgbcolor-1.0.1.tgz"
 | 
			
		||||
  "version" "1.0.1"
 | 
			
		||||
 | 
			
		||||
"rimraf@^2.5.4", "rimraf@^2.6.1", "rimraf@^2.6.3":
 | 
			
		||||
"rimraf@^2.5.4":
 | 
			
		||||
  "integrity" "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/rimraf/-/rimraf-2.7.1.tgz"
 | 
			
		||||
  "version" "2.7.1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "glob" "^7.1.3"
 | 
			
		||||
 | 
			
		||||
"rimraf@^2.6.1":
 | 
			
		||||
  "integrity" "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/rimraf/-/rimraf-2.7.1.tgz"
 | 
			
		||||
  "version" "2.7.1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "glob" "^7.1.3"
 | 
			
		||||
 | 
			
		||||
"rimraf@^2.6.3":
 | 
			
		||||
  "integrity" "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/rimraf/-/rimraf-2.7.1.tgz"
 | 
			
		||||
  "version" "2.7.1"
 | 
			
		||||
@@ -9661,32 +9650,17 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "node-forge" "^0.10.0"
 | 
			
		||||
 | 
			
		||||
"semver@^5.5.0", "semver@^5.6.0", "semver@2 || 3 || 4 || 5":
 | 
			
		||||
"semver@^5.5.0":
 | 
			
		||||
  "integrity" "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz"
 | 
			
		||||
  "version" "5.7.2"
 | 
			
		||||
 | 
			
		||||
"semver@^6.0.0":
 | 
			
		||||
  "integrity" "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz"
 | 
			
		||||
  "version" "6.3.1"
 | 
			
		||||
"semver@^5.6.0":
 | 
			
		||||
  "integrity" "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz"
 | 
			
		||||
  "version" "5.7.2"
 | 
			
		||||
 | 
			
		||||
"semver@^6.1.0":
 | 
			
		||||
  "integrity" "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz"
 | 
			
		||||
  "version" "6.3.1"
 | 
			
		||||
 | 
			
		||||
"semver@^6.1.2":
 | 
			
		||||
  "integrity" "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz"
 | 
			
		||||
  "version" "6.3.1"
 | 
			
		||||
 | 
			
		||||
"semver@^6.3.0":
 | 
			
		||||
  "integrity" "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz"
 | 
			
		||||
  "version" "6.3.1"
 | 
			
		||||
 | 
			
		||||
"semver@^6.3.1":
 | 
			
		||||
"semver@^6.0.0", "semver@^6.1.0", "semver@^6.1.2", "semver@^6.3.0", "semver@^6.3.1":
 | 
			
		||||
  "integrity" "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz"
 | 
			
		||||
  "version" "6.3.1"
 | 
			
		||||
@@ -9712,6 +9686,11 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "lru-cache" "^6.0.0"
 | 
			
		||||
 | 
			
		||||
"semver@2 || 3 || 4 || 5":
 | 
			
		||||
  "integrity" "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz"
 | 
			
		||||
  "version" "5.7.2"
 | 
			
		||||
 | 
			
		||||
"send@0.18.0":
 | 
			
		||||
  "integrity" "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/send/-/send-0.18.0.tgz"
 | 
			
		||||
@@ -10389,14 +10368,7 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "has-flag" "^3.0.0"
 | 
			
		||||
 | 
			
		||||
"supports-color@^7.0.0":
 | 
			
		||||
  "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz"
 | 
			
		||||
  "version" "7.2.0"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "has-flag" "^4.0.0"
 | 
			
		||||
 | 
			
		||||
"supports-color@^7.1.0":
 | 
			
		||||
"supports-color@^7.0.0", "supports-color@^7.1.0":
 | 
			
		||||
  "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz"
 | 
			
		||||
  "version" "7.2.0"
 | 
			
		||||
@@ -11049,17 +11021,7 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz"
 | 
			
		||||
  "version" "1.0.2"
 | 
			
		||||
 | 
			
		||||
"util.promisify@~1.0.0":
 | 
			
		||||
  "integrity" "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/util.promisify/-/util.promisify-1.0.1.tgz"
 | 
			
		||||
  "version" "1.0.1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "define-properties" "^1.1.3"
 | 
			
		||||
    "es-abstract" "^1.17.2"
 | 
			
		||||
    "has-symbols" "^1.0.1"
 | 
			
		||||
    "object.getownpropertydescriptors" "^2.1.0"
 | 
			
		||||
 | 
			
		||||
"util.promisify@1.0.0":
 | 
			
		||||
"util.promisify@~1.0.0", "util.promisify@1.0.0":
 | 
			
		||||
  "integrity" "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/util.promisify/-/util.promisify-1.0.0.tgz"
 | 
			
		||||
  "version" "1.0.0"
 | 
			
		||||
@@ -11340,6 +11302,15 @@
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz"
 | 
			
		||||
  "version" "2.3.4"
 | 
			
		||||
 | 
			
		||||
"vue-loader-v16@npm:vue-loader@^16.1.0":
 | 
			
		||||
  "integrity" "sha512-7vKN45IxsKxe5GcVCbc2qFU5aWzyiLrYJyUuMz4BQLKctCj/fmCa0w6fGiiQ2cLFetNcek1ppGJQDCup0c1hpA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/vue-loader/-/vue-loader-16.8.3.tgz"
 | 
			
		||||
  "version" "16.8.3"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "chalk" "^4.1.0"
 | 
			
		||||
    "hash-sum" "^2.0.0"
 | 
			
		||||
    "loader-utils" "^2.0.0"
 | 
			
		||||
 | 
			
		||||
"vue-loader@^15.9.2":
 | 
			
		||||
  "integrity" "sha512-SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/vue-loader/-/vue-loader-15.10.1.tgz"
 | 
			
		||||
@@ -11566,7 +11537,7 @@
 | 
			
		||||
    "source-list-map" "^2.0.0"
 | 
			
		||||
    "source-map" "~0.6.1"
 | 
			
		||||
 | 
			
		||||
"webpack@^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0", "webpack@^2.0.0 || ^3.0.0 || ^4.0.0", "webpack@^3.0.0 || ^4.1.0 || ^5.0.0-0", "webpack@^4.0.0", "webpack@^4.0.0 || ^5.0.0", "webpack@^4.36.0 || ^5.0.0", "webpack@^4.4.0", "webpack@>=2", "webpack@>=2.0.0 <5.0.0", "webpack@>=4.0.0":
 | 
			
		||||
"webpack@^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0", "webpack@^2.0.0 || ^3.0.0 || ^4.0.0", "webpack@^3.0.0 || ^4.1.0 || ^5.0.0-0", "webpack@^4.0.0", "webpack@^4.0.0 || ^5.0.0", "webpack@^4.1.0 || ^5.0.0-0", "webpack@^4.36.0 || ^5.0.0", "webpack@^4.4.0", "webpack@>=2", "webpack@>=2.0.0 <5.0.0", "webpack@>=4.0.0":
 | 
			
		||||
  "integrity" "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/webpack/-/webpack-4.46.0.tgz"
 | 
			
		||||
  "version" "4.46.0"
 | 
			
		||||
@@ -11724,7 +11695,14 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "mkdirp" "^0.5.1"
 | 
			
		||||
 | 
			
		||||
"ws@^6.0.0", "ws@^6.2.1":
 | 
			
		||||
"ws@^6.0.0":
 | 
			
		||||
  "integrity" "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/ws/-/ws-6.2.2.tgz"
 | 
			
		||||
  "version" "6.2.2"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "async-limiter" "~1.0.0"
 | 
			
		||||
 | 
			
		||||
"ws@^6.2.1":
 | 
			
		||||
  "integrity" "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw=="
 | 
			
		||||
  "resolved" "https://registry.npmmirror.com/ws/-/ws-6.2.2.tgz"
 | 
			
		||||
  "version" "6.2.2"
 | 
			
		||||
 
 | 
			
		||||