Merge branch 'projects/mesxc-test' into projects/mesxc-dy
This commit is contained in:
		@@ -2,7 +2,7 @@
 | 
			
		||||
 * @Author: zwq
 | 
			
		||||
 * @Date: 2021-07-19 15:18:30
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @LastEditTime: 2024-04-25 09:02:38
 | 
			
		||||
 * @LastEditTime: 2024-04-26 09:57:41
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
@@ -42,20 +42,21 @@
 | 
			
		||||
              <el-row v-for="op in orderList" :key="op.id" style="margin-bottom: .5em;overflow: hidden;">
 | 
			
		||||
                <!-- <el-col :span="12"> -->
 | 
			
		||||
                <!-- <div style="height: 34px;"> -->
 | 
			
		||||
                <span style="display: inline-block;width: 400px;height: 10px;">
 | 
			
		||||
                  <span class="now-secondary-title" style="font-size: 14px;opacity: calc(.6);">{{ op.name }}</span>
 | 
			
		||||
                  <el-divider class="split" v-if="op.name" direction="vertical"></el-divider>
 | 
			
		||||
                <span style="display: inline-block;width: 400px">
 | 
			
		||||
                  <span v-if="op.name" class="now-secondary-title" style="font-size: 14px;opacity: calc(.6);">{{ op.name
 | 
			
		||||
                  }}</span>
 | 
			
		||||
                  <el-divider v-if="op.specifications" class="split" direction="vertical"></el-divider>
 | 
			
		||||
                  <!-- <span v-if="op.size" class="split"></span> -->
 | 
			
		||||
                  <span v-if="op.specifications" class="orderSize" style="font-size: 14px;opacity: calc(.6);">{{
 | 
			
		||||
                  op.specifications }}</span>
 | 
			
		||||
                  <el-divider class="split" v-if="op.specifications" direction="vertical"></el-divider>
 | 
			
		||||
                  <el-divider class="split" v-if="op.planQuantity" direction="vertical"></el-divider>
 | 
			
		||||
                  <span v-if="op.planQuantity" class="orderPlan" style="font-size: 14px;opacity: calc(.6);">{{
 | 
			
		||||
                  op.planQuantity }}</span>
 | 
			
		||||
                  <span v-if="op.planQuantity" class="orderFinishTwo"
 | 
			
		||||
                    style="font-size: 14px;opacity: calc(.6);">片</span>
 | 
			
		||||
                </span>
 | 
			
		||||
                <!-- <span style="overflow: hidden;"> -->
 | 
			
		||||
                <span v-if="op.actualQuantity" class="orderFinish" style="font-size: 14px;margin-left: 40px;">{{
 | 
			
		||||
                <span class="orderFinish" style="font-size: 14px;margin-left: 40px;">{{
 | 
			
		||||
                op.actualQuantity
 | 
			
		||||
                }}</span>
 | 
			
		||||
                <span v-if="op.actualQuantity" class="orderFinishTwo" style="font-size: 14px">片</span>
 | 
			
		||||
@@ -298,11 +299,11 @@ export default {
 | 
			
		||||
			// equipmentList:[],
 | 
			
		||||
			EnergyMonitoringList: [],
 | 
			
		||||
			eqConfig: {
 | 
			
		||||
				header: ['序号', '设备名称', '产线名', '设备状态'],
 | 
			
		||||
        header: ['序号', '产线名', '设备名称', '设备状态'],
 | 
			
		||||
				headerBGC: 'rgba(32, 55, 96, 0.8)',
 | 
			
		||||
				oddRowBGC: 'rgba(32, 55, 96, 0.8)',
 | 
			
		||||
				evenRowBGC: 'rgba(14, 32, 62, 0.8)',
 | 
			
		||||
				columnWidth: [70, 130, 240, 120],
 | 
			
		||||
				columnWidth: [70, 150, 200, 120],
 | 
			
		||||
				align: ['center'],
 | 
			
		||||
				data: [],
 | 
			
		||||
				// index:true,
 | 
			
		||||
@@ -387,7 +388,7 @@ export default {
 | 
			
		||||
        progressRate: 0.933333,
 | 
			
		||||
        specifications: '1100*5554*22',
 | 
			
		||||
        plan: 111111111111,
 | 
			
		||||
        actualQuantity:10000001111,
 | 
			
		||||
        actualQuantity:1000000111111,
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
				id: '2',
 | 
			
		||||
@@ -458,12 +459,12 @@ export default {
 | 
			
		||||
		this.orderList = detData.map((ele, index) => {
 | 
			
		||||
			if (ele.progressRate && ele.progressRate != 1) {
 | 
			
		||||
				return {
 | 
			
		||||
					id: ele.id,
 | 
			
		||||
					name: ele.name,
 | 
			
		||||
          id: ele.id,
 | 
			
		||||
          name: this.getStr(String(ele.name), 8),
 | 
			
		||||
          progressRate: parseFloat((ele.progressRate * 100).toFixed(0)),
 | 
			
		||||
          specifications: ele.specifications ?  '规格' + ele.specifications :'',
 | 
			
		||||
          planQuantity: ele.plan ? '计划' + this.getStr(String(ele.plan)) : '',
 | 
			
		||||
          actualQuantity: ele.actualQuantity ?this.getStr(String(ele.actualQuantity)) : '',
 | 
			
		||||
          specifications: ele.specifications ? '规格' + ele.specifications : '',
 | 
			
		||||
          planQuantity: ele.plan ? '计划' + this.getStr(String(ele.plan), 6) : '',
 | 
			
		||||
          actualQuantity: ele.actualQuantity ? this.getStr(String(ele.actualQuantity), 6) : '',
 | 
			
		||||
				};
 | 
			
		||||
			}
 | 
			
		||||
		});
 | 
			
		||||
@@ -483,10 +484,9 @@ export default {
 | 
			
		||||
			`<span style="color:rgba(255,255,255,0.5)" >${index + 1 || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
			// formatDate(item.planStartTime) || '',
 | 
			
		||||
			`
 | 
			
		||||
      `<span style="color:rgba(255,255,255,0.5)">${item.lineName || ''}</span>`,`
 | 
			
		||||
          <span style="color:rgba(255,255,255,0.5)" >${item.name || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
			`<span style="color:rgba(255,255,255,0.5)">${item.lineName || ''}</span>`,
 | 
			
		||||
      `<span style="color:rgba(255,255,255,0.5)"><div style="${item.status == '运行' ? 'box-shadow: 0px 0px 2px 1px #2760FF;width:6px;height:6px;border-radius: 50%;background-color: #2760FF;float:left;margin:13px 10px 0 0' : item.status == '停机' ? 'box-shadow: 0px 0px 2px 1px #FFBD02;width:6px;height:6px;border-radius: 50%;background-color: #FFBD02;float:left;margin:13px 10px 0 0 ' : 'box-shadow: 0px 0px 2px 1px red;width:6px;height:6px;border-radius: 50%;  background-color: red;float:left;margin:13px 10px 0 0'}"></div>  ${item.status || ''}</span>`,
 | 
			
		||||
		]);
 | 
			
		||||
    this.eqConfig.data = eqArr;
 | 
			
		||||
@@ -566,10 +566,10 @@ export default {
 | 
			
		||||
	//   removeEventListener('resize', resizeFun)
 | 
			
		||||
	// },
 | 
			
		||||
  methods: {
 | 
			
		||||
    getStr(str) {
 | 
			
		||||
    getStr(str,num) {
 | 
			
		||||
          //你要处理的字符串
 | 
			
		||||
      if (str.length > 6) {      //如果字符长度超过10,后面的字符就变成...可自行调整长度和代替字符
 | 
			
		||||
        str = str.substr(0, 6) + "..."   //截取从第一个字符开始,往后取10个字符,剩余的用...代替
 | 
			
		||||
      if (str.length > num) {      //如果字符长度超过10,后面的字符就变成...可自行调整长度和代替字符
 | 
			
		||||
        str = str.substr(0, num) + "..."   //截取从第一个字符开始,往后取10个字符,剩余的用...代替
 | 
			
		||||
        return str
 | 
			
		||||
      } else {
 | 
			
		||||
        return str
 | 
			
		||||
@@ -743,12 +743,12 @@ export default {
 | 
			
		||||
					this.orderList = this.SJGWsData.detData.map((ele, index) => {
 | 
			
		||||
						if (ele.progressRate && ele.progressRate != 1) {
 | 
			
		||||
							return {
 | 
			
		||||
								id: ele.id,
 | 
			
		||||
								name: ele.name,
 | 
			
		||||
                id: ele.id,
 | 
			
		||||
                name: this.getStr(String(ele.name), 8),
 | 
			
		||||
                progressRate: parseFloat((ele.progressRate * 100).toFixed(0)),
 | 
			
		||||
                specifications: ele.specifications ?  '规格' + ele.specifications :null,
 | 
			
		||||
                planQuantity: ele.planQuantity  ? '计划' + ele.planQuantity + '片' : null,
 | 
			
		||||
                actualQuantity: ele.actualQuantity ? ele.actualQuantity + '片' : null,
 | 
			
		||||
                specifications: ele.specifications ? '规格' + ele.specifications : '',
 | 
			
		||||
                planQuantity: ele.planQuantity ? '计划' + this.getStr(String(ele.planQuantity),6) : '',
 | 
			
		||||
                actualQuantity: ele.actualQuantity ? this.getStr(String(ele.actualQuantity), 6) : '',
 | 
			
		||||
							};
 | 
			
		||||
						}
 | 
			
		||||
					});
 | 
			
		||||
@@ -757,11 +757,11 @@ export default {
 | 
			
		||||
					let eqArr = this.SJGWsData.detData.map((item, index) => [
 | 
			
		||||
						`<span style="color:rgba(255,255,255,0.5)" >${index + 1 || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
            `<span style="color:rgba(255,255,255,0.5)">${item.lineName || ''
 | 
			
		||||
            }</span>`,
 | 
			
		||||
						`<span style="color:rgba(255,255,255,0.5)" >${item.name || ''}
 | 
			
		||||
            </span>`,
 | 
			
		||||
						`<span style="color:rgba(255,255,255,0.5)">${
 | 
			
		||||
            item.lineName || ''
 | 
			
		||||
						}</span>`,
 | 
			
		||||
 | 
			
		||||
            `<span style="color:rgba(255,255,255,0.5)"><div style="${item.status == '运行' ? 'box-shadow: 0px 0px 2px 1px #2760FF;width:6px;height:6px;border-radius: 50%;background-color: #2760FF;float:left;margin:13px 10px 0 0' : item.status == '停机' ? 'box-shadow: 0px 0px 2px 1px #FFBD02;width:6px;height:6px;border-radius: 50%;background-color: #FFBD02;float:left;margin:13px 10px 0 0 ' : 'box-shadow: 0px 0px 2px 1px red;width:6px;height:6px;border-radius: 50%;  background-color: red;float:left;margin:13px 10px 0 0'}"></div>  ${item.status || ''}</span>`,
 | 
			
		||||
            // `<span style="color:rgba(255,255,255,0.5)"><div style="${item.error == false ? 'box-shadow: 0px 0px 2px 1px #2760FF;width:6px;height:6px;border-radius: 50%;background-color: #2760FF;float:left;margin:10px 10px 0 0 ' : 'box-shadow: 0px 0px 2px 1px red;width:6px;height:6px;border-radius: 50%;  background-color: red;float:left;margin:10px 10px 0 0 '}"></div>  ${item.error == true ?'是' :'否'  || ''}</span>`,
 | 
			
		||||
					]);
 | 
			
		||||
 
 | 
			
		||||
@@ -32,11 +32,11 @@ export default {
 | 
			
		||||
		return {
 | 
			
		||||
			timestr: '',
 | 
			
		||||
			config: {
 | 
			
		||||
				header: ['序号', '设备名称', '产线名', '设备状态'],
 | 
			
		||||
				header: ['序号', '产线名', '设备名称', '设备状态'],
 | 
			
		||||
				headerBGC: 'rgba(32, 55, 96, 0.8)',
 | 
			
		||||
				oddRowBGC: 'rgba(32, 55, 96, 0.8)',
 | 
			
		||||
				evenRowBGC: 'rgba(14, 32, 62, 0.8)',
 | 
			
		||||
				columnWidth: [60, 280, 120],
 | 
			
		||||
				columnWidth: [60, 120, 280],
 | 
			
		||||
				align: ['center'],
 | 
			
		||||
				data: [],
 | 
			
		||||
				// data: [
 | 
			
		||||
@@ -63,8 +63,8 @@ export default {
 | 
			
		||||
			handler(newVal, oldVal) {
 | 
			
		||||
				let outArr = this.sjgEquipment.map((item, index) => [
 | 
			
		||||
					index + 1,
 | 
			
		||||
					`<span title=${item.name || ''}>${item.name || ''}</span>`,
 | 
			
		||||
					`<span title=${item.lineName || ''}>${item.lineName || ''}</span>`,
 | 
			
		||||
					`<span title=${item.name || ''}>${item.name || ''}</span>`,
 | 
			
		||||
					`<span><div style="${
 | 
			
		||||
						item.status == '运行'
 | 
			
		||||
							? 'box-shadow: 0px 0px 2px 1px #2760FF;width:6px;height:6px;border-radius: 50%;background-color: #2760FF;float:left;margin:13px 10px 0 0 '
 | 
			
		||||
 
 | 
			
		||||
@@ -75,7 +75,7 @@ export default {
 | 
			
		||||
					selectOptions: [
 | 
			
		||||
						{ id: '1', name: '当前班次' },
 | 
			
		||||
						{ id: '2', name: '近24小时' },
 | 
			
		||||
						{ id: '3', name: '日报' },
 | 
			
		||||
						{ id: '3', name: '昨日日报' },
 | 
			
		||||
					],
 | 
			
		||||
					defaultSelect: '1',
 | 
			
		||||
					param: 'timeType',
 | 
			
		||||
@@ -112,7 +112,7 @@ export default {
 | 
			
		||||
					selectOptions: [
 | 
			
		||||
						{ id: '1', name: '当前班次' },
 | 
			
		||||
						{ id: '2', name: '近24小时' },
 | 
			
		||||
						{ id: '3', name: '日报' },
 | 
			
		||||
						{ id: '3', name: '昨日日报' },
 | 
			
		||||
					],
 | 
			
		||||
					param: 'timeType',
 | 
			
		||||
					clearable: false,
 | 
			
		||||
@@ -196,6 +196,7 @@ export default {
 | 
			
		||||
				this.tableProp = [];
 | 
			
		||||
				let timeArr = this.uniqueTime(data, 'timeStr');
 | 
			
		||||
				let arr = [];
 | 
			
		||||
				let arr1 = [];
 | 
			
		||||
				timeArr.map((item) => {
 | 
			
		||||
					let obj = {};
 | 
			
		||||
					obj.prop = item.timeStr;
 | 
			
		||||
@@ -203,7 +204,17 @@ export default {
 | 
			
		||||
					obj.minWidth = 140;
 | 
			
		||||
					arr.push(obj);
 | 
			
		||||
				});
 | 
			
		||||
				this.tableProp = this.tableProp1.concat(arr); //表头
 | 
			
		||||
				let obj1 = {};
 | 
			
		||||
				obj1.children = arr.length > 0 ? arr : [{ label: '合计' }];
 | 
			
		||||
				obj1.label =
 | 
			
		||||
					'24小时原片工段产量表(' +
 | 
			
		||||
					moment(this.queryParams.startTime).format('YYYY-MM-DD HH:mm:ss') +
 | 
			
		||||
					'-' +
 | 
			
		||||
					moment(this.queryParams.endTime).format('YYYY-MM-DD HH:mm:ss') +
 | 
			
		||||
					')';
 | 
			
		||||
				arr1.push(obj1);
 | 
			
		||||
				this.tableProp = this.tableProp1.concat(arr1); //表头
 | 
			
		||||
				console.log(this.tableProp);
 | 
			
		||||
				this.transferData(data);
 | 
			
		||||
			});
 | 
			
		||||
		},
 | 
			
		||||
@@ -286,7 +297,6 @@ export default {
 | 
			
		||||
		transferData(data) {
 | 
			
		||||
			let tempData = [];
 | 
			
		||||
			let lineNum = 0; //第一条产线
 | 
			
		||||
			let sumArr = [];
 | 
			
		||||
			for (let i = 0; i < data.length; i++) {
 | 
			
		||||
				if (i === 0) {
 | 
			
		||||
					this.procedureName.map((item) => {
 | 
			
		||||
@@ -299,37 +309,28 @@ export default {
 | 
			
		||||
					});
 | 
			
		||||
					lineNum++;
 | 
			
		||||
				} else {
 | 
			
		||||
					if (data[i].timeStr === '总计') {
 | 
			
		||||
						sumArr.push(data[i]);
 | 
			
		||||
					} else {
 | 
			
		||||
						if (data[i].lineName === data[i - 1].lineName) {
 | 
			
		||||
							//相同产线,添加列
 | 
			
		||||
							let startNum = 5 * (lineNum - 1);
 | 
			
		||||
							let endNum = 5 * lineNum - 1;
 | 
			
		||||
							for (let k = startNum; k <= endNum; k++) {
 | 
			
		||||
								let str = this.procedureName[k % 5];
 | 
			
		||||
								tempData[k][data[i].timeStr] = data[i][str.ename];
 | 
			
		||||
							}
 | 
			
		||||
						} else {
 | 
			
		||||
							//不同产线,同时添加5行
 | 
			
		||||
							this.procedureName.map((item) => {
 | 
			
		||||
								let obj = {};
 | 
			
		||||
								obj.lineName = data[i].lineName;
 | 
			
		||||
								obj.procedure = item.name;
 | 
			
		||||
								obj.eName = item.ename;
 | 
			
		||||
								obj[data[i].timeStr] = data[i][item.ename];
 | 
			
		||||
								tempData.push(obj);
 | 
			
		||||
							});
 | 
			
		||||
							lineNum++;
 | 
			
		||||
					if (data[i].lineName === data[i - 1].lineName) {
 | 
			
		||||
						//相同产线,添加列
 | 
			
		||||
						let startNum = 5 * (lineNum - 1);
 | 
			
		||||
						let endNum = 5 * lineNum - 1;
 | 
			
		||||
						for (let k = startNum; k <= endNum; k++) {
 | 
			
		||||
							let str = this.procedureName[k % 5];
 | 
			
		||||
							tempData[k][data[i].timeStr] = data[i][str.ename];
 | 
			
		||||
						}
 | 
			
		||||
					} else {
 | 
			
		||||
						//不同产线,同时添加5行
 | 
			
		||||
						this.procedureName.map((item) => {
 | 
			
		||||
							let obj = {};
 | 
			
		||||
							obj.lineName = data[i].lineName;
 | 
			
		||||
							obj.procedure = item.name;
 | 
			
		||||
							obj.eName = item.ename;
 | 
			
		||||
							obj[data[i].timeStr] = data[i][item.ename];
 | 
			
		||||
							tempData.push(obj);
 | 
			
		||||
						});
 | 
			
		||||
						lineNum++;
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
			for (let j = 0; j < tempData.length; j++) {
 | 
			
		||||
				sumArr.map((item) => {
 | 
			
		||||
					tempData[j]['总计'] = item[tempData[j].eName];
 | 
			
		||||
				});
 | 
			
		||||
			}
 | 
			
		||||
			this.tableData = tempData;
 | 
			
		||||
 | 
			
		||||
			this.$nextTick(() => {
 | 
			
		||||
@@ -395,7 +396,17 @@ export default {
 | 
			
		||||
					arr.push(obj);
 | 
			
		||||
				});
 | 
			
		||||
				arr.push({ prop: 'sum', label: '合计' });
 | 
			
		||||
				this.tableProp2 = this.tableProp1.concat(arr); //表头
 | 
			
		||||
				let arr1 = [];
 | 
			
		||||
				let obj1 = {};
 | 
			
		||||
				obj1.children = arr;
 | 
			
		||||
				obj1.label =
 | 
			
		||||
					'24小时深加工工段产量表(' +
 | 
			
		||||
					moment(this.queryParams2.startTime).format('YYYY-MM-DD HH:mm:ss') +
 | 
			
		||||
					'-' +
 | 
			
		||||
					moment(this.queryParams2.endTime).format('YYYY-MM-DD HH:mm:ss') +
 | 
			
		||||
					')';
 | 
			
		||||
				arr1.push(obj1);
 | 
			
		||||
				this.tableProp2 = this.tableProp1.concat(arr1); //表头
 | 
			
		||||
				this.getSpanArr(this.tableData2);
 | 
			
		||||
				this.$nextTick(() => {
 | 
			
		||||
					this.reTable2();
 | 
			
		||||
 
 | 
			
		||||
@@ -170,8 +170,8 @@ export default {
 | 
			
		||||
  mounted() {
 | 
			
		||||
    // this.formConfig[1].defaultSelect[]
 | 
			
		||||
    this.listQuery.startTime = Date.now()
 | 
			
		||||
    this.time = moment(new Date(Date.now())).format('YYYY-MM-DD')
 | 
			
		||||
    this.listQuery.endTime = Date.now() + 24 * 60 * 60 * 1000
 | 
			
		||||
    this.time = moment(new Date((Date.now())).setHours(8, 0, 0, 0)).format('YYYY-MM-DD HH:mm:ss') + moment(new Date(Date.now() + 24*60*60*1000).setHours(8, 0, 0, 0)).format('YYYY-MM-DD HH:mm:ss')
 | 
			
		||||
    this.listQuery.endTime = Date.now()
 | 
			
		||||
    // this.formConfig[0].defaultSelect[0] = Date.now()-24*60*60-1000
 | 
			
		||||
    this.getDataList()
 | 
			
		||||
    // this.getSpanArr(this.tableData)
 | 
			
		||||
@@ -308,7 +308,7 @@ export default {
 | 
			
		||||
            'sj11': null,
 | 
			
		||||
 | 
			
		||||
            'sj14': null,
 | 
			
		||||
            putType: '原料投入'
 | 
			
		||||
            putType: '原料投入(kg)'
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            classType: 1,
 | 
			
		||||
@@ -374,7 +374,7 @@ export default {
 | 
			
		||||
            'sj11': null,
 | 
			
		||||
 | 
			
		||||
            'sj14': null,
 | 
			
		||||
            putType: '原料投入',
 | 
			
		||||
            putType: '原料投入(kg)',
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            classType: 2,
 | 
			
		||||
@@ -440,7 +440,7 @@ export default {
 | 
			
		||||
            'sj11': null,
 | 
			
		||||
 | 
			
		||||
            'sj14': null,
 | 
			
		||||
            putType: '原料投入',
 | 
			
		||||
            putType: '原料投入(kg)',
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            classType: 3,
 | 
			
		||||
@@ -535,9 +535,9 @@ export default {
 | 
			
		||||
      // Date.now() - 24 * 60 * 60 - 1000
 | 
			
		||||
      switch (val.btnName) {
 | 
			
		||||
        case 'search':
 | 
			
		||||
          this.listQuery.startTime = val.checkTime ? val.checkTime : undefined;
 | 
			
		||||
          this.time = moment(new Date(this.listQuery.startTime)).format('YYYY-MM-DD')
 | 
			
		||||
          this.listQuery.endTime = val.checkTime ? val.checkTime + 24 * 60 * 60 * 1000 : undefined;
 | 
			
		||||
          this.listQuery.startTime = val.checkTime ? new Date(new Date(val.checkTime).setHours(8, 0, 0, 0)).getTime() : undefined;
 | 
			
		||||
          this.time = moment(new Date((val.checkTime)).setHours(8, 0, 0, 0)).format('YYYY-MM-DD HH:mm:ss') + moment(new Date(val.checkTime + 24 * 60 * 60 * 1000).setHours(7, 59, 59)).format('YYYY-MM-DD HH:mm:ss')
 | 
			
		||||
          this.listQuery.endTime = val.checkTime ? new Date(new Date(val.checkTime + 24 * 60 * 60 * 1000).setHours(7, 59, 59)).getTime() : undefined;
 | 
			
		||||
          this.getDataList();
 | 
			
		||||
          break;
 | 
			
		||||
        case 'export':
 | 
			
		||||
@@ -551,6 +551,10 @@ export default {
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style scoped>
 | 
			
		||||
.baseTable{
 | 
			
		||||
  border-color: #D1D4DB;
 | 
			
		||||
  background-color: #F2F4F9;
 | 
			
		||||
}
 | 
			
		||||
::v-deep.baseTable .el-table__body tr.current-row>td.el-table__cell {
 | 
			
		||||
  background-color: #EAF1FC;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-18 10:01:33
 | 
			
		||||
 * @LastEditTime: 2024-04-25 13:40:51
 | 
			
		||||
 * @LastEditTime: 2024-04-25 17:13:14
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
@@ -493,6 +493,10 @@ export default {
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style scoped>
 | 
			
		||||
.baseTable {
 | 
			
		||||
  border-color: #D1D4DB;
 | 
			
		||||
  background-color: #F2F4F9;
 | 
			
		||||
}
 | 
			
		||||
::v-deep.baseTable .el-table__body tr.current-row>td.el-table__cell {
 | 
			
		||||
  background-color: #EAF1FC;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-18 14:08:46
 | 
			
		||||
 * @LastEditTime: 2024-04-25 13:30:11
 | 
			
		||||
 * @LastEditTime: 2024-04-26 09:10:53
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
        </el-date-picker>
 | 
			
		||||
      </el-form-item>
 | 
			
		||||
      <el-form-item label="产线" prop="productionLineId">
 | 
			
		||||
        <el-select v-model="listQuery.productionLineId" placeholder="请选择">
 | 
			
		||||
        <el-select v-model="listQuery.productionLineId" placeholder="请选择" clearable>
 | 
			
		||||
          <el-option v-for="item in lineList" :key="item.id" :label="item.name" :value="item.id">
 | 
			
		||||
          </el-option>
 | 
			
		||||
        </el-select>
 | 
			
		||||
@@ -413,6 +413,10 @@ export default {
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style scoped>
 | 
			
		||||
.baseTable {
 | 
			
		||||
  border-color: #D1D4DB;
 | 
			
		||||
  background-color: #F2F4F9;
 | 
			
		||||
}
 | 
			
		||||
::v-deep.baseTable .el-table__body tr.current-row>td.el-table__cell {
 | 
			
		||||
  background-color: #EAF1FC;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@ const tableProp1 = [
 | 
			
		||||
	{
 | 
			
		||||
		prop: 'lineName',
 | 
			
		||||
		label: '生产线',
 | 
			
		||||
		width: 110,
 | 
			
		||||
		width: 90,
 | 
			
		||||
		fixed: true,
 | 
			
		||||
	},
 | 
			
		||||
	{
 | 
			
		||||
@@ -71,6 +71,7 @@ export default {
 | 
			
		||||
					label: '产线',
 | 
			
		||||
					selectOptions: [],
 | 
			
		||||
					param: 'lineId',
 | 
			
		||||
					multiple: true,
 | 
			
		||||
				},
 | 
			
		||||
				{
 | 
			
		||||
					type: 'button',
 | 
			
		||||
@@ -92,7 +93,7 @@ export default {
 | 
			
		||||
			queryParams: {
 | 
			
		||||
				startTime: '',
 | 
			
		||||
				endTime: '',
 | 
			
		||||
				lineId: '',
 | 
			
		||||
				lineId: [],
 | 
			
		||||
			},
 | 
			
		||||
			tableProp1,
 | 
			
		||||
			tableProp: [],
 | 
			
		||||
@@ -108,8 +109,9 @@ export default {
 | 
			
		||||
		let start = moment().format('yyyy-MM-DD');
 | 
			
		||||
		let end = moment().format('yyyy-MM-DD');
 | 
			
		||||
		this.formConfig[0].defaultSelect = [start, end];
 | 
			
		||||
		this.queryParams.startTime = moment(start + ' 00:00:00').valueOf();
 | 
			
		||||
		this.queryParams.endTime = moment(end + ' 23:59:59').valueOf();
 | 
			
		||||
		this.queryParams.startTime =
 | 
			
		||||
			moment(start + ' 00:00:00').valueOf() + 25200000;
 | 
			
		||||
		this.queryParams.endTime = moment(end + ' 23:59:59').valueOf() + 25200000;
 | 
			
		||||
		this.getList();
 | 
			
		||||
	},
 | 
			
		||||
	methods: {
 | 
			
		||||
@@ -238,12 +240,10 @@ export default {
 | 
			
		||||
		buttonClick(val) {
 | 
			
		||||
			if (val.btnName === 'search') {
 | 
			
		||||
				if (val.timeVal && val.timeVal.length > 0) {
 | 
			
		||||
					this.queryParams.startTime = moment(
 | 
			
		||||
						val.timeVal[0] + ' 00:00:00'
 | 
			
		||||
					).valueOf();
 | 
			
		||||
					this.queryParams.endTime = moment(
 | 
			
		||||
						val.timeVal[1] + ' 23:59:59'
 | 
			
		||||
					).valueOf();
 | 
			
		||||
					this.queryParams.startTime =
 | 
			
		||||
						moment(val.timeVal[0] + ' 00:00:00').valueOf() + 25200000;
 | 
			
		||||
					this.queryParams.endTime =
 | 
			
		||||
						moment(val.timeVal[1] + ' 23:59:59').valueOf() + 25200000;
 | 
			
		||||
				}
 | 
			
		||||
				this.queryParams.lineId = val.lineId;
 | 
			
		||||
				this.getList();
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,7 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-18 10:01:33
 | 
			
		||||
 * @LastEditTime: 2024-04-25 13:40:36
 | 
			
		||||
 * @LastEditTime: 2024-04-26 09:42:54
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
@@ -56,7 +56,7 @@ const tableProps = [
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'equipmentName',
 | 
			
		||||
    label: '',
 | 
			
		||||
    label: '机械手名称',
 | 
			
		||||
    width: '200'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
@@ -395,6 +395,11 @@ export default {
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style>
 | 
			
		||||
 | 
			
		||||
.baseTable {
 | 
			
		||||
  border-color: #D1D4DB;
 | 
			
		||||
  background-color: #F2F4F9;
 | 
			
		||||
}
 | 
			
		||||
.baseTable .el-table__body tr.current-row>td.el-table__cell {
 | 
			
		||||
  background-color: #EAF1FC;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,14 +1,14 @@
 | 
			
		||||
<!--
 | 
			
		||||
 * @Author: zhp
 | 
			
		||||
 * @Date: 2024-04-18 15:07:53
 | 
			
		||||
 * @LastEditTime: 2024-04-25 13:41:27
 | 
			
		||||
 * @LastEditTime: 2024-04-26 09:41:54
 | 
			
		||||
 * @LastEditors: zhp
 | 
			
		||||
 * @Description:
 | 
			
		||||
-->
 | 
			
		||||
<template>
 | 
			
		||||
  <div class="app-container">
 | 
			
		||||
    <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
 | 
			
		||||
    <el-table :header-cell-style="{
 | 
			
		||||
    <el-table :max-height="tableH" :header-cell-style="{
 | 
			
		||||
      background: '#F2F4F9',
 | 
			
		||||
      color: '#606266'
 | 
			
		||||
    }" class="baseTable" border id="exportTable" :data="tableData" style="width: 100%" :span-method="objectSpanMethod">
 | 
			
		||||
@@ -40,6 +40,8 @@ import {
 | 
			
		||||
} from '@/api/report/qcReport';
 | 
			
		||||
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
 | 
			
		||||
import FileSaver from 'file-saver'
 | 
			
		||||
// import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
 | 
			
		||||
 | 
			
		||||
// import { getList, } from "@/api/base/qualityScrapType";
 | 
			
		||||
const tableProps = [
 | 
			
		||||
  // {
 | 
			
		||||
@@ -54,7 +56,7 @@ const tableProps = [
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'dataType',
 | 
			
		||||
    label: '',
 | 
			
		||||
    label: '类别',
 | 
			
		||||
    width: '150',
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
@@ -67,11 +69,16 @@ const tableProps = [
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'area',
 | 
			
		||||
    label: '面积'
 | 
			
		||||
    label: '面积(㎡)'
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'rate',
 | 
			
		||||
    label: '占比%',
 | 
			
		||||
    label: '占比(%)',
 | 
			
		||||
    // filter: (val) => val == false ? '不合格' : '合格',
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    prop: 'rateSum',
 | 
			
		||||
    label: '综合成品率(%)',
 | 
			
		||||
    // filter: (val) => val == false ? '不合格' : '合格',
 | 
			
		||||
  },
 | 
			
		||||
  // {
 | 
			
		||||
@@ -129,7 +136,7 @@ export default {
 | 
			
		||||
          startPlaceholder: '开始时间',
 | 
			
		||||
          endPlaceholder: '结束时间',
 | 
			
		||||
          param: 'checkTime',
 | 
			
		||||
          defaultSelect: [new Date(new Date(Date.now()).setHours(7, 0, 0, 0)).getTime(), new Date(new Date(Date.now()).setHours(6, 59, 59)).getTime() + 24 * 60 * 60 * 1000],
 | 
			
		||||
          defaultSelect: [new Date(new Date(Date.now()).setHours(7, 0, 0, 0)).getTime() - 24 * 60 * 60 * 1000, new Date(new Date(Date.now()).setHours(6, 59, 59)).getTime()],
 | 
			
		||||
          width: 350
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
@@ -167,8 +174,8 @@ export default {
 | 
			
		||||
  created() { },
 | 
			
		||||
  mounted() {
 | 
			
		||||
    // this.formConfig[1].defaultSelect[]
 | 
			
		||||
    this.listQuery.startTime = new Date(new Date(Date.now()).setHours(7, 0, 0, 0)).getTime()
 | 
			
		||||
    this.listQuery.endTime = new Date(new Date(Date.now()).setHours(6, 59, 59)).getTime() + 24 * 60 * 60 * 1000
 | 
			
		||||
    this.listQuery.startTime = new Date(new Date(Date.now()).setHours(7, 0, 0, 0)).getTime() - 24 * 60 * 60 * 1000
 | 
			
		||||
    this.listQuery.endTime = new Date(new Date(Date.now()).setHours(6, 59, 59)).getTime()
 | 
			
		||||
    // this.formConfig[0].defaultSelect[0] = Date.now()-24*60*60-1000
 | 
			
		||||
    this.getDataList()
 | 
			
		||||
    this.getDict()
 | 
			
		||||
@@ -286,14 +293,15 @@ export default {
 | 
			
		||||
        // })
 | 
			
		||||
        this.tableData = response.data.map((ele) => {
 | 
			
		||||
          return {
 | 
			
		||||
            dataType: ele.dataType == 1 ? '成品' : ele.dataType == 2 ? '取样' : '废版',
 | 
			
		||||
            dataType: ele.dataType == 1 ? '成品' : ele.dataType == 2 ? '取样板' : ele.dataType == 4 ? '合计' : ele.dataType == 3 ? '废版' : '',
 | 
			
		||||
            code: ele.code,
 | 
			
		||||
            putNum: ele.putNum,
 | 
			
		||||
            lineName: ele.lineName,
 | 
			
		||||
            type: ele.type,
 | 
			
		||||
            type: ele.type == '合计' ? '' : ele.type,
 | 
			
		||||
            pieces: ele.pieces,
 | 
			
		||||
            area: ele.area,
 | 
			
		||||
            rate: (ele.rate * 100).toFixed(2)
 | 
			
		||||
            rate: ele.lineName != '总计' &&  ele.rate ? (ele.rate * 100).toFixed(2) : '',
 | 
			
		||||
            rateSum: ele.lineName === '总计' ? (ele.rate * 100).toFixed(2) : ''
 | 
			
		||||
            // useNum: ele.useNum,
 | 
			
		||||
            // num: ele.num,
 | 
			
		||||
            // size: typeof (ele.size)
 | 
			
		||||
@@ -357,8 +365,10 @@ export default {
 | 
			
		||||
          // this.listQuery.materialId = val.materialId ? val.materialId : undefined;
 | 
			
		||||
          // this.listQuery.startTime = '1706144404000';
 | 
			
		||||
          // this.listQuery.endTime = '1706230804000';
 | 
			
		||||
          this.listQuery.startTime = val.checkTime ? new Date(new Date(val.checkTime[0]).setHours(7, 0, 0, 0)).getTime() : undefined;
 | 
			
		||||
          this.listQuery.endTime = val.checkTime ? new Date(new Date(val.checkTime[1]).setHours(6, 59, 59)).getTime() + 24 * 60 * 60 * 1000 : undefined;
 | 
			
		||||
          // this.listQuery.startTime = new Date(new Date(Date.now()).setHours(7, 0, 0, 0)).getTime() - 24 * 60 * 60 * 1000
 | 
			
		||||
          // this.listQuery.endTime = new Date(new Date(Date.now()).setHours(6, 59, 59)).getTime()
 | 
			
		||||
          this.listQuery.startTime = val.checkTime ? new Date(new Date(val.checkTime[0]).setHours(7, 0, 0, 0)).getTime() - 24 * 60 * 60 * 1000 : undefined;
 | 
			
		||||
          this.listQuery.endTime = val.checkTime ? new Date(new Date(val.checkTime[1]).setHours(6, 59, 59)).getTime() : undefined;
 | 
			
		||||
          this.listQuery.lineId = val.lineId ? val.lineId : undefined
 | 
			
		||||
          this.getDataList();
 | 
			
		||||
          break;
 | 
			
		||||
@@ -387,6 +397,10 @@ export default {
 | 
			
		||||
};
 | 
			
		||||
</script>
 | 
			
		||||
<style scoped>
 | 
			
		||||
.baseTable {
 | 
			
		||||
  border-color: #D1D4DB;
 | 
			
		||||
  background-color: #F2F4F9;
 | 
			
		||||
}
 | 
			
		||||
::v-deep.baseTable .el-table__body tr.current-row>td.el-table__cell {
 | 
			
		||||
  background-color: #EAF1FC;
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user