Compare commits

..

No commits in common. "15afbcd6127cbc782c632fada3cac3162f2eea88" and "db7d4745ddbd75bf526f88f9ee9b0b779121b48d" have entirely different histories.

193 changed files with 13971 additions and 17121 deletions

View File

@ -1,3 +1,10 @@
###
# @Author: Do not edit
# @Date: 2023-08-29 09:40:39
# @LastEditTime: 2024-03-25 15:59:53
# @LastEditors: zhp
# @Description:
###
# 开发环境配置 # 开发环境配置
ENV = 'development' ENV = 'development'
@ -5,18 +12,24 @@ ENV = 'development'
VUE_APP_TITLE = MES系统 VUE_APP_TITLE = MES系统
# 芋道管理系统/开发环境 # 芋道管理系统/开发环境
VUE_APP_BASE_API = 'http://192.168.0.33:48082' # VUE_APP_BASE_API = 'http://100.64.0.26:48082'
VUE_APP_BASE_API = 'http://10.70.2.2:8080'
# 积木报表指向地址 # VUE_APP_BASE_API = 'http://192.168.1.20:48080'
VUE_APP_JIMU_API = 'http://192.168.0.33:48082' # VUE_APP_BASE_API = 'http://192.168.2.173:48080'
# VUE_APP_BASE_API = 'http://192.168.1.49:48082'
# socket地址(现场) # VUE_APP_BASE_API = 'http://192.168.1.8:48082'
# VUE_APP_Socket_API = 'ws://10.70.2.2:8080' # VUE_APP_BASE_API = 'http://192.168.4.159:48080'
# socket地址(公司线上) # VUE_APP_BASE_API = 'http://192.168.1.104:48082'
VUE_APP_Socket_API = 'ws://192.168.0.33:48082' # VUE_APP_BASE_API = 'http://192.168.0.33:48082'
# socket dcs地址(只有现场) # VUE_APP_BASE_API = 'http://192.168.1.62:48082'
# VUE_APP_BASE_API = 'http://192.168.1.78:48082'
# VUE_APP_BASE_API = 'http://192.168.1.47:48082'
# socket地址
VUE_APP_Socket_API = 'ws://10.70.2.2:8080'
VUE_APP_Socket_Dcs_API = 'ws://10.70.180.10:8081' VUE_APP_Socket_Dcs_API = 'ws://10.70.180.10:8081'
# 积木报表指向地址
VUE_APP_JIMU_API = 'http://10.70.2.22:8080'
# 路由懒加载 # 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true VUE_CLI_BABEL_TRANSPILE_MODULES = true

View File

@ -1,4 +1,11 @@
# 生产环境配置(许昌现场) ###
# @Author: zhp
# @Date: 2023-11-07 19:11:40
# @LastEditTime: 2023-11-16 16:40:59
# @LastEditors: zhp
# @Description:
###
# 生产环境配置
ENV = 'production' ENV = 'production'
# 页面标题 # 页面标题

View File

@ -1,4 +1,4 @@
# 公司线上环境33服务器 # 生产环境配置
ENV = 'production' ENV = 'production'
# 页面标题 # 页面标题
@ -7,12 +7,15 @@ VUE_APP_TITLE = MES系统
# 芋道管理系统/生产环境 # 芋道管理系统/生产环境
VUE_APP_BASE_API = '/prod-api' VUE_APP_BASE_API = '/prod-api'
# dcs地址
VUE_APP_Socket_Dcs_API = 'ws://10.70.180.10:8081'
# socket地址
VUE_APP_Socket_API = 'ws://10.70.2.2:8080'
# 积木报表指向地址 # 积木报表指向地址
VUE_APP_JIMU_API = 'http://192.168.0.33:48082' VUE_APP_JIMU_API = 'http://192.168.0.33:48082'
# socket地址 # socket地址
VUE_APP_Socket_API = 'ws://192.168.0.33:48082' VUE_APP_Socket_API = 'ws://192.168.0.33:48082'
# dcs地址只有现场的
VUE_APP_Socket_Dcs_API = 'ws://10.70.180.10:8081'
# 根据服务器或域名修改 # 根据服务器或域名修改

View File

@ -35,21 +35,3 @@ export function getQoq(data) {
data: data data: data
}) })
} }
// 获取能源设备树
export function getTree() {
return request({
url: '/analysis/energy-analysis/getTree',
method: 'get'
})
}
// 导出(走势分析)
export function exportTrend(data) {
return request({
url: '/analysis/energy-analysis/exportTrend',
method: 'post',
responseType: 'blob',
data: data
})
}

View File

@ -54,27 +54,3 @@ export function energyQuantityManualExport(data) {
responseType: 'blob' responseType: 'blob'
}) })
} }
// 获得能源表名配置分页
export function energyTablePage(data) {
return request({
url: '/base/energy-table/page',
method: 'post',
data: data
})
}
// 获得能源表名配置
export function energyTableGet(query) {
return request({
url: '/base/energy-table/get',
method: 'get',
params: query
})
}
// 更新能源表名配置
export function energyTableUpdate(data) {
return request({
url: '/base/energy-table/update',
method: 'put',
data: data
})
}

View File

@ -68,4 +68,3 @@ export function exportEnergyTypeExcel(query) {
responseType: 'blob' responseType: 'blob'
}) })
} }

View File

@ -2,7 +2,7 @@
/* /*
* @Author: zhp * @Author: zhp
* @Date: 2023-11-06 15:38:12 * @Date: 2023-11-06 15:38:12
* @LastEditTime: 2024-04-11 14:57:02 * @LastEditTime: 2023-12-15 15:29:16
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
*/ */
@ -94,7 +94,7 @@ export function getWorkerList(query) {
export function getMaterialCheckList(query) { export function getMaterialCheckList(query) {
return request({ return request({
url: 'base/quality-hot-material-det/filterList', url: '/base/core-hot-material-check/listByMaterial',
method: 'get', method: 'get',
params: query params: query
}) })
@ -102,7 +102,7 @@ export function getMaterialCheckList(query) {
export function createQualityHotMaterialDet(query){ export function createQualityHotMaterialDet(query){
return request({ return request({
url: 'base/quality-hot-material-det/createBatch', url: '/base/quality-hot-material-det/create',
method: 'post', method: 'post',
data: query data: query
}) })
@ -110,7 +110,7 @@ export function createQualityHotMaterialDet(query){
export function updateQualityHotMaterialDet(query){ export function updateQualityHotMaterialDet(query){
return request({ return request({
url: 'base/quality-hot-material-det/updateBatch', url: '/base/quality-hot-material-det/listbyfilter',
method: 'put', method: 'put',
data: query data: query
}) })
@ -118,7 +118,7 @@ export function updateQualityHotMaterialDet(query){
export function getQualityHotMaterialDetList(query){ export function getQualityHotMaterialDetList(query){
return request({ return request({
url: '/base/quality-hot-material-det/filterList', url: '/base/quality-hot-material-det/listbyfilter',
method: 'get', method: 'get',
params: query params: query
}) })

View File

@ -1,7 +1,7 @@
/* /*
* @Author: zhp * @Author: zhp
* @Date: 2023-11-07 15:02:37 * @Date: 2023-11-07 15:02:37
* @LastEditTime: 2024-04-09 15:14:42 * @LastEditTime: 2023-11-07 18:32:07
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
*/ */

View File

@ -1,7 +1,7 @@
/* /*
* @Author: zhp * @Author: zhp
* @Date: 2023-11-07 14:10:18 * @Date: 2023-11-07 14:10:18
* @LastEditTime: 2024-04-11 16:16:05 * @LastEditTime: 2023-11-16 17:49:52
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
*/ */
@ -18,14 +18,14 @@ export function getStatisticalDataPage(query) {
export function getWorkOrderList(query) { export function getWorkOrderList(query) {
return request({ return request({
url: 'base/core-work-order/listbyfilter', url: '/base/core-work-order/listbyfilter',
method: 'get', method: 'get',
params: query, params: query,
}) })
} }
export function getProductList(query) { export function getProductList(query) {
return request({ return request({
url: 'base/core-product/listAll', url: '/base/core-product/listAll',
method: 'get', method: 'get',
params: query, params: query,
}) })

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 KiB

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -5,7 +5,6 @@ export default {
}; };
}, },
created() { created() {
this.tableH = this?.heightNum ? this.tableHeight(this.heightNum) : this.tableHeight(260);
window.addEventListener('resize', this._setTableHeight); window.addEventListener('resize', this._setTableHeight);
}, },
destroyed() { destroyed() {
@ -13,8 +12,7 @@ export default {
}, },
methods: { methods: {
_setTableHeight() { _setTableHeight() {
this.tableH = this?.heightNum ? this.tableHeight(this.heightNum) : this.tableHeight(260); this.tableH = this.tableHeight(260);
// this.tableH = this.tableHeight(260);
}, },
}, },
}; };

View File

@ -32,7 +32,6 @@ const actions = {
} }
// 处理 dictValue 层级 // 处理 dictValue 层级
dictDataMap[dictData.dictType].push({ dictDataMap[dictData.dictType].push({
id: dictData.id,
value: dictData.value, value: dictData.value,
label: dictData.label, label: dictData.label,
colorType: dictData.colorType, colorType: dictData.colorType,

View File

@ -97,8 +97,6 @@ export const DICT_TYPE = {
TABLE_NAME: 'table_name', TABLE_NAME: 'table_name',
METHOD: 'method', METHOD: 'method',
PUSH: 'push', PUSH: 'push',
ENERGY_TYPE: 'energy_type',
// ============== ORDER - 订单模块 ============= // ============== ORDER - 订单模块 =============
ORDER_STATUS: 'order_status', ORDER_STATUS: 'order_status',

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-07-19 15:18:30 * @Date: 2021-07-19 15:18:30
* @LastEditors: zhp * @LastEditors: zhp
* @LastEditTime: 2024-04-03 10:54:53 * @LastEditTime: 2024-03-28 15:28:07
* @Description: * @Description:
--> -->
<template> <template>
@ -16,11 +16,11 @@
许昌安彩AGV原片周转看板 许昌安彩AGV原片周转看板
<h3 class="unit">单位河南汇融数字科技有限公司</h3> <h3 class="unit">单位河南汇融数字科技有限公司</h3>
<h3 class="time">{{ times }}</h3> <h3 class="time">{{ times }}</h3>
<!-- <el-button type="text" class="title-button" :style="{ right: 18 + 'px', top: 26 + 'px', fontSize: '32px' }" <el-button type="text" class="title-button" :style="{ right: 18 + 'px', top: 26 + 'px', fontSize: '32px' }"
@click="changeFullScreen"> @click="changeFullScreen">
<svg-icon width="32" height="32" v-if="isFullScreen" icon-class="unFullScreenView" /> <svg-icon width="32" height="32" v-if="isFullScreen" icon-class="unFullScreenView" />
<svg-icon width="32" height="32" v-else icon-class="fullScreenView" /> <svg-icon width="32" height="32" v-else icon-class="fullScreenView" />
</el-button> --> </el-button>
</el-row> </el-row>
<el-row class="container-main flex-col" type="flex"> <el-row class="container-main flex-col" type="flex">
<el-row :style="{ padding: '0 ' + 9 + 'px' }" :gutter="15 * beilv" type="flex" class="flex-1"> <el-row :style="{ padding: '0 ' + 9 + 'px' }" :gutter="15 * beilv" type="flex" class="flex-1">
@ -34,16 +34,14 @@
<el-col :style="{ margin: 8 + 'px' + ' 0' }" :span="12"> <el-col :style="{ margin: 8 + 'px' + ' 0' }" :span="12">
<base-container :beilv="1" :size="'eqStatus'" :title="'周转进度'" :title-icon="'order'" :back="'energy'"> <base-container :beilv="1" :size="'eqStatus'" :title="'周转进度'" :title-icon="'order'" :back="'energy'">
<div class="order" style="width:100%; overflow: hidden scroll;height: 350px;"> <div class="order" style="width:100%; overflow: hidden scroll;height: 350px;">
<el-row v-for="op in orderProcessList" :key="op.id" style="margin-bottom: .5em"> <el-row v-for="op in orderProcessList" :key="op.id" style="margin-bottom: 1em">
<!-- <p v-if="op.outRate === 1" class="now-secondary-title" <p v-if="op.outRate === 1" class="now-secondary-title" style="color:#4679FD">
style="font-size: 14px; opacity: calc(.6);color:#4679FD">
<i class="el-icon-check" /> <i class="el-icon-check" />
{{ op.name }} {{ op.name }}
</p> --> </p>
<!-- <p class="now-secondary-title">{{ op.name }}</p> --> <p v-else class="now-secondary-title">{{ op.name }}</p>
<p class="now-secondary-title" style="font-size: 14px;opacity: calc(.6);">{{ op.name }}</p> <el-progress :stroke-width="10" define-back-color="rgba(32, 57, 96, 1)" text-color="white"
<el-progress style="width: 935px;" text-color="rgba(255, 255, 255, .6)" :stroke-width="10" :percentage="op.outRate * 100" class="custom-progress-bar" />
define-back-color="rgba(32, 57, 96, 1)" :percentage="op.outRate * 100" class="custom-progress-bar" />
</el-row> </el-row>
</div> </div>
</base-container> </base-container>
@ -498,7 +496,7 @@ export default {
seconds = "0" + seconds; seconds = "0" + seconds;
} }
// //
this.times = year + "." + month + "." + day + " " + hours + ":" + minutes + ":" + seconds; this.times = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
}, },
windowWidth(value) { windowWidth(value) {
this.clientWidth = value this.clientWidth = value
@ -532,6 +530,11 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.visual-container { .visual-container {
width: 1920px; width: 1920px;
height: 1080px; height: 1080px;
@ -553,7 +556,7 @@ export default {
top: 25px; top: 25px;
color: rgba(255, 255, 255, 0.80); color: rgba(255, 255, 255, 0.80);
font-size: 20px; font-size: 20px;
letter-spacing: 1px; letter-spacing: 0px;
} }
.time { .time {
position: absolute; position: absolute;
@ -561,7 +564,7 @@ export default {
top: 25px; top: 25px;
color: rgba(255, 255, 255, 0.80); color: rgba(255, 255, 255, 0.80);
font-size: 20px; font-size: 20px;
letter-spacing: .72px; letter-spacing: 0px;
} }
.title-button { .title-button {
color: #00fff0; color: #00fff0;
@ -604,14 +607,6 @@ export default {
::v-deep .el-progress-bar__inner { ::v-deep .el-progress-bar__inner {
background-color: unset; background-color: unset;
background-image: linear-gradient(to right, #4573fe, #47f8dc); background-image: linear-gradient(to right, #4573fe, #47f8dc);
}
::v-deep .el-progress__text {
width: 50px;
margin-top: -70px;
margin-left: 834px;
text-align: right;
// background-color: unset;
// background-image: linear-gradient(to right, #4573fe, #47f8dc);
} }
.visual-select { .visual-select {
position: absolute; position: absolute;

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-01-29 16:50:26 * @Date: 2024-01-29 16:50:26
* @LastEditTime: 2024-04-11 09:55:04 * @LastEditTime: 2024-03-28 16:35:49
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -17,11 +17,11 @@
许昌安彩冷端看板 许昌安彩冷端看板
<h3 class="unit">单位河南汇融数字科技有限公司</h3> <h3 class="unit">单位河南汇融数字科技有限公司</h3>
<h3 class="time">{{ times }}</h3> <h3 class="time">{{ times }}</h3>
<!-- <el-button type="text" class="title-button" :style="{ right: 18 + 'px', top: 26 + 'px',fontSize:'32px'}" <el-button type="text" class="title-button" :style="{ right: 18 + 'px', top: 26 + 'px',fontSize:'32px'}"
@click="changeFullScreen"> @click="changeFullScreen">
<svg-icon width="32" height="32" v-if="isFullScreen" icon-class="unFullScreenView" /> <svg-icon width="32" height="32" v-if="isFullScreen" icon-class="unFullScreenView" />
<svg-icon width="32" height="32" v-else icon-class="fullScreenView" /> <svg-icon width="32" height="32" v-else icon-class="fullScreenView" />
</el-button> --> </el-button>
</el-row> </el-row>
<el-row class="container-main flex-col" type="flex"> <el-row class="container-main flex-col" type="flex">
<el-row :style="{ padding: '0 ' + 9 + 'px' }" :gutter="15" type="flex" class="flex-1"> <el-row :style="{ padding: '0 ' + 9 + 'px' }" :gutter="15" type="flex" class="flex-1">
@ -40,13 +40,6 @@
<top-radio-group /> <top-radio-group />
</div> --> </div> -->
<!-- 像下面这样表格里的limit值也许可以用js动态计算出来 --> <!-- 像下面这样表格里的limit值也许可以用js动态计算出来 -->
<div v-if="coldDetData" class="myLegend">
<div class=" barCircleLegend"></div>
<div class=" barCircle"></div>
<h4 class="barText">产线良品率</h4>
<div class="barLegend"></div>
<h4 class="barCircleText">产线产量</h4>
</div>
<double-y-chart ref="productChart" :id="'doubleYChart'" :name-list="cxNameList" :data-list="cxDataList" <double-y-chart ref="productChart" :id="'doubleYChart'" :name-list="cxNameList" :data-list="cxDataList"
:height="359" :show-legend="true" /> :height="359" :show-legend="true" />
</base-container> </base-container>
@ -71,11 +64,11 @@
</div> --> </div> -->
<!-- <el-row :gutter="9"> --> <!-- <el-row :gutter="9"> -->
<!-- <el-col :style="{ margin: 8 + 'px' + ' 0' }" :span="24"> --> <!-- <el-col :style="{ margin: 8 + 'px' + ' 0' }" :span="24"> -->
<pile-bar-chart id=" 'one' " style="margin-top: -5px;" ref="firstPileChart" :height="80" /> <pile-bar-chart style="margin-bottom: -15px" ref="firstPileChart" :height="90" />
<second-pile-bar-chart id=" 'second' " ref="secondPileChart" :height="90" /> <second-pile-bar-chart style="margin-bottom: -15px" id=" 'second' " ref="secondPileChart" :height="90" />
<third-pile-bar-chart id=" 'third' " ref="thirdPileChart" :height="90" /> <third-pile-bar-chart style="margin-bottom: -15px" id=" 'third' " ref="thirdPileChart" :height="90" />
<fourth-pile-bar-chart id=" 'fourth' " ref="fourthPileChart" :height="90" /> <fourth-pile-bar-chart style="margin-bottom: -15px" id=" 'fourth' " ref="fourthPileChart" :height="90" />
<fifth-pile-bar-chart style="margin-top: -5px;" id=" 'fifth' " ref="fifthPileChart" :height="90" /> <fifth-pile-bar-chart style="margin-bottom: -15px" id=" 'fifth' " ref="fifthPileChart" :height="100" />
<!-- <pile-bar-chart ref="secondPileChart" <!-- <pile-bar-chart ref="secondPileChart"
:height="90" /> :height="90" />
<pile-bar-chart ref="thirdPileChart" <pile-bar-chart ref="thirdPileChart"
@ -251,7 +244,6 @@ export default {
funWs: undefined, funWs: undefined,
SJGws: undefined, SJGws: undefined,
funWsData: {}, funWsData: {},
coldDetData:[],
SJGWsData: {}, SJGWsData: {},
cxNameList:[], cxNameList:[],
cxDataList:[], cxDataList:[],
@ -310,7 +302,6 @@ export default {
window.location.reload() window.location.reload()
}, 86400000) }, 86400000)
// this.getData() // this.getData()
// this.getReaiData()
}, },
destroyed() { destroyed() {
this.CutWebsocketClose() this.CutWebsocketClose()
@ -323,39 +314,16 @@ export default {
} }
}, },
mounted() { mounted() {
this.getProductData()
// this.$refs.productChart.initChart(nameList, yieldList, sumAreaList)
this.getTimes()
// console.log(moment(this.logoutTime - 28800000).format('HH:mm:ss'));
this.funInitWebSocket()
if (!this.wsIsOpen) {
getDcsMsg()
this.wsIsOpen = true
console.log('开启websocket==========')
}
this.CutInitWebSocket()
this.SJGInitWebSocket()
const _this = this;
_this.beilv2 = document.documentElement.clientWidth / 1920
window.onresize = () => {
return (() => {
_this.clientWidth = `${document.documentElement.clientWidth}`
this.beilv2 = _this.clientWidth / 1920
})()
}
},
methods: {
getProductData() {
let nameList = [] let nameList = []
let nameWasteList = [] let nameWasteList = []
let topNameList = [] let topNameList = []
let productList = [] let productList = []
let wasteList = [] let wasteList = []
let yieldList = [] let yieldList = []
let sumAreaList = [] // let sumAreaList = []
// let yieldList = [] // let yieldList = []
// this.cutTableDataList = // this.cutTableDataList =
this.coldDetData = [ let coldDetData = [
{ {
"first": 0.8834, "first": 0.8834,
"lineName": "Y61", "lineName": "Y61",
@ -407,69 +375,45 @@ export default {
"yield": 0.9133 "yield": 0.9133
} }
] ]
this.coldDetData.forEach((ele, index) => { coldDetData.forEach((ele, index) => {
nameList.push(ele.lineName) nameList.push(ele.lineName)
topNameList.push('产线: ' + ele.lineName + ' ' + '总面积:' + ele.sumArea + '㎡') topNameList.push('产线: ' + ele.lineName + ' ' + '总面积:' + ele.sumArea)
productList.push(ele.productArea) productList.push(ele.productArea)
wasteList.push(ele.wastArea) wasteList.push(ele.wastArea)
nameWasteList.push('缺陷面积:' + this.NumFormat(ele.wastArea) + '㎡') nameWasteList.push('缺陷面积:' + ele.wastArea)
// yieldList.push({ yieldList.push({
// name: '', name: '良品',
// yield:ele.yield yield:ele.yield
// }) })
sumAreaList.push(ele.sumArea) // sumAreaList.push(ele.sumArea)
yieldList.push((ele.yield * 100).toFixed(0)) // yieldList.push((ele.yield * 100).toFixed(3))
}) })
this.$nextTick(() => {
this.$refs.productChart.initChart(nameList, yieldList, sumAreaList)
this.$refs.firstPileChart.initChart(nameList, [topNameList[0]], [nameWasteList[0]], [productList[0]], [wasteList[0]]) this.$refs.firstPileChart.initChart(nameList, [topNameList[0]], [nameWasteList[0]], [productList[0]], [wasteList[0]])
this.$refs.secondPileChart.initChart(nameList, [topNameList[1]], [nameWasteList[1]], [productList[1]], [wasteList[1]]) this.$refs.secondPileChart.initChart(nameList, [topNameList[1]], [nameWasteList[1]], [productList[1]], [wasteList[1]])
this.$refs.thirdPileChart.initChart(nameList, [topNameList[2]], [nameWasteList[2]], [productList[2]], [wasteList[2]]) this.$refs.thirdPileChart.initChart(nameList, [topNameList[2]], [nameWasteList[2]], [productList[2]], [wasteList[2]])
this.$refs.fourthPileChart.initChart(nameList, [topNameList[3]], [nameWasteList[3]], [productList[3]], [wasteList[3]]) this.$refs.fourthPileChart.initChart(nameList, [topNameList[3]], [nameWasteList[3]], [productList[3]], [wasteList[3]])
this.$refs.fifthPileChart.initChart(nameList, [topNameList[4]], [nameWasteList[4]], [productList[4]], [wasteList[4]]) this.$refs.fifthPileChart.initChart(nameList, [topNameList[4]], [nameWasteList[4]], [productList[4]], [wasteList[4]])
}) // this.$refs.productChart.initChart(nameList, yieldList, sumAreaList)
this.getTimes()
// console.log(moment(this.logoutTime - 28800000).format('HH:mm:ss'));
this.funInitWebSocket()
if (!this.wsIsOpen) {
getDcsMsg()
this.wsIsOpen = true
console.log('开启websocket==========')
}
this.CutInitWebSocket()
this.SJGInitWebSocket()
const _this = this;
_this.beilv2 = document.documentElement.clientWidth / 1920
window.onresize = () => {
return (() => {
_this.clientWidth = `${document.documentElement.clientWidth}`
this.beilv2 = _this.clientWidth / 1920
})()
}
}, },
// getReaiData() { methods: {
// let detData = [
// {
// name: '1',
// run: '',
// },
// {
// name: '2',
// run: '',
// },
// {
// name: '3',
// run: '',
// },
// {
// name: '4',
// run: '',
// },
// {
// name: '1',
// run: '',
// },
// ]
// let arr = []
// let index = 0
// for (let i in detData) {
// index++,
// arr.push([
// `<span style="color:rgba(255,255,255,0.5)" >${index || ''}
// </span>`,
// // `<span style="color:rgba(255,255,255,0.5)" >${i || ''}
// // </span>`,
// `<span style="color:rgba(255,255,255,0.5)">${i || ''}</span>`,
// `<span style="color:rgba(255,255,255,0.5)"><div style="${detData[i] == '' ? '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 #FFBD02;width:6px;height:6px;border-radius: 50%; background-color: #FFBD02;float:left;margin:10px 10px 0 0 '}"></div> ${detData[i] || ''}</span>`,
// ])
// }
// // this.$nextTick(() => {
// this.annealFunConfig.data = arr
// this.$refs['annealFunScrollBoard'].updateRows(arr)
// // })
// },
// getData() { // getData() {
// let detData = [ // let detData = [
// { // {
@ -500,10 +444,8 @@ export default {
// `<span style="color:rgba(255,255,255,0.5)">${item.name || ''}</span>`, // `<span style="color:rgba(255,255,255,0.5)">${item.name || ''}</span>`,
// `<span style="color:rgba(255,255,255,0.5)"><div style="${item.run == '' ? '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 #FFBD02;width:6px;height:6px;border-radius: 50%; background-color: #FFBD02;float:left;margin:10px 10px 0 0 '}"></div> ${item.run || ''}</span>`, // `<span style="color:rgba(255,255,255,0.5)"><div style="${item.run == '' ? '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 #FFBD02;width:6px;height:6px;border-radius: 50%; background-color: #FFBD02;float:left;margin:10px 10px 0 0 '}"></div> ${item.run || ''}</span>`,
// ]) // ])
// // this.$nextTick(() => {
// this.realEqConfig.data = this.realEqList // this.realEqConfig.data = this.realEqList
// this.$refs['realEqScrollBoard'].updateRows(this.realEqList) // this.$refs['realEqScrollBoard'].updateRows(this.realEqList)
// // })
// }, // },
CutWebsocketClose(e) { CutWebsocketClose(e) {
this.Cutws.ws.onclose = (event) => { console.log(event );} this.Cutws.ws.onclose = (event) => { console.log(event );}
@ -553,7 +495,7 @@ export default {
seconds = "0" + seconds; seconds = "0" + seconds;
} }
// //
this.times = year + "." + month + "." + day + " " + hours + ":" + minutes + ":" + seconds; this.times = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
}, },
SJGInitWebSocket() { SJGInitWebSocket() {
let date = new Date().valueOf() let date = new Date().valueOf()
@ -583,9 +525,10 @@ export default {
]) ])
} }
this.realEqConfig.data = this.realEqList this.realEqConfig.data = this.realEqList
// this.$nextTick(() => { this.$nextTick(() => {
this.$refs['realEqScrollBoard'].updateRows(this.realEqList) this.$refs['realEqScrollBoard'].updateRows(this.realEqList)
// })
})
}; };
// if (typeof (WebSocket) === 'undefined') { // if (typeof (WebSocket) === 'undefined') {
// alert('WebSocket') // alert('WebSocket')
@ -617,23 +560,19 @@ export default {
this.cutWsData = event?.data ? JSON.parse(event?.data) : {} this.cutWsData = event?.data ? JSON.parse(event?.data) : {}
if (this.cutWsData.type === 'cutting' && this.cutWsData.name === 'table') { if (this.cutWsData.type === 'cutting' && this.cutWsData.name === 'table') {
let cutArr = this.cutWsData.productHourData.map((item, index) => [ let cutArr = this.cutWsData.productHourData.map((item, index) => [
`<span style="color:rgba(255,255,255,0.5)" >${index + 1 || ''} `<span style="color:rgba(255,255,255,0.7)" >${index + 1 || ''}
</span>`, </span>`,
`<span style="color:rgba(255,255,255,0.5)" >${item.lineName || ''} `<span style="color:rgba(255,255,255,0.7)" >${item.lineName || ''}
</span>`, </span>`,
`<span style="color:rgba(255,255,255,0.5)">${this.formatTime(item.time) || ''}</span>`, `<span style="color:rgba(255,255,255,0.7)">${this.formatTime(item.time) || ''}</span>`,
`<span style="color:rgba(255,255,255,0.5)">${this.getSize(item.size) || ''}</span>`, `<span style="color:rgba(255,255,255,0.7)">${this.getSize(item.size) || ''}</span>`,
`<span style="color:rgba(255,255,255,0.5)">${this.NumFormat(item.productArea) + '㎡' || ''}</span>`, `<span style="color:rgba(255,255,255,0.7)">${item.productArea + '㎡' || ''}</span>`,
`<span style="color:rgba(255,255,255,0.5)">${this.NumFormat(item.wasteArea) + '㎡' || ''}</span>`, `<span style="color:rgba(255,255,255,0.7)">${item.wasteArea + '㎡' || ''}</span>`,
`<div style = "${(item.product * 100).toFixed(0) > 91 ? 'display:block;color:#00FFF7' : 'display:none;'}">${(item.product * 100).toFixed(0) + '%' || ''}</div> `<div style = "${(item.product * 100).toFixed(2) > 91 ? 'display:block;color:#00FFF7' : 'display:none;'}">${(item.product * 100).toFixed(2) + '%' || ''}</div>
<div style = "${(item.product * 100).toFixed(0) < 91 ? 'display:block; color:rgba(255, 209, 96, 1)' : 'display:none;'}">${(item.product * 100).toFixed(0) + '%' || ''}</div>` <div style = "${(item.product * 100).toFixed(2) < 91 ? 'display:block; color:rgba(255, 209, 96, 1)' : 'display:none;'}">${(item.product * 100).toFixed(2) + '%' || ''}</div>`
]) ])
this.cutConfig.data = cutArr this.cutConfig.data = cutArr
// this.$nextTick(() => {
this.$refs['cutScrollBoard'].updateRows(cutArr) this.$refs['cutScrollBoard'].updateRows(cutArr)
// })
// this.cutConfig.data = cutArr
// this.$refs['cutScrollBoard'].updateRows(cutArr)
} else if (this.cutWsData.type === 'cutting' && this.cutWsData.name === 'chart' && this.cutWsData.dateType === 'day') { } else if (this.cutWsData.type === 'cutting' && this.cutWsData.name === 'chart' && this.cutWsData.dateType === 'day') {
let nameList = [] let nameList = []
let nameWasteList = [] let nameWasteList = []
@ -642,25 +581,22 @@ export default {
let wasteList = [] let wasteList = []
let sumAreaList = [] let sumAreaList = []
let yieldList = [] let yieldList = []
this.coldDetData = this.cutWsData.coldDetData
// this.cutTableDataList = // this.cutTableDataList =
this.cutWsData.coldDetData.forEach((ele, index) => { this.cutWsData.coldDetData.forEach((ele, index) => {
nameList.push(ele.lineName) nameList.push(ele.lineName)
topNameList.push('产线: ' + ele.lineName + ' ' + '总面积:' + ele.sumArea + '㎡') topNameList.push('产线: ' + ele.lineName + ' ' + '总面积:' + ele.sumArea)
productList.push(ele.productArea) productList.push(ele.productArea)
wasteList.push(ele.wastArea) wasteList.push(ele.wastArea)
nameWasteList.push('缺陷面积:' + this.NumFormat(ele.wastArea) + '㎡') nameWasteList.push('缺陷面积:' + ele.wastArea)
sumAreaList.push(ele.sumArea) sumAreaList.push(ele.sumArea)
yieldList.push(parseFloat((ele.yield * 100).toFixed(0))) yieldList.push(parseFloat((ele.yield * 100).toFixed(3)))
}) })
this.$nextTick(() => {
this.$refs.firstPileChart.initChart(nameList, [topNameList[0]], [nameWasteList[0]], [productList[0]], [wasteList[0]]) this.$refs.firstPileChart.initChart(nameList, [topNameList[0]], [nameWasteList[0]], [productList[0]], [wasteList[0]])
this.$refs.secondPileChart.initChart(nameList, [topNameList[1]], [nameWasteList[1]], [productList[1]], [wasteList[1]]) this.$refs.secondPileChart.initChart(nameList, [topNameList[1]], [nameWasteList[1]], [productList[1]], [wasteList[1]])
this.$refs.thirdPileChart.initChart(nameList, [topNameList[2]], [nameWasteList[2]], [productList[2]], [wasteList[2]]) this.$refs.thirdPileChart.initChart(nameList, [topNameList[0]], [nameWasteList[0]], [productList[0]], [wasteList[0]])
this.$refs.fourthPileChart.initChart(nameList, [topNameList[3]], [nameWasteList[3]], [productList[3]], [wasteList[3]]) this.$refs.fourthPileChart.initChart(nameList, [topNameList[0]], [nameWasteList[0]], [productList[0]], [wasteList[0]])
this.$refs.fifthPileChart.initChart(nameList, [topNameList[4]], [nameWasteList[4]], [productList[4]], [wasteList[4]]) this.$refs.fifthPileChart.initChart(nameList, [topNameList[0]], [nameWasteList[0]], [productList[0]], [wasteList[0]])
this.$refs.productChart.initChart(nameList, yieldList, sumAreaList) this.$refs.productChart.initChart(nameList, yieldList, sumAreaList)
})
} }
}; };
// if (typeof (WebSocket) === 'undefined') { // if (typeof (WebSocket) === 'undefined') {
@ -696,18 +632,17 @@ export default {
for (let i in this.funWsData.data.annealFanInfo) { for (let i in this.funWsData.data.annealFanInfo) {
index++, index++,
arr.push([ arr.push([
`<span style="color:rgba(255,255,255,0.5)" >${index || ''} `
<span style="color:rgba(255,255,255,0.5)" >${index || ''}
</span>`, </span>`,
// `<span style="color:rgba(255,255,255,0.5)" >${i || ''} `<span style="color:rgba(255,255,255,0.5)" >${i || ''}
// </span>`, </span>`,
`<span style="color:rgba(255,255,255,0.5)">${i || ''}</span>`, `<span style="color:rgba(255,255,255,0.5)">${item.name || ''}</span>`,
`<span style="color:rgba(255,255,255,0.5)"><div style="${this.funWsData.data.annealFanInfo[i] == '运行' ? '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 #FFBD02;width:6px;height:6px;border-radius: 50%; background-color: #FFBD02;float:left;margin:10px 10px 0 0 '}"></div> ${this.funWsData.data.annealFanInfo[i] || ''}</span>`, `<span style="color:rgba(255,255,255,0.5)"><div style="${item.run == '运行' ? '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 #FFBD02;width:6px;height:6px;border-radius: 50%; background-color: #FFBD02;float:left;margin:10px 10px 0 0 '}"></div> ${item.run || ''}</span>`,
]) ])
} }
this.annealFunConfig.data = arr this.annealFunConfig.data = arr
// this.$nextTick(() => {
this.$refs['annealFunScrollBoard'].updateRows(arr) this.$refs['annealFunScrollBoard'].updateRows(arr)
// })
} }
if (this.funWsData.type === 'FanInfo') { if (this.funWsData.type === 'FanInfo') {
let arr = [] let arr = []
@ -715,16 +650,14 @@ export default {
for (let i in this.funWsData.data.fanInfo) { for (let i in this.funWsData.data.fanInfo) {
index++, index++,
arr.push([ arr.push([
`<span style="color:rgba(255,255,255,0.5)" >${index || ''} `<span style="color:rgba(255,255,255,0.5)" >${index || ''}</span>`,
</span>`,
`<span style="color:rgba(255,255,255,0.5)" >${i || ''}</span>`, `<span style="color:rgba(255,255,255,0.5)" >${i || ''}</span>`,
`<span style="color:rgba(255,255,255,0.5)"><div style="${this.funWsData.data.fanInfo[i] == '运行' ? '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 #FFBD02;width:6px;height:6px;border-radius: 50%; background-color: #FFBD02;float:left;margin:10px 10px 0 0 '}"></div> ${this.funWsData.data.fanInfo[i] || ''}</span>`, `<span style="color:rgba(255,255,255,0.5)">${item.name || ''}</span>`,
`<span style="color:rgba(255,255,255,0.5)"><div style="${item.run == '运行' ? '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 #FFBD02;width:6px;height:6px;border-radius: 50%; background-color: #FFBD02;float:left;margin:10px 10px 0 0 '}"></div> ${item.run || ''}</span>`,
]) ])
} }
this.funConfig.data = arr this.funConfig.data = arr
// this.$nextTick(() => {
this.$refs['funScrollBoard'].updateRows(arr) this.$refs['funScrollBoard'].updateRows(arr)
// })
} }
}; };
// if (typeof (WebSocket) === 'undefined') { // if (typeof (WebSocket) === 'undefined') {
@ -745,25 +678,6 @@ export default {
// this.funWebsocket.onclose = this.funWebsocketClose // this.funWebsocket.onclose = this.funWebsocketClose
// } // }
}, },
NumFormat(value) {
if (!value) return '0.00'
value = value.toFixed(2)
var intPart = Math.trunc(value) //
// var intPartFormat = intPart.toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,') //
var floatPart = '.00' //
var value2Array = value.split('.')
// =2
if (value2Array.length === 2) {
floatPart = value2Array[1].toString() //
if (floatPart.length === 1) {
return intPart + '.' + floatPart + '0'
} else {
return intPart + '.' + floatPart
}
} else {
return intPart + floatPart
}
},
// funWebsocketOnOpen() { // funWebsocketOnOpen() {
// console.log('socket') // console.log('socket')
// this.SJGWebsocket.onmessage() // this.SJGWebsocket.onmessage()
@ -858,47 +772,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.myLegend{
position: absolute;
top: -20px;
right: 20px;
font-size: 12px;
color: rgba(255,255,255,.6);
.barLegend{
// float: left;
background: linear-gradient(#9DD5FF, #1295FF);
width: 10px;
height: 10px;
display: inline-block;
margin-right: 5px;
border-radius: 30%;
}
.barText{
// float: right;
display: inline-block;
margin-right: 10px;
}
.barCircleLegend{
width: 15px;
height: 1px;
background-color: rgba(255, 209, 96, 1);
position: absolute;
left: -4.1715px;
top: 21.7px;
}
.barCircle{
width: 6px;
height: 6px;
border-radius: 50%;
background-color: rgba(255, 209, 96, 1);
display: inline-block;
margin-right: 10px;
margin-bottom: 1.7px;
}
.barCircleText{
display: inline-block;
}
}
.visual-container { .visual-container {
width: 1920px; width: 1920px;
height: 1080px; height: 1080px;
@ -920,7 +794,7 @@ export default {
top: 25px; top: 25px;
color: rgba(255, 255, 255, 0.80); color: rgba(255, 255, 255, 0.80);
font-size: 20px; font-size: 20px;
letter-spacing: 1px; letter-spacing: 0px;
} }
.time { .time {
@ -929,7 +803,7 @@ export default {
color: rgba(255, 255, 255, 0.80); color: rgba(255, 255, 255, 0.80);
top: 25px; top: 25px;
font-size: 20px; font-size: 20px;
letter-spacing: .72px; letter-spacing: 0px;
} }
.title-button { .title-button {

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2024-01-29 13:45:56 * @Date: 2024-01-29 13:45:56
* @LastEditTime: 2024-04-11 11:02:53 * @LastEditTime: 2024-03-13 08:58:01
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -26,7 +26,7 @@ export default {
return { return {
chart: null, chart: null,
// notMsg:true, // notMsg:true,
colors: ['#2760ff', '#518eec', '#49FBD6', '#ddb523'], colors:['#2760ff', '#518eec', '#0ee8e4', '#ddb523'],
chartData: [] chartData: []
}; };
}, },
@ -45,31 +45,6 @@ export default {
this.$emit('emitFun') this.$emit('emitFun')
} }
} }
},
mounted() {
this.chartData = [
{
name: '细长泡',
num: 1112,
yield: 0.97,
},
{
name: '长泡',
num: 1112,
yield: 0.97,
},
{
name: '开口泡',
num: 1112,
yield: 0.97,
},
{
name: '结石',
num: 1112,
yield: 0.97,
}
]
this.updateChart()
}, },
methods: { methods: {
updateChart() { updateChart() {
@ -96,7 +71,7 @@ export default {
color:this.colors, color:this.colors,
title:{ title:{
text: num, text: num,
subtext: '总数/片', subtext: '总数',
top: '32%', top: '32%',
left: '49%', left: '49%',
textAlign: 'center', textAlign: 'center',
@ -114,7 +89,7 @@ export default {
left: 'center', left: 'center',
itemWidth: 12, itemWidth: 12,
itemHeight:12, itemHeight:12,
icon: 'roundRect', icon: 'rect',
textStyle: { textStyle: {
color: '#fff' color: '#fff'
}, },
@ -132,19 +107,7 @@ export default {
radius: ['45%', '70%'], radius: ['45%', '70%'],
avoidLabelOverlap: true, avoidLabelOverlap: true,
label: { label: {
show: true, show: false
normal: {
//
// params: data,
formatter: function (params) {
console.log(params);
return params.value + " | " + params.percent.toFixed(0) + "%" + "\n\n" + params.name;
},
textStyle: { //
// color: '#595959',
fontSize: 24.48
}
}
}, },
labelLine: { labelLine: {
show: true, show: true,
@ -152,16 +115,13 @@ export default {
data: this.chartData && this.chartData.length > 0 && this.chartData.map((item, index) => ({ data: this.chartData && this.chartData.length > 0 && this.chartData.map((item, index) => ({
name:item.name, name:item.name,
value: item.num, value: item.num,
label: {
color: this.colors[index % 4]
},
itemStyle:{ itemStyle:{
color:{ color:{
type: 'linear', type: 'linear',
x: 0, x: 1,
y: 0, y: 1,
x2: 0, x2: 0,
y2: 1, y2: 0,
global: false, global: false,
colorStops:[ colorStops:[
{offset: 0,color: this.colors[index%4]}, {offset: 0,color: this.colors[index%4]},

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2022-01-21 14:43:06 * @Date: 2022-01-21 14:43:06
* @LastEditors: zhp * @LastEditors: zhp
* @LastEditTime: 2024-04-03 16:33:24 * @LastEditTime: 2024-03-28 16:45:24
* @Description: * @Description:
--> -->
<template> <template>
@ -85,6 +85,7 @@ export default {
defaultConfig: { defaultConfig: {
// legend // legend
legend: { legend: {
orient: 'vertical',
left: '75%', left: '75%',
bottom: 0, bottom: 0,
itemHeight: 10, itemHeight: 10,
@ -157,9 +158,6 @@ export default {
methods: { methods: {
initChart() { initChart() {
this.chart = echarts.init(document.getElementById(this.id)) this.chart = echarts.init(document.getElementById(this.id))
this.$nextTick(() => {
this.chart.resize();
});
this.chart.setOption({ this.chart.setOption({
title: this.showCenterTitle title: this.showCenterTitle
? { ? {
@ -196,7 +194,7 @@ export default {
// //
...this.defaultConfig.legend, ...this.defaultConfig.legend,
// //
// ...this.legendConfig ...this.legendConfig
}, },
color: this.barColor, color: this.barColor,
series: [ series: [

View File

@ -2,7 +2,7 @@
* @Author: gtz * @Author: gtz
* @Date: 2022-01-19 15:58:17 * @Date: 2022-01-19 15:58:17
* @LastEditors: zhp * @LastEditors: zhp
* @LastEditTime: 2024-03-29 14:47:29 * @LastEditTime: 2024-03-27 10:26:35
* @Description: file content * @Description: file content
* @FilePath: \mt-bus-fe\src\views\OperationalOverview\components\baseContainer\index.vue * @FilePath: \mt-bus-fe\src\views\OperationalOverview\components\baseContainer\index.vue
--> -->
@ -164,7 +164,7 @@ export default {
width: 100%; width: 100%;
// background-color: rgba($color: #061027, $alpha: 0.15); // background-color: rgba($color: #061027, $alpha: 0.15);
position: relative; position: relative;
// opacity: calc(.8); opacity: calc(.8);
// border: 2px solid; // border: 2px solid;
// background: url('../../../../assets/img/energy.png') no-repeat; // background: url('../../../../assets/img/energy.png') no-repeat;
// background-size: 100% 100%; // background-size: 100% 100%;
@ -274,8 +274,6 @@ export default {
width: 100%; width: 100%;
color: #ffffff; color: #ffffff;
font-size: 24px; font-size: 24px;
font-weight: normal;
letter-spacing: .8px;
padding: 0.67em 0.67em 0.3em 0.67em; padding: 0.67em 0.67em 0.3em 0.67em;
display: flex; display: flex;
} }

View File

@ -2,13 +2,13 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2023-09-21 09:06:28 * @Date: 2023-09-21 09:06:28
* @LastEditTime: 2024-04-09 15:24:39 * @LastEditTime: 2024-03-25 18:34:58
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
<template> <template>
<div> <div>
<div :id="id" class="coldProductChart" :style="{ height: '390px', width: width }" /> <div :id="id" class="productChart" :style="{ height: '390px', width: width }" />
</div> </div>
</template> </template>
@ -71,9 +71,9 @@ export default {
mounted() { mounted() {
console.log('mounted') console.log('mounted')
console.log('borderRadius: ', this.borderRadius) console.log('borderRadius: ', this.borderRadius)
this.$el.addEventListener('resize', () => { // this.$nextTick(() => {
console.log('resziing.....'); // this.initChart()
}); // })
}, },
beforeDestroy() { beforeDestroy() {
if (!this.chart) { if (!this.chart) {
@ -100,9 +100,8 @@ export default {
show: true, // show: true, //
position: 'top', // position: 'top', //
textStyle: { // textStyle: { //
color: 'rgba(255,255,255,0.5)', // color: '#ced1d5',
fontSize: 12, fontSize: 12
fontWight: 'bolder'
} }
}, },
} }
@ -115,7 +114,6 @@ export default {
name: '产线良品率', name: '产线良品率',
symbol: 'circle', // symbol: 'circle', //
type: 'line', type: 'line',
// symbolSize: 7,
yAxisIndex: 0, yAxisIndex: 0,
areaStyle: { areaStyle: {
opacity: 0.8, opacity: 0.8,
@ -143,16 +141,6 @@ export default {
] ]
// const colors = ['#5470C6', '#91CC75', '#EE6666'] // const colors = ['#5470C6', '#91CC75', '#EE6666']
this.chart = echarts.init(document.getElementById(this.id)) this.chart = echarts.init(document.getElementById(this.id))
let isFinished = false // isFinished
this.chart.on('finished', _ => {
if (!isFinished) {
console.log('我只执行一次')
isFinished = true
// this.isLoading = false //loading
this.chart.resize() //charts
}
console.log(113, 'finished')
})
this.chart.setOption({ this.chart.setOption({
// color: colors, // color: colors,
tooltip: { tooltip: {
@ -163,50 +151,38 @@ export default {
}, },
grid: { grid: {
left: "3%", left: "3%",
right: "10%", right: "5%",
bottom: "3%", bottom: "3%",
containLabel: true containLabel: true
}, },
// legend: { legend: {
// itemWidth: 10, itemWidth: 10,
// itemHeight: 10, itemHeight: 10,
// top: '5', top: '20',
// right: '20px', // right: '20px',
// data: [ data: ['产线产量', '产线良品率'],
// // { icon: 'rect', name: '访' }, textStyle: {
// { icon: 'roundRect', name: '线' }, fontSize: 12 * this.beilv,
// // { color: '#ced1d5'
// // icon: 'circle', name: '线', }
// // itemWidth: 7,
// // itemHeight: 7,
// // },
// ],
// textStyle: {
// fontSize: 12 * this.beilv,
// color: '#ced1d5'
// }
// },
xAxis: {
axisTick: {
show: false
}, },
xAxis: {
type: 'category', type: 'category',
axisLine: { axisLine: {
lineStyle: { lineStyle: {
type: 'solid', type: 'solid',
color: '#25528f', // 线 color: '#213259', // 线
width: '1' // 线 width: '1' // 线
} }
}, },
axisLabel: { axisLabel: {
textStyle: { textStyle: {
align: 'center',
color: 'rgba(255,255,255,0.5)' // color: 'rgba(255,255,255,0.5)' //
} }
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: '#25528f' color: '#213259'
} }
}, },
data: nameList data: nameList
@ -225,13 +201,9 @@ export default {
scale: true, scale: true,
type: 'value', type: 'value',
name: '良品率/%', name: '良品率/%',
max: 100,//
min: 0,//
interval: 20,//
nameTextStyle: {// y nameTextStyle: {// y
color: 'rgba(255,255,255,0.5)', // color: '#fff',
align: "left", align: "left",
padding: [0, 0, 0, 8]
}, },
position: 'right', position: 'right',
alignTicks: true, alignTicks: true,
@ -239,20 +211,19 @@ export default {
show: true, show: true,
lineStyle: { lineStyle: {
type: 'solid', type: 'solid',
color: '#25528f', // 线 color: '#213259', // 线
width: '1' // 线 width: '1' // 线
} }
}, },
axisLabel: { axisLabel: {
textStyle: { textStyle: {
color: 'rgba(255,255,255,0.5)', // color: '#ced1d5', //
formatter: '{value}%', formatter: '{value}%'
align:'left',
} }
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: '#25528f' color: '#213259'
} }
} }
// type: 'value' // type: 'value'
@ -274,10 +245,9 @@ export default {
type: 'value', type: 'value',
name: '产量/㎡', // y name: '产量/㎡', // y
nameTextStyle: { nameTextStyle: {
color: 'rgba(255,255,255,0.5)', // color: "#fff",
// fontSize: 10, // fontSize: 10,
align: "right", align: "right",
padding:[0,4,0,0]
}, },
position: 'left', position: 'left',
alignTicks: true, alignTicks: true,
@ -285,21 +255,19 @@ export default {
show: true, show: true,
lineStyle: { lineStyle: {
type: 'solid', type: 'solid',
color: '#25528f', // 线 color: '#213259', // 线
width: '1' // 线 width: '1' // 线
} }
}, },
axisLabel: { axisLabel: {
// padding: [0, 20, 0, 0],
textStyle: { textStyle: {
margin: 60,
color: 'rgba(255,255,255,0.5)', // color: 'rgba(255,255,255,0.5)', //
formatter: '{value} 片' formatter: '{value} 片'
} }
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: '#25528f' color: '#213259'
} }
} }
// type: 'value' // type: 'value'
@ -318,8 +286,7 @@ export default {
} }
</script> </script>
<style> <style>
.productChart{
.coldProductChart{
top: -10px; top: -10px;
} }
</style> </style>

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2023-09-21 09:06:28 * @Date: 2023-09-21 09:06:28
* @LastEditTime: 2024-04-09 15:24:28 * @LastEditTime: 2024-03-28 16:31:20
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
@ -105,9 +105,8 @@ export default {
show: true, // show: true, //
position: 'top', // position: 'top', //
textStyle: { // textStyle: { //
color: 'rgba(255,255,255,0.5)', // color: '#ced1d5',
fontSize: 12, fontSize: 12
fontWight:'bolder'
} }
}, },
} }
@ -143,7 +142,7 @@ export default {
} }
}, },
// data: passRateList // data: passRateList
data: passRateList data: []
} }
] ]
// const colors = ['#5470C6', '#91CC75', '#EE6666'] // const colors = ['#5470C6', '#91CC75', '#EE6666']
@ -167,23 +166,19 @@ export default {
type: 'cross' type: 'cross'
} }
}, },
grid: { top: 70, right: 20, bottom: 10, left: 10, containLabel: true }, grid: { top: 90, right: 60, bottom: 20, left: 20, containLabel: true },
// legend: { legend: {
// itemWidth: 10, itemWidth: 10,
// itemHeight: 10, itemHeight: 10,
// top: '2%', top: '0%',
// right: '30px', right: '20px',
// data: ['线', '线'], data: ['产线产量', '产线良品率'],
// textStyle: { textStyle: {
// fontSize: 12 * this.beilv, fontSize: 12 * this.beilv,
// color: '#ced1d5', color: '#ced1d5'
// fontWight: 'bolder' }
// }
// },
xAxis: {
axisTick: {
show: false
}, },
xAxis: {
type: 'category', type: 'category',
axisLine: { axisLine: {
lineStyle: { lineStyle: {
@ -192,11 +187,8 @@ export default {
width: '1' // 线 width: '1' // 线
} }
}, },
textStyle: {
fontWight: 'bolder'
},
axisLabel: { axisLabel: {
color: 'rgba(255,255,255,0.5)', // color: "#fff",
fontSize: 12, fontSize: 12,
// formatter: '{value}' // formatter: '{value}'
// textStyle: { // textStyle: {
@ -224,13 +216,9 @@ export default {
scale: true, scale: true,
type: 'value', type: 'value',
name: '良品率/%', name: '良品率/%',
max: 100,//
min: 0,//
interval: 20,//
nameTextStyle: {// y nameTextStyle: {// y
color: 'rgba(255,255,255,0.5)', // color: '#fff',
align: "left", align: "left",
padding: [0, 0, 0, 2]
}, },
position: 'right', position: 'right',
alignTicks: true, alignTicks: true,
@ -243,7 +231,7 @@ export default {
} }
}, },
axisLabel: { axisLabel: {
color: 'rgba(255,255,255,0.5)', // color: "#fff",
fontSize: 12, fontSize: 12,
// formatter: '{value}' // formatter: '{value}'
formatter: '{value}%' formatter: '{value}%'
@ -273,9 +261,8 @@ export default {
type: 'value', type: 'value',
name: '产量/片', // y name: '产量/片', // y
nameTextStyle: { nameTextStyle: {
color: 'rgba(255,255,255,0.5)', // color: "#fff",
// fontSize: 10, // fontSize: 10,
padding: [0, 4, 0, 0],
align: "right", align: "right",
}, },
// position: 'left', // position: 'left',
@ -291,7 +278,7 @@ export default {
axisLabel: { axisLabel: {
// textStyle: { // textStyle: {
// color: 'rgba(255,255,255,0.5)', // // color: 'rgba(255,255,255,0.5)', //
color: 'rgba(255,255,255,0.5)', // color: "#fff",
// show: true, // show: true,
lineStyle: { lineStyle: {
color: "#25528f", color: "#25528f",

View File

@ -111,9 +111,8 @@ export default {
show: true, // show: true, //
position: 'top', // position: 'top', //
textStyle: { // textStyle: { //
color: 'rgba(255,255,255,0.5)', // color: '#ced1d5',
fontSize: 12, fontSize: 12
fontWeight: 'normal'
} }
}, },
} }
@ -133,7 +132,7 @@ export default {
type: 'shadow' // 线'line' | 'shadow' type: 'shadow' // 线'line' | 'shadow'
} }
}, },
grid: { top: 70, right: 40, bottom: 10, left: 40, containLabel: true }, grid: { top: 90, right: 60, bottom: 20, left: 30, containLabel: true },
// legend: { // legend: {
// itemWidth: 10, // itemWidth: 10,
// itemHeight: 10, // itemHeight: 10,
@ -145,9 +144,6 @@ export default {
// } // }
// }, // },
xAxis: { xAxis: {
axisTick: {
show: false
},
type: 'category', type: 'category',
axisLine: { axisLine: {
lineStyle: { lineStyle: {
@ -156,11 +152,8 @@ export default {
width: '1' // 线 width: '1' // 线
} }
}, },
textStyle: {
fontWeight: 'bolder'
},
axisLabel: { axisLabel: {
color: 'rgba(255,255,255,0.5)', // color: "#fff",
fontSize: 12, fontSize: 12,
// formatter: '{value}' // formatter: '{value}'
}, },
@ -174,13 +167,13 @@ export default {
yAxis: { yAxis: {
name: '单位kwh', name: '单位kwh',
nameTextStyle: { nameTextStyle: {
color: 'rgba(255,255,255,0.5)', // color: '#fff',
fontSize: 12, fontSize: 10,
align: 'right', align: 'right',
}, },
type: 'value', type: 'value',
axisLabel: { axisLabel: {
color: 'rgba(255,255,255,0.5)', // color: "#fff",
fontSize: 12, fontSize: 12,
// formatter: '{value}/kwh' // formatter: '{value}/kwh'
}, },

View File

@ -1,13 +1,13 @@
<!-- <!--
* @Author: zhp * @Author: zhp
* @Date: 2023-12-27 13:54:52 * @Date: 2023-12-27 13:54:52
* @LastEditTime: 2024-04-03 18:12:18 * @LastEditTime: 2024-03-28 16:30:14
* @LastEditors: zhp * @LastEditors: zhp
* @Description: * @Description:
--> -->
<template> <template>
<div> <div>
<div :id="id" :style="{ height:'75px', width: width }" /> <div :id="id" class="productChart" :style="{ height: height + 'px', width: width }" />
</div> </div>
</template> </template>
@ -71,10 +71,7 @@ export default {
} }
}, },
mounted() { mounted() {
// console.log('mounted') console.log('mounted')
window.addEventListener('resize', () => {
this.resize()
})
// console.log('borderRadius: ', this.borderRadius) // console.log('borderRadius: ', this.borderRadius)
// console.log('33333', this.dataList) // console.log('33333', this.dataList)
// let arr = [] // let arr = []
@ -94,12 +91,6 @@ export default {
this.chart = null this.chart = null
}, },
methods: { methods: {
resize() {
this.chart.resize({
width: 'auto',
height: 90
});;
},
initChart(nameList, topNameList, nameWasteList, passRateList, wasteList) { initChart(nameList, topNameList, nameWasteList, passRateList, wasteList) {
let rawData = [] let rawData = []
let colors = ['#0fdedb', '#2359ec'] let colors = ['#0fdedb', '#2359ec']
@ -114,11 +105,8 @@ export default {
totalData.push(sum); totalData.push(sum);
} }
// } // }
// rawData[1].map((d, did) =>
// console.log((d / totalData[did]).toFixed(3))
// // totalData[did] <= 0 ? 0 : d / totalData[did]
// )
console.log('total', totalData) console.log('total', totalData)
this.chart = echarts.init(document.getElementById(this.id))
const series = [ const series = [
'良品', '良品',
'废品', '废品',
@ -138,7 +126,7 @@ export default {
// }, // },
color:colors[sid], color:colors[sid],
data: rawData.length != 0 ? rawData[sid].map((d, did) => data: rawData.length != 0 ? rawData[sid].map((d, did) =>
totalData[did] <= 0 ? 0 : (d / totalData[did]).toFixed(4) totalData[did] <= 0 ? 0 : d / totalData[did]
) : [] ) : []
}; };
}); });
@ -149,17 +137,6 @@ export default {
// width, // width,
// height // height
// }) // })
this.chart = echarts.init(document.getElementById(this.id))
let isFinished = false // isFinished
this.chart.on('finished', _ => {
if (!isFinished) {
console.log('我只执行一次')
isFinished = true
// this.isLoading = false //loading
this.chart.resize() //charts
}
console.log(113, 'finished')
})
this.chart.setOption({ this.chart.setOption({
legend: { legend: {
formatter: function (name) { formatter: function (name) {
@ -167,16 +144,15 @@ export default {
let singleData = series.filter(function (item) { let singleData = series.filter(function (item) {
return item.name == name return item.name == name
}) })
return name + parseFloat((singleData[0].data * 100).toFixed(0)) + '%' return name + parseFloat((singleData[0].data * 100).toFixed(3)) + '%'
}, },
itemWidth: 12, itemWidth: 12,
itemHeight: 12, itemHeight: 12,
bottom: '20', bottom: '20',
left: '20', left: '20',
icon: 'roundRect', icon: 'rect',
textStyle: { textStyle: {
color: 'rgba(255,255,255,.9)', color: '#ffffff'
fontSize:12,
} }
}, },
grid: { grid: {
@ -208,9 +184,9 @@ export default {
splitNumber: 50, splitNumber: 50,
// boundaryGap: [20, 20], // boundaryGap: [20, 20],
textStyle: { textStyle: {
color: 'rgba(255,255,255,.9)', color: '#ffffff',
verticalAlign: 'bottom', verticalAlign: 'bottom',
fontSize: 16, fontSize: 12,
align: 'left', align: 'left',
padding: [0, 0, 10, -5] padding: [0, 0, 10, -5]
} }
@ -236,9 +212,9 @@ export default {
splitNumber: 50, splitNumber: 50,
// boundaryGap: [20, 20], // boundaryGap: [20, 20],
textStyle: { textStyle: {
color: 'rgba(255,255,255,.9)', color: '#ffffff',
verticalAlign: 'bottom', verticalAlign: 'bottom',
fontSize: 16, fontSize: 12,
align: 'right', align: 'right',
padding: [0, 0, 10, -5] padding: [0, 0, 10, -5]
} }
@ -252,15 +228,10 @@ export default {
}, },
series:series series:series
}) })
this.$nextTick(() => { this.chart.resize({
setTimeout(() => { width: 'auto',
this.resize() height: 90
},1000); });;
})
// this.chart.resize({
// width: 'auto',
// height: 90
// });;
} }
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -34,49 +33,38 @@ import {
getcoreAlarmLogPage getcoreAlarmLogPage
} from '@/api/base/coreAlarmLog'; } from '@/api/base/coreAlarmLog';
import {DICT_TYPE, getDictDatas, publicFormatter } from "@/utils/dict"; import {DICT_TYPE, getDictDatas, publicFormatter } from "@/utils/dict";
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'alarmTime', prop: 'alarmTime',
label: '报警时间', label: '报警时间',
filter: parseTime, filter: parseTime
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'alarmSource', prop: 'alarmSource',
label: '报警来源', label: '报警来源'
width: 200,
showOverflowtooltip: true
}, },
{ {
prop: 'alarmType', prop: 'alarmType',
label: '报警类型', label: '报警类型'
width: 180,
showOverflowtooltip: true
}, },
{ {
prop: 'alarmGrade', prop: 'alarmGrade',
label: '报警级别', label: '报警级别',
filter: publicFormatter(DICT_TYPE.EQU_ALARM_LEVEL), filter: publicFormatter(DICT_TYPE.EQU_ALARM_LEVEL)
width: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'alarmReason', prop: 'alarmReason',
label: '报警原因', label: '报警原因'
showOverflowtooltip: true
}, },
{ {
prop: 'alarmContent', prop: 'alarmContent',
label: '报警详细', label: '报警详细'
showOverflowtooltip: true
} }
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -86,7 +74,7 @@ export default {
tableBtn: [].filter((v)=>v), tableBtn: [].filter((v)=>v),
tableData: [], tableData: [],
listQuery: { listQuery: {
pageSize: 20, pageSize: 10,
pageNo: 1, pageNo: 1,
total: 0, total: 0,
alarmSource: undefined, alarmSource: undefined,

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: DY * @LastEditors: DY
* @LastEditTime: 2024-04-02 16:46:17 * @LastEditTime: 2024-03-20 16:20:39
* @Description: * @Description:
--> -->
<template> <template>
@ -96,7 +96,7 @@ export default {
dataRule: { dataRule: {
code: [{ required: true, message: "客户编号不能为空", trigger: "blur" }], code: [{ required: true, message: "客户编号不能为空", trigger: "blur" }],
name: [{ required: true, message: "客户名称不能为空", trigger: "blur" }], name: [{ required: true, message: "客户名称不能为空", trigger: "blur" }],
// contact: [{ required: true, message: "", trigger: "blur" }], contact: [{ required: true, message: "联系人不能为空", trigger: "blur" }],
telephone: [ telephone: [
{ required: false, trigger: "blur", message: "手机号不能为空" }, { required: false, trigger: "blur", message: "手机号不能为空" },
{ {

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -46,56 +45,41 @@ import {
getCustomerPage, getCustomerPage,
deleteCustomer deleteCustomer
} from '@/api/base/coreCustomer'; } from '@/api/base/coreCustomer';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
filter: parseTime, filter: parseTime
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'name', prop: 'name',
label: '客户名称', label: '客户名称'
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'code', prop: 'code',
label: '客户编码', label: '客户编码'
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'contact', prop: 'contact',
label: '联系人', label: '联系人'
width: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'telephone', prop: 'telephone',
label: '联系电话', label: '联系电话'
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'address', prop: 'address',
label: '地址', label: '地址'
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'remark', prop: 'remark',
label: '备注', label: '备注'
minWidth: 150,
showOverflowtooltip: true
}, },
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -138,7 +122,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-customer:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-customer:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-customer:create') ? 'button' : '',

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -46,7 +45,6 @@ import {
getCoreDepartmentPage, getCoreDepartmentPage,
deleteCoreDepartment deleteCoreDepartment
} from '@/api/base/coreDepartment'; } from '@/api/base/coreDepartment';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -73,7 +71,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -110,7 +108,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-department:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-department:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-department:create') ? 'button' : '',

View File

@ -64,8 +64,8 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="进日期" prop="enterTime" :rules="[]"> <el-form-item label="进日期" prop="enterTime" :rules="[]">
<el-date-picker v-model="form.enterTime" :disabled="disabled" type="datetime" placeholder="请选择进日期" <el-date-picker v-model="form.enterTime" :disabled="disabled" type="datetime" placeholder="请选择进日期"
value-format="timestamp"></el-date-picker> value-format="timestamp"></el-date-picker>
</el-form-item> </el-form-item>
</el-col> </el-col>

View File

@ -12,8 +12,7 @@
:page="queryParams.pageNo" :page="queryParams.pageNo"
:limit="queryParams.pageSize" :limit="queryParams.pageSize"
:table-data="list" :table-data="list"
@emitFun="handleEmitFun" @emitFun="handleEmitFun">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -79,7 +78,7 @@
queryParams: { queryParams: {
equipmentId: form.id, equipmentId: form.id,
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 10,
}, },
tableBtn: [ tableBtn: [
this.$auth.hasPermi('base:core-equipment-attr:update') this.$auth.hasPermi('base:core-equipment-attr:update')
@ -119,7 +118,6 @@ import {
} from '@/api/base/equipment'; } from '@/api/base/equipment';
import Editor from '@/components/Editor'; import Editor from '@/components/Editor';
import AssetsUpload from './components/AssetsUpload.vue'; import AssetsUpload from './components/AssetsUpload.vue';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
export default { export default {
name: 'Equipment', name: 'Equipment',
@ -127,7 +125,7 @@ export default {
Editor, Editor,
EquipmentDrawer, EquipmentDrawer,
}, },
mixins: [basicPageMixin, tableHeightMixin], mixins: [basicPageMixin],
data() { data() {
return { return {
searchBarKeys: ['name', 'code'], searchBarKeys: ['name', 'code'],
@ -156,11 +154,11 @@ export default {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
fixed: true, fixed: true,
minWidth: 180, width: 180,
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'), filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
}, },
{ prop: 'name', label: '设备名称', minWidth: 180, showOverflowtooltip: true }, { prop: 'name', label: '设备名称' },
{ minWidth: 250, prop: 'code', label: '设备编码' }, { width: 256, prop: 'code', label: '设备编码' },
{ prop: 'equipmentTypeName', label: '设备类型' }, { prop: 'equipmentTypeName', label: '设备类型' },
{ prop: 'enName', label: '英文名称' }, { prop: 'enName', label: '英文名称' },
{ prop: 'abbr', label: '缩写' }, { prop: 'abbr', label: '缩写' },
@ -211,7 +209,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: (this.$auth.hasPermi('base:core-equipment:export') || this.$auth.hasPermi('base:core-equipment:create')) ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-equipment:export') type: this.$auth.hasPermi('base:core-equipment:export')
@ -486,7 +484,7 @@ export default {
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 10,
code: '', code: '',
name: '', name: '',
special: false special: false

View File

@ -12,8 +12,7 @@
:page="queryParams.pageNo" :page="queryParams.pageNo"
:limit="queryParams.pageSize" :limit="queryParams.pageSize"
:table-data="list" :table-data="list"
@emitFun="handleEmitFun" @emitFun="handleEmitFun">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -52,13 +51,13 @@
import moment from 'moment'; import moment from 'moment';
import basicPageMixin from '@/mixins/lb/basicPageMixin'; import basicPageMixin from '@/mixins/lb/basicPageMixin';
import DialogForm from './dialogForm.vue'; import DialogForm from './dialogForm.vue';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
// import { getAccessToken } from '@/utils/auth'; // import { getAccessToken } from '@/utils/auth';
export default { export default {
name: 'EquipmentLineBind', name: 'EquipmentLineBind',
components: { DialogForm }, components: { DialogForm },
mixins: [basicPageMixin, tableHeightMixin], mixins: [basicPageMixin],
data() { data() {
return { return {
basePath: '/base/core-equipment-bind-section', basePath: '/base/core-equipment-bind-section',
@ -82,13 +81,12 @@ export default {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
fixed: true, fixed: true,
width: 150, width: 180,
showOverflowtooltip: true,
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'), filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
}, },
{ prop: 'productionLineName', label: '产线名称', width: 120, showOverflowtooltip: true }, { prop: 'productionLineName', label: '产线名称' },
{ prop: 'workshopSectionName', label: '工段名称', width: 120, showOverflowtooltip: true }, { prop: 'workshopSectionName', label: '工段名称' },
{ prop: 'equipmentName', label: '设备名称', width: 150, showOverflowtooltip: true }, { prop: 'equipmentName', label: '设备名称' },
{ prop: 'sort', label: '工段中排序' }, { prop: 'sort', label: '工段中排序' },
{ {
prop: 'lineDataType', prop: 'lineDataType',
@ -126,8 +124,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-equipment-bind-section:create') type: 'separate',
? 'separate' : '',
}, },
{ {
type: this.$auth.hasPermi('base:core-equipment-bind-section:create') type: this.$auth.hasPermi('base:core-equipment-bind-section:create')
@ -239,7 +236,7 @@ export default {
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 10,
equipmentName: null, equipmentName: null,
productionLineId: null, productionLineId: null,
}, },

View File

@ -12,8 +12,7 @@
:page="queryParams.pageNo" :page="queryParams.pageNo"
:limit="queryParams.pageSize" :limit="queryParams.pageSize"
:table-data="list" :table-data="list"
@emitFun="handleEmitFun" @emitFun="handleEmitFun">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -51,7 +50,6 @@
<script> <script>
import moment from 'moment'; import moment from 'moment';
import basicPageMixin from '@/mixins/lb/basicPageMixin'; import basicPageMixin from '@/mixins/lb/basicPageMixin';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
import { import {
createEquipmentType, createEquipmentType,
@ -67,7 +65,7 @@ import {
export default { export default {
name: 'EquipmentType', name: 'EquipmentType',
components: {}, components: {},
mixins: [basicPageMixin, tableHeightMixin], mixins: [basicPageMixin],
data() { data() {
return { return {
searchBarKeys: ['name'], searchBarKeys: ['name'],
@ -90,7 +88,7 @@ export default {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
fixed: true, fixed: true,
minWidth: 180, width: 180,
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'), filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
}, },
{ prop: 'name', label: '类型名称' }, { prop: 'name', label: '类型名称' },
@ -111,8 +109,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-equipment-type:create') type: 'separate',
? 'separate' : '',
}, },
{ {
type: this.$auth.hasPermi('base:core-equipment-type:create') type: this.$auth.hasPermi('base:core-equipment-type:create')
@ -174,7 +171,7 @@ export default {
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 10,
name: '', name: '',
}, },
// //

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -44,51 +43,38 @@ import basicPage from '../../core/mixins/basic-page';
import { parseTime } from '../../core/mixins/code-filter'; import { parseTime } from '../../core/mixins/code-filter';
import { getHotMaterialPage, deleteHotMaterial } from '@/api/base/coreHotMaterial'; import { getHotMaterialPage, deleteHotMaterial } from '@/api/base/coreHotMaterial';
import { publicFormatter } from "@/utils/dict"; import { publicFormatter } from "@/utils/dict";
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
filter: parseTime, filter: parseTime
width: 180,
showOverflowtooltip: true
}, },
{ {
prop: 'name', prop: 'name',
label: '原料名称', label: '原料名称'
minWidth: 250,
showOverflowtooltip: true
}, },
{ {
prop: 'code', prop: 'code',
label: '原料编码', label: '原料编码'
width: 250,
showOverflowtooltip: true
}, },
{ {
prop: 'unit', prop: 'unit',
label: '单位', label: '单位',
filter: publicFormatter('unit_dict'), filter: publicFormatter('unit_dict')
width: 90,
showOverflowtooltip: true
}, },
{ {
prop: 'dailyCost', prop: 'dailyCost',
label: '每日消耗量', label: '每日消耗量'
width: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'remark', prop: 'remark',
label: '备注', label: '备注'
width: 120,
showOverflowtooltip: true
}, },
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -137,7 +123,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-hot-material-check:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-hot-material-check:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-hot-material-check:create') ? 'button' : '',

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -46,7 +45,6 @@ import {
getCoreMajorPage, getCoreMajorPage,
deleteCoreMajor deleteCoreMajor
} from '@/api/base/coreMajor'; } from '@/api/base/coreMajor';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -73,7 +71,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -110,7 +108,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-major:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-major:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-major:create') ? 'button' : '',

View File

@ -2,17 +2,15 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: DY * @LastEditors: DY
* @LastEditTime: 2024-03-27 13:47:24 * @LastEditTime: 2024-03-13 13:54:01
* @Description: * @Description:
--> -->
<template> <template>
<el-drawer <el-drawer
:visible.sync="visible" :visible.sync="visible"
:show-close="false" :show-close="false"
:wrapper-closable="true" :wrapper-closable="isdetail"
class="drawer" class="drawer"
:before-close="beforeClose"
@closed="$emit('destroy')"
size="60%"> size="60%">
<small-title slot="title" :no-padding="true"> <small-title slot="title" :no-padding="true">
{{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }} {{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }}
@ -264,15 +262,6 @@ export default {
}, },
mounted() {}, mounted() {},
methods: { methods: {
beforeClose(done) {
if (!this.isdetail) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {});
}
},
clearArea() { clearArea() {
this.$set(this.dataForm, 'area', 0) this.$set(this.dataForm, 'area', 0)
this.$set(this.dataForm, 'weight', 0) this.$set(this.dataForm, 'weight', 0)

View File

@ -9,12 +9,11 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:Width="120" :width="120"
label="操作" label="操作"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
@ -27,8 +26,7 @@
<add-or-update <add-or-update
v-if="addOrUpdateVisible" v-if="addOrUpdateVisible"
ref="addOrUpdate" ref="addOrUpdate"
@refreshDataList="getDataList" @refreshDataList="getDataList" />
@destroy="addOrUpdateVisible = false" />
</div> </div>
</template> </template>
@ -41,58 +39,43 @@ import {
getCoreProductPage, getCoreProductPage,
deleteCoreProduct deleteCoreProduct
} from '@/api/base/coreProduct'; } from '@/api/base/coreProduct';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
filter: parseTime, filter: parseTime
minWidth: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'name', prop: 'name',
label: '产品名称', label: '产品名称'
minWidth: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'code', prop: 'code',
label: '产品编码', label: '产品编码'
minWidth: 190,
showOverflowtooltip: true
}, },
{ {
prop: 'productType', prop: 'productType',
label: '产品类型', label: '产品类型',
filter: publicFormatter('product_type'), filter: publicFormatter('product_type')
minWidth: 180,
showOverflowtooltip: true
}, },
{ {
prop: 'specifications', prop: 'specifications',
label: '规格', label: '规格'
minWidth: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'unit', prop: 'unit',
label: '单位', label: '单位',
filter: publicFormatter('unit_dict'), filter: publicFormatter('unit_dict')
minWidth: 90,
showOverflowtooltip: true
}, },
{ {
prop: 'remark', prop: 'remark',
label: '备注', label: '备注',
minWidth: 120,
showOverflowtooltip: true
}, },
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -141,7 +124,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-product:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-product:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-product:create') ? 'button' : '',

View File

@ -9,12 +9,11 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:minWidth="120" :width="120"
label="操作" label="操作"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
@ -30,7 +29,7 @@
@cancel="handleCancel" @cancel="handleCancel"
@confirm="handleConfirm" @confirm="handleConfirm"
:before-close="handleCancel" :before-close="handleCancel"
minWidth="50%"> width="50%">
<add-or-update <add-or-update
ref="addOrUpdate" ref="addOrUpdate"
@refreshDataList="successSubmit"></add-or-update> @refreshDataList="successSubmit"></add-or-update>
@ -49,47 +48,34 @@ import {
import { getStatus } from '@/api/core/base/productionLine'; import { getStatus } from '@/api/core/base/productionLine';
import codeFilter from '../../core/mixins/code-filter'; import codeFilter from '../../core/mixins/code-filter';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
filter: parseTime, filter: parseTime
minWidth: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'factoryName', prop: 'factoryName',
label: '工厂', label: '工厂'
minWidth: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'roomNameDict', prop: 'roomNameDict',
label: '车间名称', label: '车间名称',
filter: publicFormatter('workshop'), filter: publicFormatter('workshop')
minWidth: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'name', prop: 'name',
label: '产线名称', label: '产线名称'
minWidth: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'code', prop: 'code',
label: '产线编码', label: '产线编码'
minWidth: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'enabled', prop: 'enabled',
label: '当前状态', label: '当前状态',
filter: codeFilter('lineStatus'), filter: codeFilter('lineStatus')
minWidth: 120,
showOverflowtooltip: true
}, },
// { // {
// prop: 'tvalue', // prop: 'tvalue',
@ -97,20 +83,16 @@ const tableProps = [
// }, // },
{ {
prop: 'description', prop: 'description',
label: '描述', label: '描述'
minWidth: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'remark', prop: 'remark',
label: '备注', label: '备注'
minWidth: 120,
showOverflowtooltip: true
} }
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -147,7 +129,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-production-line:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-production-line:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-production-line:create') ? 'button' : '',

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: DY * @LastEditors: DY
* @LastEditTime: 2024-04-02 16:46:49 * @LastEditTime: 2023-11-22 10:27:43
* @Description: * @Description:
--> -->
<template> <template>
@ -79,7 +79,7 @@ export default {
dataRule: { dataRule: {
code: [{ required: true, message: "供应商编号不能为空", trigger: "blur" }], code: [{ required: true, message: "供应商编号不能为空", trigger: "blur" }],
name: [{ required: true, message: "供应商名称不能为空", trigger: "blur" }], name: [{ required: true, message: "供应商名称不能为空", trigger: "blur" }],
// contact: [{ required: true, message: "", trigger: "blur" }], contact: [{ required: true, message: "联系人不能为空", trigger: "blur" }],
telephone: [ telephone: [
{ required: false, trigger: "blur", message: "手机号不能为空" }, { required: false, trigger: "blur", message: "手机号不能为空" },
{ {

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -46,56 +45,41 @@ import {
getCoreSupplierPage, getCoreSupplierPage,
deleteCoreSupplier deleteCoreSupplier
} from '@/api/base/coreSupplier'; } from '@/api/base/coreSupplier';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
label: '添加时间', label: '添加时间',
filter: parseTime, filter: parseTime
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'code', prop: 'code',
label: '供应商编码', label: '供应商编码'
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'name', prop: 'name',
label: '供应商名称', label: '供应商名称'
width: 180,
showOverflowtooltip: true
}, },
{ {
prop: 'contact', prop: 'contact',
label: '联系人', label: '联系人'
width: 180,
showOverflowtooltip: true
}, },
{ {
prop: 'telephone', prop: 'telephone',
label: '联系电话', label: '联系电话'
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'address', prop: 'address',
label: '地址', label: '地址'
width: 180,
showOverflowtooltip: true
}, },
{ {
prop: 'remark', prop: 'remark',
label: '备注', label: '备注'
minWidth: 90,
showOverflowtooltip: true
}, },
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -132,7 +116,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-supplier:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-supplier:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-supplier:create') ? 'button' : '',

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: DY * @LastEditors: DY
* @LastEditTime: 2024-04-08 10:21:46 * @LastEditTime: 2024-03-22 08:53:20
* @Description: * @Description:
--> -->
<template> <template>
@ -214,9 +214,7 @@ export default {
actualQuantity: this.dataForm.actualQuantity actualQuantity: this.dataForm.actualQuantity
}).then(response => { }).then(response => {
this.$modal.msgSuccess("操作成功!工单状态稍后将会更新!"); this.$modal.msgSuccess("操作成功!工单状态稍后将会更新!");
if (tempList.length > 0) {
this.saveData(tempList) this.saveData(tempList)
}
this.visible = false; this.visible = false;
this.$emit("refreshDataList"); this.$emit("refreshDataList");
}); });

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: DY * @LastEditors: DY
* @LastEditTime: 2024-04-10 16:16:31 * @LastEditTime: 2024-03-21 16:52:46
* @Description: * @Description:
--> -->
<template> <template>
@ -182,8 +182,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="orderList" :table-data="orderList">
:max-height="tableH">
<method-btn <method-btn
v-if="!isdetail" v-if="!isdetail"
slot="handleBtn" slot="handleBtn"
@ -201,7 +200,6 @@
@pagination="getList" /> --> @pagination="getList" /> -->
</div> </div>
<div v-if="$auth.hasPermiAnd(['base:material-product-bom-det:query', 'extend:process-flow:query'])">
<div class="card" style="padding-bottom: 16px;"> <div class="card" style="padding-bottom: 16px;">
<div class="boxTitle"> <div class="boxTitle">
<span class="blueTitle"></span> <span class="blueTitle"></span>
@ -211,8 +209,7 @@
:table-props="tableProps1" :table-props="tableProps1"
:page="listQuery1.pageNo" :page="listQuery1.pageNo"
:limit="listQuery1.pageSize" :limit="listQuery1.pageSize"
:table-data="materialList" :table-data="materialList" />
:max-height="tableH" />
<!-- <pagination <!-- <pagination
v-show="listQuery1.total > 0" v-show="listQuery1.total > 0"
:total="listQuery1.total" :total="listQuery1.total"
@ -221,7 +218,6 @@
:page-sizes="[5, 10, 15]" :page-sizes="[5, 10, 15]"
@pagination="getList" /> --> @pagination="getList" /> -->
</div> </div>
</div>
<!-- <div class="drawer-body__footer"> <!-- <div class="drawer-body__footer">
<el-button type="primary" @click="goback()">关闭</el-button> <el-button type="primary" @click="goback()">关闭</el-button>
@ -239,7 +235,6 @@ import SmallTitle from './SmallTitle';
import { publicFormatter } from "@/utils/dict"; import { publicFormatter } from "@/utils/dict";
import { parseTime } from '@/utils/ruoyi' import { parseTime } from '@/utils/ruoyi'
import topTabVue from '../../order/base/orderManage/components/topTab.vue'; import topTabVue from '../../order/base/orderManage/components/topTab.vue';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableBtn = [ const tableBtn = [
{ {
@ -297,11 +292,9 @@ const tableProps1 = [
]; ];
export default { export default {
mixins: [tableHeightMixin],
components: { SmallTitle, topTabVue }, components: { SmallTitle, topTabVue },
data() { data() {
return { return {
heightNum: 380,
tableBtn, tableBtn,
tableProps, tableProps,
tableProps1, tableProps1,
@ -462,8 +455,8 @@ export default {
// this.listQuery.total = response.data.total; // this.listQuery.total = response.data.total;
}); });
// 使 // 使
console.log('111我看看', this.dataForm.materialMethod) console.log()
if (this.dataForm.id && this.$auth.hasPermiAnd(['base:material-product-bom-det:query', 'extend:process-flow:query'])) { if (this.dataForm.id) {
if (this.dataForm.materialMethod === 1) { if (this.dataForm.materialMethod === 1) {
// //
getlistByProductId({ getlistByProductId({

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -63,7 +62,7 @@ import {
getCoreWOList getCoreWOList
} from '@/api/base/coreWorkOrder'; } from '@/api/base/coreWorkOrder';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -133,7 +132,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
components: { components: {
AddWorkOrder, AddWorkOrder,
AddOrUpdate, AddOrUpdate,
@ -157,8 +156,7 @@ export default {
// showTip: '使' // showTip: '使'
// } // }
// : undefined, // : undefined,
this.$auth.hasPermi(`base:core-work-order:update`) {
? {
type: 'active', type: 'active',
btnName: '激活', btnName: '激活',
showParam: { showParam: {
@ -176,10 +174,8 @@ export default {
} }
] ]
} }
} },
: undefined, {
this.$auth.hasPermi(`base:core-work-order:update`)
? {
type: 'pause', type: 'pause',
btnName: '暂停', btnName: '暂停',
showParam: { showParam: {
@ -192,10 +188,8 @@ export default {
} }
] ]
} }
} },
: undefined, {
this.$auth.hasPermi(`base:core-work-order:update`)
? {
type: 'nullify', type: 'nullify',
btnName: '作废', btnName: '作废',
showParam: { showParam: {
@ -208,10 +202,8 @@ export default {
} }
] ]
} }
} },
: undefined, {
this.$auth.hasPermi(`base:core-work-order:update`)
? {
type: 'finish', type: 'finish',
btnName: '完成', btnName: '完成',
showParam: { showParam: {
@ -229,10 +221,8 @@ export default {
} }
] ]
} }
} },
: undefined, {
this.$auth.hasPermi(`base:core-work-order:update`)
? {
type: 'stop', type: 'stop',
btnName: '终止', btnName: '终止',
showParam: { showParam: {
@ -250,12 +240,8 @@ export default {
} }
] ]
} }
} },
: undefined, this.$auth.hasPermi(`base:core-work-order:detail`)
this.$auth.hasPermiAnd([
'base:core-work-order:query',
'base:order:query'
])
? { ? {
type: 'detail', type: 'detail',
btnName: '查看详情', btnName: '查看详情',

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -47,27 +46,20 @@ import {
deleteCoreWorker deleteCoreWorker
} from '@/api/base/coreWorker'; } from '@/api/base/coreWorker';
import moment from 'moment'; import moment from 'moment';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
label: '创建时间', label: '创建时间',
filter: parseTime, filter: parseTime
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'name', prop: 'name',
label: '姓名', label: '姓名'
width: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'code', prop: 'code',
label: '员工号', label: '员工号'
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'sex', prop: 'sex',
@ -78,44 +70,32 @@ const tableProps = [
prop: 'entryTime', prop: 'entryTime',
label: '入职时间', label: '入职时间',
filter: (val) => val ? moment(val).format('yyyy-MM-DD') : '', filter: (val) => val ? moment(val).format('yyyy-MM-DD') : '',
width: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'telephone', prop: 'telephone',
label: '联系电话', label: '联系电话'
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'status', prop: 'status',
label: '状态', label: '状态',
filter: (val) => ['', '在职', '离职'][val], filter: (val) => ['', '在职', '离职'][val]
width: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'departmentName', prop: 'departmentName',
label: '部门', label: '部门'
width: 120,
showOverflowtooltip: true
}, },
{ {
prop: 'majorName', prop: 'majorName',
label: '专业', label: '专业'
width: 150,
showOverflowtooltip: true
}, },
{ {
prop: 'remark', prop: 'remark',
label: '备注', label: '备注'
width: 150,
showOverflowtooltip: true
}, },
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -163,7 +143,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-worker:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-worker:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-worker:create') ? 'button' : '',

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -46,7 +45,6 @@ import {
getCWSectionPage, getCWSectionPage,
deleteCWSection deleteCWSection
} from '@/api/base/coreWorkshopSection'; } from '@/api/base/coreWorkshopSection';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -72,13 +70,12 @@ const tableProps = [
}, },
{ {
prop: 'remark', prop: 'remark',
label: '备注', label: '备注'
showOverflowtooltip: true
}, },
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -115,7 +112,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:core-workshop-section:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-workshop-section:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-workshop-section:create') ? 'button' : '',

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: DY * @LastEditors: DY
* @LastEditTime: 2024-04-11 16:22:19 * @LastEditTime: 2024-03-21 15:21:32
* @Description: * @Description:
--> -->
<template> <template>
@ -122,14 +122,14 @@
</el-form> </el-form>
</div> </div>
<div class="attr-list" v-if="idAttrShow && this.$auth.hasPermi('base:material-attr:query')"> <div class="attr-list" v-if="idAttrShow">
<small-title <small-title
style="margin: 16px 0; padding-left: 8px" style="margin: 16px 0; padding-left: 8px"
:no-padding="true"> :no-padding="true">
物料属性 物料属性
</small-title> </small-title>
<div v-if="!isdetail && this.$auth.hasPermi('base:material-attr:create')" class="action_btn"> <div v-if="!isdetail" class="action_btn">
<template> <template>
<span style="display: inline-block;"> <span style="display: inline-block;">
<el-button type="text" @click="addNew()" icon="el-icon-plus">新增</el-button> <el-button type="text" @click="addNew()" icon="el-icon-plus">新增</el-button>
@ -182,23 +182,16 @@ import { parseTime } from '../../core/mixins/code-filter';
import attrAdd from './attr-add'; import attrAdd from './attr-add';
import { getDictDatas } from "@/utils/dict"; import { getDictDatas } from "@/utils/dict";
// const tableBtn = [ const tableBtn = [
// this.$auth.hasPermiAnd([ {
// 'base:material-attr:create', type: 'edit',
// 'base:material-attr:update' btnName: '编辑',
// ]) ? },
// { {
// type: 'edit', type: 'delete',
// btnName: '', btnName: '删除',
// } },
// : undefined, ];
// this.$auth.hasPermi('base:material-attr:delete') ?
// {
// type: 'delete',
// btnName: '',
// }
// : undefined,
// ];
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
@ -220,23 +213,7 @@ export default {
components: { SmallTitle, attrAdd }, components: { SmallTitle, attrAdd },
data() { data() {
return { return {
tableBtn: [ tableBtn,
this.$auth.hasPermiAnd([
'base:material-attr:create',
'base:material-attr:update'
]) ?
{
type: 'edit',
btnName: '编辑',
}
: undefined,
this.$auth.hasPermi('base:material-attr:delete') ?
{
type: 'delete',
btnName: '删除',
}
: undefined,
],
tableProps, tableProps,
addOrUpdateVisible: false, addOrUpdateVisible: false,
urlOptions: { urlOptions: {

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -41,7 +40,6 @@ import {
} from '@/api/base/material'; } from '@/api/base/material';
import { listData } from "@/api/system/dict/data"; import { listData } from "@/api/system/dict/data";
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -77,7 +75,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -134,7 +132,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:material:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:material:create') ? 'button' : '', type: this.$auth.hasPermi('base:material:create') ? 'button' : '',

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2021-11-18 14:16:25 * @Date: 2021-11-18 14:16:25
* @LastEditors: DY * @LastEditors: DY
* @LastEditTime: 2024-04-11 16:44:41 * @LastEditTime: 2024-03-21 14:39:52
* @Description: * @Description:
--> -->
<template> <template>
@ -56,14 +56,14 @@
</el-row> </el-row>
</el-form> </el-form>
</div> </div>
<div class="attr-list" v-if="idAttrShow && $auth.hasPermiAnd(['base:material-product-bom:query', 'base:material-product-bom-det:query'])"> <div class="attr-list" v-if="idAttrShow">
<small-title <small-title
style="margin: 16px 0; padding-left: 8px" style="margin: 16px 0; padding-left: 8px"
:no-padding="true"> :no-padding="true">
BOM明细 BOM明细
</small-title> </small-title>
<div v-if="!isdetail && $auth.hasPermi('base:material-product-bom:create')" class="action_btn"> <div v-if="!isdetail" class="action_btn">
<template> <template>
<span style="display: inline-block;"> <span style="display: inline-block;">
<el-button type="text" @click="addNew()" icon="el-icon-plus">添加</el-button> <el-button type="text" @click="addNew()" icon="el-icon-plus">添加</el-button>
@ -116,16 +116,16 @@ import { parseTime } from '../../core/mixins/code-filter';
import attrAdd from './attr-add'; import attrAdd from './attr-add';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
// const tableBtn = [ const tableBtn = [
// { {
// type: 'edit', type: 'edit',
// btnName: '', btnName: '编辑',
// }, },
// { {
// type: 'delete', type: 'delete',
// btnName: '', btnName: '删除',
// }, },
// ]; ];
const tableProps = [ const tableProps = [
{ {
prop: 'createTime', prop: 'createTime',
@ -160,24 +160,7 @@ export default {
components: { SmallTitle, attrAdd }, components: { SmallTitle, attrAdd },
data() { data() {
return { return {
tableBtn: [ tableBtn,
this.$auth.hasPermiAnd([
'base:material-product-bom:update',
'base:material-product-bom-det:create',
'base:material-product-bom-det:update'
]) ?
{
type: 'edit',
btnName: '编辑',
}
: undefined,
this.$auth.hasPermi('base:material-product-bom:delete') ?
{
type: 'delete',
btnName: '删除',
}
: undefined,
],
tableProps, tableProps,
addOrUpdateVisible: false, addOrUpdateVisible: false,
urlOptions: { urlOptions: {

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -39,7 +38,6 @@ import {
getMaterialPBPage, getMaterialPBPage,
deleteMaterialPB deleteMaterialPB
} from '@/api/base/materialProductBom'; } from '@/api/base/materialProductBom';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -57,7 +55,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
components: { components: {
AddOrUpdate, AddOrUpdate,
}, },
@ -110,7 +108,7 @@ export default {
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('base:material:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:material:create') ? 'button' : '', type: this.$auth.hasPermi('base:material:create') ? 'button' : '',

View File

@ -2,20 +2,37 @@
* @Author: zwq * @Author: zwq
* @Date: 2023-08-01 14:55:51 * @Date: 2023-08-01 14:55:51
* @LastEditors: zhp * @LastEditors: zhp
* @LastEditTime: 2024-04-10 16:34:40 * @LastEditTime: 2024-02-28 10:38:34
* @Description: * @Description:
--> -->
<template> <template>
<div class="app-container"> <div class="app-container">
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" /> <search-bar
<base-table :max-height="tableH" :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize" :formConfigs="formConfig"
ref="searchBarForm"
@headBtnClick="buttonClick" />
<base-table
:table-props="tableProps"
:page="listQuery.pageNo"
:limit="listQuery.pageSize"
:table-data="tableData"> :table-data="tableData">
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn" <method-btn
v-if="tableBtn.length"
slot="handleBtn"
:width="120"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
</base-table> </base-table>
<pagination :limit.sync="listQuery.pageSize" :page.sync="listQuery.pageNo" :total="listQuery.total" <pagination
:limit.sync="listQuery.pageSize"
:page.sync="listQuery.pageNo"
:total="listQuery.total"
@pagination="getDataList" /> @pagination="getDataList" />
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" /> <add-or-update
v-if="addOrUpdateVisible"
ref="addOrUpdate"
@refreshDataList="getDataList" />
</div> </div>
</template> </template>
@ -24,7 +41,6 @@ import AddOrUpdate from './add-or-updata';
// import unitDict from './unitDict'; // import unitDict from './unitDict';
import basicPage from '../mixins/basic-page'; import basicPage from '../mixins/basic-page';
import { parseTime } from '../mixins/code-filter'; import { parseTime } from '../mixins/code-filter';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
import { import {
getPackingModel, getPackingModel,
} from '@/api/base/printModel.js' } from '@/api/base/printModel.js'
@ -75,7 +91,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -128,7 +144,7 @@ export default {
param: 'createTime', param: 'createTime',
}, },
{ {
type: this.$auth.hasPermi('base:packaging-print-log:query') ? 'button' : '', type: 'button',
btnName: '搜索', btnName: '搜索',
name: 'search', name: 'search',
color: 'primary', color: 'primary',
@ -142,7 +158,7 @@ export default {
// name: 'reset', // name: 'reset',
// }, // },
{ {
type: this.$auth.hasPermi('base:packaging-print-log:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:packaging-print-log:create') ? 'button' : '', type: this.$auth.hasPermi('base:packaging-print-log:create') ? 'button' : '',
@ -298,7 +314,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 20; this.listQuery.pageSize = 10;
this.listQuery.workOrderId = val.workOrderId; this.listQuery.workOrderId = val.workOrderId;
if (val.createTime && val.createTime.length != 0) { if (val.createTime && val.createTime.length != 0) {
this.listQuery.createTime = val.createTime this.listQuery.createTime = val.createTime
@ -313,7 +329,7 @@ export default {
case 'reset': case 'reset':
this.$refs.searchBarForm.resetForm(); this.$refs.searchBarForm.resetForm();
this.listQuery = { this.listQuery = {
pageSize: 20, pageSize: 10,
pageNo: 1, pageNo: 1,
total: 1, total: 1,
}; };

View File

@ -2,14 +2,13 @@
* @Author: zwq * @Author: zwq
* @Date: 2023-08-01 14:55:51 * @Date: 2023-08-01 14:55:51
* @LastEditors: zhp * @LastEditors: zhp
* @LastEditTime: 2024-04-03 15:08:38 * @LastEditTime: 2023-12-04 13:38:45
* @Description: * @Description:
--> -->
<template> <template>
<div class="app-container"> <div class="app-container">
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" /> <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
<base-table :max-height="tableH" :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize" <base-table :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize" :table-data="tableData">
:table-data="tableData">
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn" <method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
</base-table> </base-table>
@ -27,8 +26,6 @@ import basicPage from '../mixins/basic-page';
import { parseTime } from '../mixins/code-filter'; import { parseTime } from '../mixins/code-filter';
import printModelDesign from '../custom/index' import printModelDesign from '../custom/index'
import { updatePackingModel,} from '@/api/base/printModel.js'; import { updatePackingModel,} from '@/api/base/printModel.js';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
import { import {
deletePackingModel, deletePackingModel,
getPackingModelPage, getPackingModelPage,
@ -62,7 +59,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -165,7 +162,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 20; this.listQuery.pageSize = 10;
this.listQuery.packagingCode = val.packagingCode; this.listQuery.packagingCode = val.packagingCode;
this.listQuery.createTime = val.createTime; this.listQuery.createTime = val.createTime;
this.getDataList(); this.getDataList();
@ -173,7 +170,7 @@ export default {
case 'reset': case 'reset':
this.$refs.searchBarForm.resetForm(); this.$refs.searchBarForm.resetForm();
this.listQuery = { this.listQuery = {
pageSize: 20, pageSize: 10,
pageNo: 1, pageNo: 1,
total: 1, total: 1,
}; };

View File

@ -2,20 +2,37 @@
* @Author: zwq * @Author: zwq
* @Date: 2023-08-01 14:55:51 * @Date: 2023-08-01 14:55:51
* @LastEditors: zhp * @LastEditors: zhp
* @LastEditTime: 2024-04-03 15:09:06 * @LastEditTime: 2023-12-04 13:44:01
* @Description: * @Description:
--> -->
<template> <template>
<div class="app-container"> <div class="app-container">
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" /> <search-bar
<base-table :max-height="tableH" :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize" :formConfigs="formConfig"
ref="searchBarForm"
@headBtnClick="buttonClick" />
<base-table
:table-props="tableProps"
:page="listQuery.pageNo"
:limit="listQuery.pageSize"
:table-data="tableData"> :table-data="tableData">
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn" <method-btn
v-if="tableBtn.length"
slot="handleBtn"
:width="120"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
</base-table> </base-table>
<pagination :limit.sync="listQuery.pageSize" :page.sync="listQuery.pageNo" :total="listQuery.total" <pagination
:limit.sync="listQuery.pageSize"
:page.sync="listQuery.pageNo"
:total="listQuery.total"
@pagination="getDataList" /> @pagination="getDataList" />
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" /> <add-or-update
v-if="addOrUpdateVisible"
ref="addOrUpdate"
@refreshDataList="getDataList" />
</div> </div>
</template> </template>
@ -24,7 +41,6 @@ import AddOrUpdate from './add-or-updata';
// import unitDict from './unitDict'; // import unitDict from './unitDict';
import basicPage from '../mixins/basic-page'; import basicPage from '../mixins/basic-page';
import { parseTime } from '../mixins/code-filter'; import { parseTime } from '../mixins/code-filter';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
import { import {
deletePackingType, deletePackingType,
getPackingTypePage, getPackingTypePage,
@ -48,7 +64,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -138,7 +154,7 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 20; this.listQuery.pageSize = 10;
this.listQuery.packagingCode = val.packagingCode; this.listQuery.packagingCode = val.packagingCode;
this.listQuery.createTime = val.createTime; this.listQuery.createTime = val.createTime;
this.getDataList(); this.getDataList();
@ -146,7 +162,7 @@ export default {
case 'reset': case 'reset':
this.$refs.searchBarForm.resetForm(); this.$refs.searchBarForm.resetForm();
this.listQuery = { this.listQuery = {
pageSize: 20, pageSize: 10,
pageNo: 1, pageNo: 1,
total: 1, total: 1,
}; };

View File

@ -2,28 +2,17 @@
<div class="choicepart-container"> <div class="choicepart-container">
<navbar /> <navbar />
<div class="choicepart-wrapper"> <div class="choicepart-wrapper">
<div <div class="choicepart-box" id="choicepartBox" :style="'transform:scale('+scale+');width:1710px;height:538px;'" v-show="showItem">
class="choicepart-box"
id="choicepartBox"
:style="'transform:scale(' + scale + ')'"
style="width: 1710px; height: 538px"
v-show="showItem">
<div class="choicepart-line1"> <div class="choicepart-line1">
<div <div
v-for="(item, index) in menuArr1" v-for="(item, index) in menuArr1"
:key="index" :key="index"
class="choicepart-item" class="choicepart-item"
@click="handelClick(item, item.choicepart)" @click="handelClick(item, item.choicepart)"
:style="{ :style="{opacity: item.visible?1:0.4, pointerEvents:item.visible?'auto':'none'}"
opacity: item.visible ? 1 : 0.4, >
pointerEvents: item.visible ? 'auto' : 'none',
}">
<div> <div>
<img <img :src="require(`../../assets/images/choicepart/${item.name}.png`)" alt="">
:src="
require(`../../assets/images/choicepart/${item.name}.png`)
"
alt="" />
</div> </div>
<div class="choicepart-item-title">{{item.meta.title}}</div> <div class="choicepart-item-title">{{item.meta.title}}</div>
</div> </div>
@ -34,16 +23,10 @@
:key="index" :key="index"
class="choicepart-item" class="choicepart-item"
@click="handelClick(item, item.choicepart)" @click="handelClick(item, item.choicepart)"
:style="{ :style="{opacity: item.visible?1:0.4, pointerEvents:item.visible?'auto':'none'}"
opacity: item.visible ? 1 : 0.4, >
pointerEvents: item.visible ? 'auto' : 'none',
}">
<div> <div>
<img <img :src="require(`../../assets/images/choicepart/${item.name}.png`)" alt="">
:src="
require(`../../assets/images/choicepart/${item.name}.png`)
"
alt="" />
</div> </div>
<div class="choicepart-item-title">{{item.meta.title}}</div> <div class="choicepart-item-title">{{item.meta.title}}</div>
</div> </div>
@ -54,13 +37,14 @@
</div> </div>
</template> </template>
<script> <script>
import Navbar from './components/Navbar'; import Navbar from './components/Navbar'
import { debounce } from '@/utils/debounce'; import { debounce } from '@/utils/debounce'
export default { export default {
components: { Navbar }, components: { Navbar },
name: 'choicePart', name: 'choicePart',
data() { data() {
return { return {
boxReset: '',
scale: 1, scale: 1,
menuArr1: [ menuArr1: [
{ {
@ -68,65 +52,65 @@ export default {
title: '基础核心', title: '基础核心',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Order', name: 'Order',
title: '订单管理', title: '订单管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Equipment', name: 'Equipment',
title: '设备管理', title: '设备管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Group', name: 'Group',
title: '班组管理', title: '班组管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Quality', name: 'Quality',
title: '质量管理', title: '质量管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Warehouse', name: 'Warehouse',
title: '仓库管理', title: '仓库管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Energy', name: 'Energy',
title: '能源管理', title: '能源管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Packaging', name: 'Packaging',
title: '包装管理', title: '包装管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, }
], ],
menuArr2: [ menuArr2: [
{ {
@ -134,16 +118,16 @@ export default {
title: '物料管理', title: '物料管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Extend', name: 'Extend',
title: '工艺管理', title: '工艺管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
// { // {
// name: 'Delivery', // name: 'Delivery',
@ -158,94 +142,91 @@ export default {
title: '报表管理', title: '报表管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Cost', name: 'Cost',
title: '成本管理', title: '成本管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'SafetyEnvironmental', name: 'SafetyEnvironmental',
title: '安环管理', title: '安环管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'Databoard', name: 'Databoard',
title: '数据驾驶舱', title: '数据驾驶舱',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, },
{ {
name: 'System', name: 'System',
title: '系统管理', title: '系统管理',
visible: false, visible: false,
meta: { meta: {
title: '', title: ''
}, }
}, }
], ],
showItem: false, showItem: false
}; }
}, },
// computed:{ // computed:{
// ...mapGetters(['sidebarRouters']) // ...mapGetters(['sidebarRouters'])
// }, // },
mounted() { mounted() {
this.getMsg(); this.getMsg()
this.boxReset(); this.boxReset = debounce(() => {
window.addEventListener('resize', this.boxReset); this.resetSize()
}, }, 300)
destroyed() { this.boxReset()
window.removeEventListener('resize', this.boxReset); window.addEventListener('resize', () => {
this.boxReset()
})
}, },
methods: { methods: {
boxReset() {
debounce(() => {
this.resetSize();
}, 300)();
},
getMsg() { getMsg() {
let menuList = this.$store.state.permission.sidebarRouters; let menuList = this.$store.state.permission.sidebarRouters
console.log(menuList); console.log(menuList)
if (menuList.length > 0) { if (menuList.length > 0) {
for (let i = 0; i < menuList.length; i ++) { for (let i = 0; i < menuList.length; i ++) {
for (let k = 0; k < 8; k++) { for (let k = 0; k < 8; k++) {
if (menuList[i].name === this.menuArr1[k].name) { if (menuList[i].name === this.menuArr1[k].name) {
this.menuArr1[k].visible = true; this.menuArr1[k].visible = true
this.menuArr1[k].id = menuList[i].id; this.menuArr1[k].id = menuList[i].id
this.menuArr1[k].choicepart = i; this.menuArr1[k].choicepart = i
this.menuArr1[k].children = menuList[i].children; this.menuArr1[k].children = menuList[i].children
this.menuArr1[k].meta = menuList[i].meta; this.menuArr1[k].meta = menuList[i].meta
} }
} }
for (let j = 0; j < 7; j++) { for (let j = 0; j < 7; j++) {
if (menuList[i].name === this.menuArr2[j].name) { if (menuList[i].name === this.menuArr2[j].name) {
this.menuArr2[j].visible = true; this.menuArr2[j].visible = true
this.menuArr2[j].id = menuList[i].id; this.menuArr2[j].id = menuList[i].id
this.menuArr2[j].choicepart = i; this.menuArr2[j].choicepart = i
this.menuArr2[j].children = menuList[i].children; this.menuArr2[j].children = menuList[i].children
this.menuArr2[j].meta = menuList[i].meta; this.menuArr2[j].meta = menuList[i].meta
} }
} }
} }
} }
console.log(this.menuArr1); console.log(this.menuArr1)
console.log(this.menuArr2); console.log(this.menuArr2)
}, },
handelClick(item, index) { handelClick(item, index) {
// this.$router.push({name: 'SystemUser'}) // this.$router.push({name: 'SystemUser'})
this.$store.dispatch('app/setChoicepart', index); this.$store.dispatch('app/setChoicepart', index)
this.toRouter(item); this.toRouter(item)
// if (item.meta.unuse) { // if (item.meta.unuse) {
// this.$message.warning(this.$t('')) // this.$message.warning(this.$t(''))
// } else { // } else {
@ -253,36 +234,36 @@ export default {
// } // }
}, },
toRouter(item) { toRouter(item) {
console.log(item); console.log(item)
if (item.children) { if (item.children) {
this.toRouter(item.children[0]); this.toRouter(item.children[0])
} else { } else {
this.$router.push({ name: item.name }); this.$router.push({ name: item.name })
} }
}, },
resetSize() { resetSize() {
let _this = this; let _this = this
_this.showItem = false; _this.showItem = false
_this.loading = true; _this.loading = true
let choicepartBox = document.querySelector('#choicepartBox'); let choicepartBox = document.querySelector('#choicepartBox')
let rw = parseFloat(window.innerWidth); let rw = parseFloat(window.innerWidth)
let rh = parseFloat(window.innerHeight); let rh = parseFloat(window.innerHeight)
let bw = parseFloat(choicepartBox.style.width); let bw = parseFloat(choicepartBox.style.width)
let bh = parseFloat(choicepartBox.style.height); let bh = parseFloat(choicepartBox.style.height)
let wx = 0.82 / (bw / rw); let wx = 0.82/(bw / rw)
let hx = 0.56 / (bh / rh); let hx = 0.56/(bh / rh)
_this.scale = wx > hx ? hx : wx; _this.scale = wx > hx ? hx : wx
setTimeout(_this.showItemFun, 700); setTimeout(_this.showItemFun, 700)
}, },
showItemFun() { showItemFun() {
this.loading = false; this.loading = false
this.showItem = true; this.showItem = true
}, }
}, },
beforeDestroy() { beforeDestroy() {
this.showItem = false; this.showItem = false
}, }
}; }
</script> </script>
<style lang='scss' scoped> <style lang='scss' scoped>
.choicepart-container { .choicepart-container {
@ -315,8 +296,7 @@ export default {
.choicepart-item { .choicepart-item {
width: 184px; width: 184px;
height: 224px; height: 224px;
background: url('../../assets/images/choicepart/choice-item-back.png') background: url('../../assets/images/choicepart/choice-item-back.png') no-repeat;
no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
border-radius: 5px; border-radius: 5px;
overflow: hidden; overflow: hidden;
@ -354,7 +334,7 @@ export default {
.choicepart-footer { .choicepart-footer {
position: absolute; position: absolute;
width: 100%; width: 100%;
color: #c7c7c7; color: #C7C7C7;
user-select: none; user-select: none;
font-size: 12px; font-size: 12px;
letter-spacing: 1px; letter-spacing: 1px;

View File

@ -106,10 +106,6 @@ export default {
activeIndex(val) { activeIndex(val) {
this.initChart(val); this.initChart(val);
}, },
daterange(val) {
console.log('222', val)
this.templateOption.xAxis.data = val
},
}, },
methods: { methods: {
/** /**
@ -128,8 +124,8 @@ export default {
}, },
/** 初始化/设置 图表 */ /** 初始化/设置 图表 */
initChart(val) { initChart(val) {
console.log('tableData', this.tableData);
if (!this.chart) this.chart = echarts.init(this.$refs.chartDiv); if (!this.chart) this.chart = echarts.init(this.$refs.chartDiv);
this.chart.clear();
switch (val) { switch (val) {
case 0: case 0:
const eqCt = this.tableData.map((row) => ({ const eqCt = this.tableData.map((row) => ({
@ -143,7 +139,7 @@ export default {
...this.templateOption, ...this.templateOption,
yAxis: { ...this.templateOption.yAxis, name: '设备CT' }, yAxis: { ...this.templateOption.yAxis, name: '设备CT' },
series: eqCt, series: eqCt,
}, true); });
break; break;
case 1: case 1:
const eqTt = this.tableData.map((row) => ({ const eqTt = this.tableData.map((row) => ({
@ -157,7 +153,7 @@ export default {
...this.templateOption, ...this.templateOption,
yAxis: { ...this.templateOption.yAxis, name: '设备TT' }, yAxis: { ...this.templateOption.yAxis, name: '设备TT' },
series: eqTt, series: eqTt,
}, true); });
break; break;
case 2: case 2:
const plCt = this.tableData.map((row) => ({ const plCt = this.tableData.map((row) => ({
@ -171,7 +167,7 @@ export default {
...this.templateOption, ...this.templateOption,
yAxis: { ...this.templateOption.yAxis, name: '产线CT' }, yAxis: { ...this.templateOption.yAxis, name: '产线CT' },
series: plCt, series: plCt,
}, true); });
break; break;
case 3: case 3:
const plTt = this.tableData.map((row) => ({ const plTt = this.tableData.map((row) => ({
@ -185,10 +181,9 @@ export default {
...this.templateOption, ...this.templateOption,
yAxis: { ...this.templateOption.yAxis, name: '产线TT' }, yAxis: { ...this.templateOption.yAxis, name: '产线TT' },
series: plTt, series: plTt,
}, true); });
break; break;
default: default:
this.activeIndex = 0
const eqCt2 = this.tableData.map((row) => ({ const eqCt2 = this.tableData.map((row) => ({
name: row.equName, name: row.equName,
type: 'line', type: 'line',
@ -200,7 +195,7 @@ export default {
...this.templateOption, ...this.templateOption,
yAxis: { ...this.templateOption.yAxis, name: '设备CT' }, yAxis: { ...this.templateOption.yAxis, name: '设备CT' },
series: eqCt2, series: eqCt2,
}, true); });
} }
}, },
}, },

View File

@ -18,15 +18,13 @@
:page="1" :page="1"
:limit="999" :limit="999"
:table-props="tableProps" :table-props="tableProps"
:table-data="tableData" :table-data="tableData" />
:max-height="tableH" />
<div v-if="tableData.length == 0" class="no-data-bg"></div> <div v-if="tableData.length == 0" class="no-data-bg"></div>
</el-tab-pane> </el-tab-pane>
<el-tab-pane :label="'\u3000产线平衡分析图\u3000'" name="graph"> <el-tab-pane :label="'\u3000产线平衡分析图\u3000'" name="graph">
<div class="graph" style="height: 800px"> <div class="graph" style="height: 800px">
<!-- graph --> <!-- graph -->
<AnalysisChart <AnalysisChart
ref="analysisChart"
v-if="activeName == 'graph'" v-if="activeName == 'graph'"
:table-data="tableData" :table-data="tableData"
:daterange="dateArr"></AnalysisChart> :daterange="dateArr"></AnalysisChart>
@ -49,14 +47,13 @@ import BalanceChart from '../balanceChart';
import basicPageMixin from '@/mixins/lb/basicPageMixin'; import basicPageMixin from '@/mixins/lb/basicPageMixin';
import AnalysisChart from './chart.vue'; import AnalysisChart from './chart.vue';
import { parseTime } from '@/utils/ruoyi' import { parseTime } from '@/utils/ruoyi'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
export default { export default {
components: { components: {
BalanceChart, BalanceChart,
AnalysisChart, AnalysisChart,
}, },
mixins: [basicPageMixin, tableHeightMixin], mixins: [basicPageMixin],
data() { data() {
return { return {
activeName: 'table', activeName: 'table',
@ -179,11 +176,6 @@ export default {
// const p = this.tableProps // const p = this.tableProps
// const d = this.tableData // const d = this.tableData
// debugger; // debugger;
if (this.activeName == 'graph') {
this.$nextTick(() => {
this.$refs['analysisChart'].initChart()
})
}
this.ready = true; this.ready = true;
}, },

View File

@ -9,8 +9,7 @@
:table-props="tableProps" :table-props="tableProps"
:page="listQuery.pageNo" :page="listQuery.pageNo"
:limit="listQuery.pageSize" :limit="listQuery.pageSize"
:table-data="tableData" :table-data="tableData">
:max-height="tableH">
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
@ -42,7 +41,6 @@
import AddOrUpdate from './add-or-updata'; import AddOrUpdate from './add-or-updata';
import basicPage from '../../mixins/basic-page'; import basicPage from '../../mixins/basic-page';
import { parseTime } from '../../mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
import { import {
deleteFactory, deleteFactory,
getFactoryPage getFactoryPage
@ -73,7 +71,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage, tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -125,7 +123,7 @@ export default {
// name: 'reset', // name: 'reset',
// }, // },
{ {
type: this.$auth.hasPermi('base:core-factory:create') ? 'separate' : '', type: 'separate',
}, },
{ {
type: this.$auth.hasPermi('base:core-factory:create') ? 'button' : '', type: this.$auth.hasPermi('base:core-factory:create') ? 'button' : '',

View File

@ -17,7 +17,7 @@ export default {
}, },
tableData: [], tableData: [],
listQuery: { listQuery: {
pageSize: 20, pageSize: 10,
pageNo: 1, pageNo: 1,
total: 1, total: 1,
}, },

View File

@ -27,16 +27,13 @@
import { getPdlDataOneDay } from '@/api/core/monitoring/data24' import { getPdlDataOneDay } from '@/api/core/monitoring/data24'
import { parseTime } from '../../mixins/code-filter'; import { parseTime } from '../../mixins/code-filter';
import { getSchedulingMonitoringRecord1 } from '@/api/monitoring/teamProduction' import { getSchedulingMonitoringRecord1 } from '@/api/monitoring/teamProduction'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
export default { export default {
name: 'productionLineData24', name: 'productionLineData24',
mixins: [tableHeightMixin],
components: {}, components: {},
props: {}, props: {},
data() { data() {
return { return {
heightNum: 240,
urlOptions: { urlOptions: {
getDataListURL: getPdlDataOneDay getDataListURL: getPdlDataOneDay
}, },
@ -59,9 +56,9 @@ export default {
}, },
computed: {}, computed: {},
mounted() { mounted() {
// window.addEventListener('resize', () => { window.addEventListener('resize', () => {
// this.tableH = this.tableHeight(240) this.tableH = this.tableHeight(240)
// }) })
this.getList(); this.getList();
}, },
methods: { methods: {
@ -118,7 +115,7 @@ export default {
/** 把 list 里的数据转换成 tableProps 对应的格式 */ /** 把 list 里的数据转换成 tableProps 对应的格式 */
convertList(list) { convertList(list) {
// let sectionArr= [] // let sectionArr= []
let temp = list.datamap ? Object.values(list?.datamap) : [] let temp = Object.values(list.datamap)
console.log('111', temp) console.log('111', temp)
temp.forEach(item => { temp.forEach(item => {

View File

@ -32,7 +32,6 @@ import {
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getEnergyTypeListAll } from '@/api/base/energyType';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import moment from 'moment'; import moment from 'moment';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -62,7 +61,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage,tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -71,6 +70,7 @@ export default {
}, },
tableData: [], tableData: [],
tableProps, tableProps,
tableH: this.tableHeight(260),
drawerVisible: false, drawerVisible: false,
formConfig: [ formConfig: [
{ {
@ -92,15 +92,13 @@ export default {
param: 'searchTime', param: 'searchTime',
}, },
{ {
type: this.$auth.hasPermi('extend:cost-energy-search:query') type: 'button',
? 'button'
: '',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('extend:cost-energy-search:export') type: this.$auth.hasPermi('cost:energyCost:export')
? 'button' ? 'button'
: '', : '',
btnName: '导出', btnName: '导出',
@ -113,6 +111,9 @@ export default {
}, },
components: {}, components: {},
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
getEnergyTypeListAll().then((response) => { getEnergyTypeListAll().then((response) => {
this.formConfig[0].selectOptions = response.data; this.formConfig[0].selectOptions = response.data;
}); });

View File

@ -32,7 +32,6 @@ import {
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getEnergyTypeListAll } from '@/api/base/energyType';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import moment from 'moment'; import moment from 'moment';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -72,7 +71,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage,tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -81,6 +80,7 @@ export default {
}, },
tableData: [], tableData: [],
tableProps, tableProps,
tableH: this.tableHeight(260),
drawerVisible: false, drawerVisible: false,
formConfig: [ formConfig: [
{ {
@ -116,15 +116,13 @@ export default {
defaultSelect: [], defaultSelect: [],
}, },
{ {
type: this.$auth.hasPermi('extend:cost-enery-auto-report:query') type: 'button',
? 'button'
: '',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('extend:cost-enery-auto-report:export') type: this.$auth.hasPermi('cost:energyCostHis:export')
? 'button' ? 'button'
: '', : '',
btnName: '导出', btnName: '导出',
@ -137,6 +135,9 @@ export default {
}, },
components: {}, components: {},
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
const end = new Date(); const end = new Date();
const start = new Date(); const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);

View File

@ -53,7 +53,6 @@ import {
} from '@/api/cost/costMaterialSet'; } from '@/api/cost/costMaterialSet';
import { getHotMaterialList } from '@/api/base/coreHotMaterial'; import { getHotMaterialList } from '@/api/base/coreHotMaterial';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -92,7 +91,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage,tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -100,14 +99,15 @@ export default {
deleteURL: deleteCostMaterialSet, deleteURL: deleteCostMaterialSet,
}, },
tableProps, tableProps,
tableH: this.tableHeight(260),
tableBtn: [ tableBtn: [
this.$auth.hasPermi(`extend:cost-material-set:update`) this.$auth.hasPermi(`cost:rawMaterialConfig:update`)
? { ? {
type: 'edit', type: 'edit',
btnName: '编辑', btnName: '编辑',
} }
: undefined, : undefined,
this.$auth.hasPermi(`extend:cost-material-set:delete`) this.$auth.hasPermi(`cost:rawMaterialConfig:delete`)
? { ? {
type: 'delete', type: 'delete',
btnName: '删除', btnName: '删除',
@ -124,22 +124,16 @@ export default {
filterable: true, filterable: true,
}, },
{ {
type: this.$auth.hasPermi('extend:cost-material-set:query') type: 'button',
? 'button'
: '',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary',
}, },
{ {
type: type: 'separate',
this.$auth.hasPermi('extend:cost-material-set:create') &&
this.$auth.hasPermi('extend:cost-material-set:query')
? 'separate'
: '',
}, },
{ {
type: this.$auth.hasPermi('extend:cost-material-set:create') type: this.$auth.hasPermi('cost:rawMaterialConfig:create')
? 'button' ? 'button'
: '', : '',
btnName: '新增', btnName: '新增',
@ -154,6 +148,9 @@ export default {
AddOrUpdate, AddOrUpdate,
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
getHotMaterialList().then((response) => { getHotMaterialList().then((response) => {
this.formConfig[0].selectOptions = response.data; this.formConfig[0].selectOptions = response.data;
}); });

View File

@ -32,7 +32,6 @@ import {
import { getHotMaterialList } from '@/api/base/coreHotMaterial'; import { getHotMaterialList } from '@/api/base/coreHotMaterial';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import moment from 'moment'; import moment from 'moment';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -67,7 +66,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage,tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -76,6 +75,7 @@ export default {
}, },
tableData: [], tableData: [],
tableProps, tableProps,
tableH: this.tableHeight(260),
drawerVisible: false, drawerVisible: false,
formConfig: [ formConfig: [
{ {
@ -97,15 +97,13 @@ export default {
param: 'searchTime', param: 'searchTime',
}, },
{ {
type: this.$auth.hasPermi('extend:cost-material-search:query') type: 'button',
? 'button'
: '',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('extend:cost-material-search:export') type: this.$auth.hasPermi('cost:rawMaterialCost:export')
? 'button' ? 'button'
: '', : '',
btnName: '导出', btnName: '导出',
@ -118,6 +116,9 @@ export default {
}, },
components: {}, components: {},
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
getHotMaterialList().then((response) => { getHotMaterialList().then((response) => {
this.formConfig[0].selectOptions = response.data; this.formConfig[0].selectOptions = response.data;
}); });

View File

@ -32,7 +32,6 @@ import {
import { getHotMaterialList } from '@/api/base/coreHotMaterial'; import { getHotMaterialList } from '@/api/base/coreHotMaterial';
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict';
import moment from 'moment'; import moment from 'moment';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
@ -71,7 +70,7 @@ const tableProps = [
]; ];
export default { export default {
mixins: [basicPage,tableHeightMixin], mixins: [basicPage],
data() { data() {
return { return {
urlOptions: { urlOptions: {
@ -80,6 +79,7 @@ export default {
}, },
tableData: [], tableData: [],
tableProps, tableProps,
tableH: this.tableHeight(260),
drawerVisible: false, drawerVisible: false,
formConfig: [ formConfig: [
{ {
@ -115,15 +115,13 @@ export default {
defaultSelect: [], defaultSelect: [],
}, },
{ {
type: this.$auth.hasPermi('extend:cost-material-auto-report:query') type: 'button',
? 'button'
: '',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary',
}, },
{ {
type: this.$auth.hasPermi('extend:cost-material-auto-report:export') type: this.$auth.hasPermi('cost:rawMaterialCostHis:export')
? 'button' ? 'button'
: '', : '',
btnName: '导出', btnName: '导出',
@ -136,6 +134,9 @@ export default {
}, },
components: {}, components: {},
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
const end = new Date(); const end = new Date();
const start = new Date(); const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);

View File

@ -1,17 +1,13 @@
<template> <template>
<div style="height: 370px"> <div style="height: 370px;">
<NotMsg v-show="notMsg"/> <NotMsg v-show="notMsg"/>
<div <div id="numRateChart" class="num-rate-chart" style="width:900px;height:420px;" v-show='!notMsg'></div>
id="numRateChart"
class="num-rate-chart"
style="width: 900px; height: 420px"
v-show="!notMsg"></div>
</div> </div>
</template> </template>
<script> <script>
import * as echarts from 'echarts'; import * as echarts from 'echarts';
import resize from './../mixins/resize'; import resize from './../mixins/resize'
import NotMsg from './../components/NotMsg'; import NotMsg from './../components/NotMsg'
export default { export default {
name: 'NumRateChart', name: 'NumRateChart',
mixins: [resize], mixins: [resize],
@ -19,88 +15,65 @@ export default {
data() { data() {
return { return {
chart: null, chart: null,
notMsg: true, notMsg:true
}; }
}, },
computed: { computed: {
productline() { productline() {
return this.$store.state.websocket.productline; return this.$store.state.websocket.productline
}, }
}, },
watch:{ watch:{
productline: { productline: {
handler(newVal, oldVal) { handler(newVal, oldVal) {
if (newVal === oldVal) { if (newVal === oldVal) {
return false; return false
}
this.updateChart()
this.$emit('emitFun')
}
} }
this.updateChart();
this.$emit('emitFun');
},
},
}, },
mounted() { mounted() {
this.$el.addEventListener('resize', () => { this.$el.addEventListener('resize', () => {
console.log('resziing.....'); console.log('resziing.....');
}); });
this.updateChart(); this.updateChart()
}, },
methods: { methods: {
updateChart() { updateChart() {
if (this.productline && this.productline.length > 0) { if (this.productline && this.productline.length > 0) {
this.notMsg = false; this.notMsg = false
} else { } else {
this.notMsg = true; this.notMsg = true
return; return
} }
let xData = []; let xData = []
let outputNum = []; let outputNum = []
let passRate = []; let passRate = []
for (let i = 0; i < this.productline.length - 1; i++) { this.productline && this.productline.length > 0 && this.productline.map(item => {
// if ((item.lineName).includes('D')) {
for (let j = 0; j < this.productline.length - i - 1; j++) { xData.push(item.lineName)
// outputNum.push(item.outputNum)
if ( passRate.push(item.passRate?item.passRate*100:null)
this.productline[j].lineName.substr(
this.productline[j].lineName.length - 1,
1
) >
this.productline[j + 1].lineName.substr(
this.productline[j + 1].lineName.length - 1,
1
)
) {
//
let temp = this.productline[j];
this.productline[j] = this.productline[j + 1];
this.productline[j + 1] = temp;
} }
} })
}
this.productline &&
this.productline.length > 0 &&
this.productline.map((item) => {
if (item.lineName.includes('D')) {
xData.push(item.lineName);
outputNum.push(item.outputNum);
passRate.push(item.passRate);
}
});
if ( if (
this.chart !== null && this.chart !== null &&
this.chart !== '' && this.chart !== '' &&
this.chart !== undefined this.chart !== undefined
) { ) {
this.chart.dispose(); this.chart.dispose()
} }
this.chart = echarts.init(document.getElementById('numRateChart')); this.chart = echarts.init(document.getElementById('numRateChart'));
var option = { var option = {
grid: { top: 82, right: 60, bottom: 20, left: 90 }, grid: { top: 82, right: 60, bottom: 20, left: 90 },
tooltip: { tooltip: {
trigger: 'axis', trigger: "axis",
axisPointer: { axisPointer: {
type: 'shadow', type: "shadow",
}, },
className: 'num-rate-chart-tooltip', className: "num-rate-chart-tooltip"
}, },
legend: { legend: {
itemWidth:10, itemWidth:10,
@ -110,32 +83,32 @@ export default {
icon: 'rect', icon: 'rect',
data: [ data: [
{name:'产线产量',itemStyle:{color:'#364BFE'}}, {name:'产线产量',itemStyle:{color:'#364BFE'}},
{ name: '良品率', itemStyle: { color: '#FFCB59' } }, {name:'良品率',itemStyle:{color:'#FFCB59'}}
], ],
textStyle: { textStyle: {
color: '#DFF1FE', color: "#DFF1FE",
fontSize: 12, fontSize: 12,
}, }
}, },
xAxis: [ xAxis: [
{ {
type: 'category', type: 'category',
data: xData, data: xData,
axisLabel: { axisLabel: {
color: '#fff', color: "#fff",
fontSize: 12, fontSize: 12,
}, },
axisPointer: { axisPointer: {
type: 'shadow', type: 'shadow'
}, },
axisTick: { show: false }, axisTick: { show: false },
axisLine: { axisLine: {
lineStyle: { lineStyle: {
width: 1, width: 1,
color: '#213259', color: "#213259",
},
}, },
}, },
}
], ],
yAxis: [ yAxis: [
{ {
@ -147,20 +120,21 @@ export default {
align: 'right', align: 'right',
}, },
axisLabel: { axisLabel: {
color: '#fff', color: "#fff",
fontSize: 12, fontSize: 12,
formatter: '{value}'
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: '#213259', color: "#213259",
}, },
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: '#213259a0', color: "#213259a0",
},
}, },
}
}, },
{ {
type: 'value', type: 'value',
@ -171,22 +145,24 @@ export default {
align: 'LEFT', align: 'LEFT',
}, },
axisLabel: { axisLabel: {
color: '#fff', color: "#fff",
fontSize: 12, fontSize: 12,
formatter: '{value}%', formatter: () =>{
return value ? '{value} %': '-'
}
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: '#213259', color: "#213259",
}, },
}, },
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: '#213259a0', color: "#213259a0",
},
},
}, },
}
}
], ],
series: [ series: [
{ {
@ -195,16 +171,16 @@ export default {
tooltip: { tooltip: {
valueFormatter: function (value) { valueFormatter: function (value) {
return value; return value;
}, }
}, },
barWidth: 20, barWidth: 20,
itemStyle: { itemStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: '#5CB7FF' }, { offset: 0, color: '#5CB7FF' },
{ offset: 1, color: '#364BFE' }, { offset: 1, color: '#364BFE' }
]), ])
}, },
data: outputNum, data: outputNum
}, },
{ {
name: '良品率', name: '良品率',
@ -213,31 +189,31 @@ export default {
tooltip: { tooltip: {
valueFormatter: function (value) { valueFormatter: function (value) {
return value?value + '%':'-'; return value?value + '%':'-';
}, }
}, },
itemStyle: { itemStyle: {
color: '#FFD160', color: '#FFD160'
}, },
areaStyle: { areaStyle: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
{ offset: 0, color: '#FFCB59' + '40' }, { offset: 0, color: '#FFCB59' + "40" },
{ offset: 0.5, color: '#FFCB59' + '20' }, { offset: 0.5, color: '#FFCB59' + "20" },
{ offset: 1, color: '#FFCB59' + '00' }, { offset: 1, color: '#FFCB59' + "00" },
]), ]),
}, },
lineStyle: { lineStyle: {
width: 1, width: 1
}, },
symbol: 'circle', symbol: 'circle',
symbolSize: 5, symbolSize: 5,
data: passRate, data: passRate
}, }
], ]
};
option && this.chart.setOption(option);
},
},
}; };
option && this.chart.setOption(option)
}
}
}
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.num-rate-chart { .num-rate-chart {

View File

@ -1,17 +1,9 @@
<template> <template>
<div style="flex: 1"> <div style="flex: 1;">
<Container <Container name="各工序缺陷汇总" size="middle" style="">
name="各工序缺陷汇总" <TimePrompt class="timeShow" :timestr="timestr" />
size="middle" <div style="padding: 5px 10px;">
style=""> <dv-scroll-board :config="config" style="width:575px;height:380px" ref='defectScrollBoard'/>
<TimePrompt
class="timeShow"
:timestr="timestr" />
<div style="padding: 5px 10px">
<dv-scroll-board
:config="config"
style="width: 575px; height: 380px"
ref="defectScrollBoard" />
</div> </div>
</Container> </Container>
</div> </div>
@ -19,14 +11,14 @@
<script> <script>
import Container from '../components/Container.vue'; import Container from '../components/Container.vue';
import TimePrompt from '../components/TimePrompt'; import TimePrompt from '../components/TimePrompt';
import { switchShowTime } from '../utils'; import { switchShowTime } from '../utils'
export default { export default {
name: 'DefectSum', name: 'DefectSum',
components: { Container, TimePrompt }, components: { Container, TimePrompt },
computed: { computed: {
defectSum() { defectSum() {
return this.$store.state.websocket.defectSum; return this.$store.state.websocket.defectSum
}, }
}, },
data() { data() {
return { return {
@ -38,23 +30,14 @@ export default {
evenRowBGC: 'rgba(14, 32, 62, 0.8)', evenRowBGC: 'rgba(14, 32, 62, 0.8)',
columnWidth: [60], columnWidth: [60],
align: ['center'], align: ['center'],
data: [ data: [],
// // data: [[1, 'Y61', '','10','']],
[1, 'D61', '成型', '3片', '细长泡'], rowNum: 10
[2, 'D62', '组合落板', '4片', '细长泡'], }
[3, 'D61', '磨边', '6片', '开口泡'], }
[4, 'D63', '清洗', '5片', '结石'],
[5, 'D64', '打孔', '2片', '结石'],
[6, 'D63', '成型', '7片', '开口泡'],
[7, 'D61', '上片', '8片', '结石'],
],
// data: [],
rowNum: 10,
},
};
}, },
mounted() { mounted() {
this.timestr = switchShowTime('日'); this.timestr = switchShowTime('日')
}, },
watch:{ watch:{
defectSum: { defectSum: {
@ -64,15 +47,15 @@ export default {
item.productionLineName, item.productionLineName,
item.sectionName, item.sectionName,
item.count, item.count,
item.inspectionTypeName, item.inspectionTypeName
]); ]);
this.config.data = outArr; this.config.data = outArr
this.$refs['defectScrollBoard'].updateRows(outArr); this.$refs['defectScrollBoard'].updateRows(outArr)
this.timestr = switchShowTime('日'); this.timestr = switchShowTime('日')
}, }
}, }
}, }
}; }
</script> </script>
<style lang='scss' scoped> <style lang='scss' scoped>
.timeShow { .timeShow {

View File

@ -1,11 +1,8 @@
<template> <template>
<div id='deepProcessingContainerB' ref='deepProcessingContainerB' style="width: 100%;height: 100%;">
<div <div
id="deepProcessingContainerB" id='deepProcessingContainer'
ref="deepProcessingContainerB" ref='deepProcessingContainer'
style="width: 100%; height: 100%">
<div
id="deepProcessingContainer"
ref="deepProcessingContainer"
class="deepProcessingBoard" class="deepProcessingBoard"
style=" style="
position: absolute; position: absolute;
@ -20,13 +17,14 @@
gap: 24px; gap: 24px;
" "
:style="{transform:'scale('+scaleNum+')'}"> :style="{transform:'scale('+scaleNum+')'}">
<KHeader <KHeader :isFullScreen='isFullScreen' @screenfullChange='screenfullChange' topTitle='深加工生产运行驾驶舱'/>
:isFullScreen="isFullScreen"
@screenfullChange="screenfullChange"
topTitle="深加工生产运行驾驶舱" />
<div <div
class="main-body" class="main-body"
style="display: grid; gap: 16px; grid-template-rows: 462px 462px"> style="
display: grid;
gap: 16px;
grid-template-rows: 462px 462px;
">
<TopThree /> <TopThree />
<BottomTwo /> <BottomTwo />
</div> </div>
@ -49,16 +47,16 @@
import KHeader from '../components/Header'; import KHeader from '../components/Header';
import TopThree from './TopThree'; import TopThree from './TopThree';
import BottomTwo from './BottomTwo'; import BottomTwo from './BottomTwo';
import screenfull from 'screenfull'; import screenfull from 'screenfull'
import { debounce } from '@/utils/debounce'; import { debounce } from '@/utils/debounce'
import { getDcsMsg, getMesMsg } from './../utils/wsInterface'; import { getDcsMsg, getMesMsg } from './../utils/wsInterface'
export default { export default {
name: 'deepProcessingBoard', name: 'deepProcessingBoard',
components: { components: {
KHeader, KHeader,
TopThree, TopThree,
BottomTwo, BottomTwo
}, },
// provide() { // provide() {
// return { // return {
@ -68,52 +66,43 @@ export default {
data() { data() {
return { return {
isFullScreen: false, isFullScreen: false,
scaleNum: 0.8, scaleNum: 0.8
}; };
}, },
created() { created() {
this.init(); this.init()
}, },
destroy() { destroy() {
this.destroy(); this.destroy()
}, },
mounted() { mounted() {
this.boxReset = debounce(() => { this.boxReset = debounce(() => {
this.resetSize(); this.resetSize()
}, 300); }, 300)
this.boxReset(); this.boxReset()
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.boxReset(); this.boxReset()
}); })
// closeWebsocket() // closeWebsocket()
// getDcsMsg() // getDcsMsg()
// getMesMsg() // getMesMsg()
}, console.log('mounted...........')
mounted() {
this.boxReset();
window.addEventListener('resize', this.boxReset);
}, },
destroyed() { destroyed() {
window.removeEventListener('resize', this.boxReset); console.log('destroyed...........')
this.destroy();
}, },
methods: { methods: {
boxReset() {
debounce(() => {
this.resetSize();
}, 300)();
},
change() { change() {
this.isFullScreen = screenfull.isFullscreen; this.isFullScreen = screenfull.isFullscreen
}, },
init() { init() {
if (screenfull.isEnabled) { if (screenfull.isEnabled) {
screenfull.on('change', this.change); screenfull.on('change', this.change)
} }
}, },
destroy() { destroy() {
if (screenfull.isEnabled) { if (screenfull.isEnabled) {
screenfull.off('change', this.change); screenfull.off('change', this.change)
} }
}, },
// //
@ -121,37 +110,39 @@ export default {
if (!screenfull.isEnabled) { if (!screenfull.isEnabled) {
this.$message({ this.$message({
message: 'you browser can not work', message: 'you browser can not work',
type: 'warning', type: 'warning'
}); })
return false; return false
} }
screenfull.toggle(this.$refs.deepProcessingContainerB); screenfull.toggle(this.$refs.deepProcessingContainerB)
}, },
resetSize() { resetSize() {
let deepProcessingContainer = document.getElementById( let deepProcessingContainer = document.getElementById('deepProcessingContainer')
'deepProcessingContainer' let rw = parseFloat(window.innerWidth)
); let rh = parseFloat(window.innerHeight)
let rw = parseFloat(window.innerWidth); let bw = parseFloat(deepProcessingContainer.style.width)
let rh = parseFloat(window.innerHeight); let bh = parseFloat(deepProcessingContainer.style.height)
let bw = parseFloat(deepProcessingContainer.style.width); let wx = 0
let bh = parseFloat(deepProcessingContainer.style.height); let hx = 0
let wx = 0;
let hx = 0;
if (screenfull.isFullscreen) { if (screenfull.isFullscreen) {
wx = rw / bw; console.log('全屏')
hx = rh / bh; wx = rw / bw
hx = rh / bh
console.log(this.scaleNum)
}else{ }else{
console.log('非全屏')
console.log(this.$store.state.app.sidebar.opened)
if (this.$store.state.app.sidebar.opened) { if (this.$store.state.app.sidebar.opened) {
wx = (rw - 280) / bw; wx = (rw-280) / bw
hx = (rh - 116) / bh; hx = (rh-116) / bh
}else{ }else{
wx = (rw - 85) / bw; wx = (rw-85) / bw
hx = (rh - 116) / bh; hx = (rh-116) / bh
}
}
this.scaleNum = wx
} }
} }
this.scaleNum = wx;
},
},
}; };
</script> </script>

View File

@ -1,23 +1,24 @@
<!--
filename: MaterialCost.vue
author: liubin
date: 2023-12-06 09:09:27
description:
-->
<template> <template>
<Container <Container name="原料用量统计" size="middle" style="">
name="原料用量统计" <div style="flex: 1; display: flex; gap: 8px;flex-direction: column;">
size="middle"
style="">
<div style="flex: 1; display: flex; gap: 8px; flex-direction: column">
<div <div
class="absolute" class="absolute"
style=" style="
flex: 2; flex:3;
padding: 12px 12px 0 12px; padding: 12px 12px 0 12px;
display: grid; display: grid;
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(3, 1fr);
grid-auto-rows: repeat(4, 1fr); grid-auto-rows: repeat(4, 1fr);
gap: 8px; gap: 8px;
"> ">
<ShadowRect <ShadowRect v-for="(item, index) in materialMsg1" :key="index" :rounded="false">
v-for="(item, index) in materialMsg"
:key="index"
:rounded="false">
<div <div
class="material" class="material"
style=" style="
@ -29,15 +30,33 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
"> ">
<span <span style="color: #0ee8e4; font-weight: 500; font-size: 32px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">
{{item.materialUsed}}
</span>
<span style="color: #fff; font-size: 16px; letter-spacing: 1px">
- {{item.materialName}}/kg-
</span>
</div>
</ShadowRect>
</div>
<div style="flex:1;
padding: 0 12px 12px 12px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 8px;">
<ShadowRect v-for="(item, index) in materialMsg2" :key="index" :rounded="false">
<div
class="material"
style=" style="
color: #0ee8e4; flex: 1;
font-weight: 500; padding-bottom: 3px;
font-size: 32px; display: flex;
white-space: nowrap; flex-direction: column;
overflow: hidden; gap: 4px;
text-overflow: ellipsis; align-items: center;
justify-content: center;
"> ">
<span style="color: #0ee8e4; font-weight: 500; font-size: 32px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">
{{item.materialUsed}} {{item.materialUsed}}
</span> </span>
<span style="color: #fff; font-size: 16px; letter-spacing: 1px"> <span style="color: #fff; font-size: 16px; letter-spacing: 1px">
@ -47,6 +66,7 @@
</ShadowRect> </ShadowRect>
</div> </div>
</div> </div>
</Container> </Container>
</template> </template>
@ -61,9 +81,12 @@ export default {
return {}; return {};
}, },
computed: { computed: {
materialMsg() { materialMsg1() {
return this.$store.state.websocket.material; return this.$store.state.websocket.material.slice(0,9)
}, },
materialMsg2() {
return this.$store.state.websocket.material.slice(9)
}
}, },
methods: {}, methods: {},
}; };

View File

@ -1,11 +1,8 @@
<template> <template>
<div id='kilnContainerB' ref='kilnContainerB' style="width: 100%;height: 100%;">
<div <div
id="kilnContainerB" id='kilnContainer'
ref="kilnContainerB" ref='kilnContainer'
style="width: 100%; height: 100%">
<div
id="kilnContainer"
ref="kilnContainer"
class="KilnDataBoard" class="KilnDataBoard"
style=" style="
position: absolute; position: absolute;
@ -20,21 +17,14 @@
gap: 24px; gap: 24px;
" "
:style="{transform:'scale('+scaleNum+')'}"> :style="{transform:'scale('+scaleNum+')'}">
<KHeader <KHeader :isFullScreen='isFullScreen' @screenfullChange='screenfullChange' topTitle='窑炉生产运行驾驶舱'/>
:isFullScreen="isFullScreen"
@screenfullChange="screenfullChange"
topTitle="窑炉生产运行驾驶舱" />
<div <div
class="main-body" class="main-body"
style="flex: 1; display: flex; gap: 20px; padding: 0px 16px"> style="flex: 1; display: flex; gap: 20px; padding: 0px 16px">
<div <div class="left-side" style="flex: 2">
class="left-side"
style="flex: 2">
<LeftFour /> <LeftFour />
</div> </div>
<div <div class="right-side" style="flex: 1">
class="right-side"
style="flex: 1">
<RightTwo /> <RightTwo />
</div> </div>
</div> </div>
@ -46,8 +36,8 @@
import KHeader from '../components/Header'; import KHeader from '../components/Header';
import LeftFour from './LeftFour'; import LeftFour from './LeftFour';
import RightTwo from './RightTwo.vue'; import RightTwo from './RightTwo.vue';
import screenfull from 'screenfull'; import screenfull from 'screenfull'
import { debounce } from '@/utils/debounce'; import { debounce } from '@/utils/debounce'
export default { export default {
name: 'Kiln', name: 'Kiln',
@ -59,7 +49,7 @@ export default {
computed:{ computed:{
sidebarStatus() { sidebarStatus() {
return this.$store.state.app.sidebar.opened; return this.$store.state.app.sidebar.opened;
}, }
}, },
// provide() { // provide() {
// return { // return {
@ -69,44 +59,43 @@ export default {
data() { data() {
return { return {
isFullScreen: false, isFullScreen: false,
scaleNum: 0.8, scaleNum: 0.8
}; };
}, },
watch: { watch: {
sidebarStatus() { sidebarStatus() {
this.boxReset(); this.boxReset()
}, },
}, },
created() { created() {
this.init(); this.init()
},
destroy() {
this.destroy()
}, },
mounted() { mounted() {
this.boxReset(); this.boxReset = debounce(() => {
window.addEventListener('resize', this.boxReset); this.resetSize()
}, }, 300)
destroyed() { this.boxReset()
window.removeEventListener('resize', this.boxReset); window.addEventListener('resize', () => {
this.destroy(); this.boxReset()
})
}, },
methods: { methods: {
boxReset() {
debounce(() => {
this.resetSize();
}, 300)();
},
change() { change() {
this.isFullScreen = screenfull.isFullscreen; this.isFullScreen = screenfull.isFullscreen
}, },
init() { init() {
if (screenfull.isEnabled) { if (screenfull.isEnabled) {
screenfull.on('change', this.change); screenfull.on('change', this.change)
} }
}, },
destroy() { destroy() {
if (screenfull.isEnabled) { if (screenfull.isEnabled) {
screenfull.off('change', this.change); screenfull.off('change', this.change)
} }
}, },
// //
@ -114,35 +103,40 @@ export default {
if (!screenfull.isEnabled) { if (!screenfull.isEnabled) {
this.$message({ this.$message({
message: 'you browser can not work', message: 'you browser can not work',
type: 'warning', type: 'warning'
}); })
return false; return false
} }
screenfull.toggle(this.$refs.kilnContainerB); screenfull.toggle(this.$refs.kilnContainerB)
}, },
resetSize() { resetSize() {
let kilnContainerBox = document.getElementById('kilnContainer'); let kilnContainerBox = document.getElementById('kilnContainer')
let rw = parseFloat(window.innerWidth); console.log(kilnContainerBox)
let rh = parseFloat(window.innerHeight); let rw = parseFloat(window.innerWidth)
let bw = parseFloat(kilnContainerBox.style.width); let rh = parseFloat(window.innerHeight)
let bh = parseFloat(kilnContainerBox.style.height); let bw = parseFloat(kilnContainerBox.style.width)
let wx = 0; let bh = parseFloat(kilnContainerBox.style.height)
let hx = 0; let wx = 0
let hx = 0
if (screenfull.isFullscreen) { if (screenfull.isFullscreen) {
wx = rw / bw; console.log('全屏')
hx = rh / bh; wx = rw / bw
hx = rh / bh
console.log(this.scaleNum)
}else{ }else{
console.log('非全屏')
console.log(this.$store.state.app.sidebar.opened)
if (this.$store.state.app.sidebar.opened) { if (this.$store.state.app.sidebar.opened) {
wx = (rw - 280) / bw; wx = (rw-280) / bw
hx = (rh - 116) / bh; hx = (rh-116) / bh
}else{ }else{
wx = (rw - 85) / bw; wx = (rw-85) / bw
hx = (rh - 116) / bh; hx = (rh-116) / bh
}
}
this.scaleNum = wx
} }
} }
this.scaleNum = wx;
},
},
}; };
</script> </script>

View File

@ -1,11 +1,8 @@
<template> <template>
<div id='wholePlantContainerB' ref='wholePlantContainerB' style="width: 100%;height: 100%;">
<div <div
id="wholePlantContainerB" id='wholePlantContainer'
ref="wholePlantContainerB" ref='wholePlantContainer'
style="width: 100%; height: 100%">
<div
id="wholePlantContainer"
ref="wholePlantContainer"
class="wholePlantBoard" class="wholePlantBoard"
style=" style="
position: absolute; position: absolute;
@ -20,26 +17,17 @@
gap: 24px; gap: 24px;
" "
:style="{transform:'scale('+scaleNum+')'}"> :style="{transform:'scale('+scaleNum+')'}">
<KHeader <KHeader :isFullScreen='isFullScreen' @screenfullChange='screenfullChange' topTitle='全厂总览驾驶舱'/>
:isFullScreen="isFullScreen"
@screenfullChange="screenfullChange"
topTitle="全厂总览驾驶舱" />
<div <div
class="main-body" class="main-body"
style="flex: 1; display: flex; gap: 20px; padding: 0px 16px"> style="flex: 1; display: flex; gap: 20px; padding: 0px 16px">
<div <div class="left-side" style="flex: 1">
class="left-side"
style="flex: 1">
<LeftTwo /> <LeftTwo />
</div> </div>
<div <div class="middle-side" style="flex: 1">
class="middle-side"
style="flex: 1">
<MiddleTwo /> <MiddleTwo />
</div> </div>
<div <div class="right-side" style="flex: 1">
class="right-side"
style="flex: 1">
<RightTwo /> <RightTwo />
</div> </div>
</div> </div>
@ -52,8 +40,8 @@ import KHeader from '../components/Header';
import LeftTwo from './LeftTwo'; import LeftTwo from './LeftTwo';
import MiddleTwo from './MiddleTwo'; import MiddleTwo from './MiddleTwo';
import RightTwo from './RightTwo'; import RightTwo from './RightTwo';
import screenfull from 'screenfull'; import screenfull from 'screenfull'
import { debounce } from '@/utils/debounce'; import { debounce } from '@/utils/debounce'
export default { export default {
name: 'wholePlantBoard', name: 'wholePlantBoard',
@ -61,7 +49,7 @@ export default {
KHeader, KHeader,
LeftTwo, LeftTwo,
MiddleTwo, MiddleTwo,
RightTwo, RightTwo
}, },
// provide() { // provide() {
// return { // return {
@ -71,39 +59,40 @@ export default {
data() { data() {
return { return {
isFullScreen: false, isFullScreen: false,
scaleNum: 0.8, scaleNum: 0.8
}; };
}, },
created() { created() {
this.init(); this.init()
}, },
destroy() { destroy() {
this.destroy(); this.destroy()
}, },
mounted() { mounted() {
this.boxReset(); this.boxReset = debounce(() => {
window.addEventListener('resize', this.boxReset); this.resetSize()
}, 300)
this.boxReset()
window.addEventListener('resize', () => {
this.boxReset()
})
console.log('mounted...........')
}, },
destroyed() { destroyed() {
window.removeEventListener('resize', this.boxReset); console.log('destroyed...........')
}, },
methods: { methods: {
boxReset() {
debounce(() => {
this.resetSize();
}, 300)();
},
change() { change() {
this.isFullScreen = screenfull.isFullscreen; this.isFullScreen = screenfull.isFullscreen
}, },
init() { init() {
if (screenfull.isEnabled) { if (screenfull.isEnabled) {
screenfull.on('change', this.change); screenfull.on('change', this.change)
} }
}, },
destroy() { destroy() {
if (screenfull.isEnabled) { if (screenfull.isEnabled) {
screenfull.off('change', this.change); screenfull.off('change', this.change)
} }
}, },
// //
@ -111,37 +100,39 @@ export default {
if (!screenfull.isEnabled) { if (!screenfull.isEnabled) {
this.$message({ this.$message({
message: 'you browser can not work', message: 'you browser can not work',
type: 'warning', type: 'warning'
}); })
return false; return false
} }
screenfull.toggle(this.$refs.wholePlantContainerB); screenfull.toggle(this.$refs.wholePlantContainerB)
}, },
resetSize() { resetSize() {
let wholePlantContainerBox = document.getElementById( let wholePlantContainerBox = document.getElementById('wholePlantContainer')
'wholePlantContainer' let rw = parseFloat(window.innerWidth)
); let rh = parseFloat(window.innerHeight)
let rw = parseFloat(window.innerWidth); let bw = parseFloat(wholePlantContainerBox.style.width)
let rh = parseFloat(window.innerHeight); let bh = parseFloat(wholePlantContainerBox.style.height)
let bw = parseFloat(wholePlantContainerBox.style.width); let wx = 0
let bh = parseFloat(wholePlantContainerBox.style.height); let hx = 0
let wx = 0;
let hx = 0;
if (screenfull.isFullscreen) { if (screenfull.isFullscreen) {
wx = rw / bw; console.log('全屏')
hx = rh / bh; wx = rw / bw
hx = rh / bh
console.log(this.scaleNum)
}else{ }else{
console.log('非全屏')
console.log(this.$store.state.app.sidebar.opened)
if (this.$store.state.app.sidebar.opened) { if (this.$store.state.app.sidebar.opened) {
wx = (rw - 280) / bw; wx = (rw-280) / bw
hx = (rh - 116) / bh; hx = (rh-116) / bh
}else{ }else{
wx = (rw - 85) / bw; wx = (rw-85) / bw
hx = (rh - 116) / bh; hx = (rh-116) / bh
}
}
this.scaleNum = wx
} }
} }
this.scaleNum = wx;
},
},
}; };
</script> </script>

View File

@ -4,27 +4,31 @@
<search-bar <search-bar
:formConfigs="formConfig" :formConfigs="formConfig"
ref="searchBarForm" ref="searchBarForm"
@headBtnClick="buttonClick" /> @headBtnClick="buttonClick"
/>
<!-- 列表 --> <!-- 列表 -->
<base-table <base-table
:page="queryParams.pageNo" :page="queryParams.pageNo"
:limit="queryParams.pageSize" :limit="queryParams.pageSize"
:table-props="tableProps" :table-props="tableProps"
:table-data="list" :table-data="list"
:max-height="tableH"> :max-height="tableH"
>
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:width="160" :width="160"
label="操作" label="操作"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick"
/>
</base-table> </base-table>
<pagination <pagination
:page.sync="queryParams.pageNo" :page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.pageSize"
:total="total" :total="total"
@pagination="getList" /> @pagination="getList"
/>
<!-- 新增 --> <!-- 新增 -->
<base-dialog <base-dialog
:dialogTitle="addOrEditTitle" :dialogTitle="addOrEditTitle"
@ -32,10 +36,9 @@
@cancel="handleCancel" @cancel="handleCancel"
@confirm="handleConfirm" @confirm="handleConfirm"
:before-close="handleCancel" :before-close="handleCancel"
width="50%"> width="50%"
<add-or-update >
ref="addOrUpdate" <add-or-update ref="addOrUpdate" @successSubmit="successSubmit" />
@successSubmit="successSubmit" />
</base-dialog> </base-dialog>
<!-- 装车 --> <!-- 装车 -->
<base-dialog <base-dialog
@ -44,78 +47,73 @@
@cancel="handleCancel2" @cancel="handleCancel2"
@confirm="handleConfirm2" @confirm="handleConfirm2"
:before-close="handleCancel2" :before-close="handleCancel2"
width="50%"> width="50%"
<loaded-page >
ref="loadedPage" <loaded-page ref="loadedPage" @successSubmit="successSubmit2" />
@successSubmit="successSubmit2" />
</base-dialog> </base-dialog>
<!-- 发货详情 --> <!-- 发货详情 -->
<delivery-log-detail <delivery-log-detail ref='deliveryLogDetail' v-if='showDetail' />
ref="deliveryLogDetail"
v-if="showDetail" />
</div> </div>
</template> </template>
<script> <script>
import { parseTime } from '@/utils/ruoyi'; import { parseTime } from '@/utils/ruoyi'
import { deliveryLogPage, deliveryLogDelete } from '@/api/base/delivery'; import { deliveryLogPage, deliveryLogDelete } from '@/api/base/delivery'
import AddOrUpdate from './components/addOrUpdate'; import AddOrUpdate from './components/addOrUpdate'
import LoadedPage from './components/loadedPage'; import LoadedPage from './components/loadedPage'
import DeliveryLogDetail from './components/deliveryLogDetail.vue'; import DeliveryLogDetail from './components/deliveryLogDetail.vue'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'orderName', prop: 'orderName',
label: '订单名', label: '订单名',
minWidth: 100, minWidth: 100,
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'name', prop: 'name',
label: '发货单名称', label: '发货单名称',
minWidth: 100, minWidth: 100,
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'deliveryTime', prop: 'deliveryTime',
label: '发货时间', label: '发货时间',
filter: parseTime, filter: parseTime,
minWidth: 160, minWidth: 160
}, },
{ {
prop: 'code', prop: 'code',
label: '发货单号', label: '发货单号',
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'deliverPerName', prop: 'deliverPerName',
label: '发货负责人', label: '发货负责人',
minWidth: 100, minWidth: 100
}, },
{ {
prop: 'principal', prop: 'principal',
label: '运输负责人', label: '运输负责人',
minWidth: 100, minWidth: 100
}, },
{ {
prop: 'principalCall', prop: 'principalCall',
label: '运输联系方式', label: '运输联系方式',
minWidth: 110, minWidth: 110,
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'principalCost', prop: 'principalCost',
label: '运输费用', label: '运输费用',
align: 'right', align: 'right'
}, },
{ {
prop: 'remark', prop: 'remark',
label: '备注', label: '备注',
showOverflowtooltip: true, showOverflowtooltip: true
}, }
]; ]
export default { export default {
name: 'DeliveryLog', name: "DeliveryLog",
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
@ -123,38 +121,34 @@ export default {
type: 'input', type: 'input',
label: '订单名', label: '订单名',
param: 'orderName', param: 'orderName',
defaultSelect: '', defaultSelect: ''
}, },
{ {
type: 'input', type: 'input',
label: '发货单名称', label: '发货单名称',
param: 'name', param: 'name'
}, },
{ {
type: 'input', type: 'input',
label: '发货单号', label: '发货单号',
param: 'code', param: 'code'
}, },
{ {
type: 'button', type: 'button',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary'
}, },
{ {
type: this.$auth.hasPermi('extend:delivery-log:create') type: this.$auth.hasPermi('extend:delivery-log:create') ? 'separate' : '',
? 'separate'
: '',
}, },
{ {
type: this.$auth.hasPermi('extend:delivery-log:create') type: this.$auth.hasPermi('extend:delivery-log:create') ? 'button' : '',
? 'button'
: '',
btnName: '新增', btnName: '新增',
name: 'add', name: 'add',
color: 'success', color: 'success',
plain: true, plain: true
}, }
], ],
// //
queryParams: { queryParams: {
@ -162,163 +156,158 @@ export default {
pageSize: 20, pageSize: 20,
orderName: '', orderName: '',
code: '', code: '',
name: '', name: ''
}, },
tableProps, tableProps,
list: [], list: [],
tableH: this.tableHeight(260),
total: 0, total: 0,
tableBtn: [ tableBtn: [
this.$auth.hasPermi('extend:delivery-log:loaded') this.$auth.hasPermi('extend:delivery-log:loaded')
? { ? {
type: 'loaded', type: 'loaded',
btnName: '装车', btnName: '装车'
} }
: undefined, : undefined,
this.$auth.hasPermi('extend:delivery-log:detail') this.$auth.hasPermi('extend:delivery-log:detail')
? { ? {
type: 'detail', type: 'detail',
btnName: '详情', btnName: '详情'
} }
: undefined, : undefined,
this.$auth.hasPermi('extend:delivery-log:update') this.$auth.hasPermi('extend:delivery-log:update')
? { ? {
type: 'edit', type: 'edit',
btnName: '编辑', btnName: '编辑'
} }
: undefined, : undefined,
this.$auth.hasPermi('extend:delivery-log:delete') this.$auth.hasPermi('extend:delivery-log:delete')
? { ? {
type: 'delete', type: 'delete',
btnName: '删除', btnName: '删除'
} }
: undefined, : undefined
].filter((v) => v), ].filter((v) => v),
addOrEditTitle: '', addOrEditTitle: '',
centervisible: false, centervisible: false,
centervisible2: false, centervisible2: false,
showDetail: false, showDetail: false
}; }
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
if (location.href.indexOf('?') > 0) { if (location.href.indexOf('?') > 0) {
let arr = location.href.split('?')[1]; let arr = location.href.split('?')[1]
this.formConfig[0].defaultSelect = decodeURI(arr.split('=')[1]); this.formConfig[0].defaultSelect = decodeURI(arr.split('=')[1])
} else { } else {
this.formConfig[0].defaultSelect = ''; this.formConfig[0].defaultSelect = ''
} }
this.queryParams.orderName = this.formConfig[0].defaultSelect; this.queryParams.orderName = this.formConfig[0].defaultSelect
this.getList(); this.getList();
}, },
components: { AddOrUpdate, LoadedPage, DeliveryLogDetail }, components: { AddOrUpdate, LoadedPage, DeliveryLogDetail },
watch: { watch: {
$route: 'initData', $route: 'initData'
}, },
methods: { methods: {
initData(to) { initData(to) {
if (to.name === 'DeliveryLog') { if (to.name === 'DeliveryLog') {
if (location.href.indexOf('?') > 0) { if (location.href.indexOf('?') > 0) {
let arr = location.href.split('?')[1]; let arr = location.href.split('?')[1]
this.formConfig[0].defaultSelect = decodeURI(arr.split('=')[1]); this.formConfig[0].defaultSelect = decodeURI(arr.split('=')[1])
} else { } else {
this.formConfig[0].defaultSelect = ''; this.formConfig[0].defaultSelect = ''
} }
this.queryParams.orderName = this.formConfig[0].defaultSelect; this.queryParams.orderName = this.formConfig[0].defaultSelect
this.getList(); this.getList()
} }
}, },
getList() { getList() {
deliveryLogPage({ ...this.queryParams }).then((res) => { deliveryLogPage({...this.queryParams}).then(res => {
let arr = res.data.list || []; let arr = res.data.list || []
arr && arr && arr.map(item => {
arr.map((item) => { item.principalCost = item.principalCost.toFixed(2)
item.principalCost = item.principalCost.toFixed(2); })
}); this.list = arr
this.list = arr; this.total = res.data.total || 0
this.total = res.data.total || 0; })
});
}, },
buttonClick(val) { buttonClick(val) {
if (val.btnName === 'search') { if (val.btnName === 'search') {
this.queryParams.name = val.name; this.queryParams.name = val.name
this.queryParams.orderName = val.orderName; this.queryParams.orderName = val.orderName
this.queryParams.code = val.code; this.queryParams.code = val.code
this.getList(); this.getList()
} else { } else {
this.addOrEditTitle = '新增'; this.addOrEditTitle = '新增'
this.centervisible = true; this.centervisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.addOrUpdate.init(); this.$refs.addOrUpdate.init()
}); })
} }
}, },
handleClick(val) { handleClick(val) {
console.log(val); console.log(val)
switch (val.type) { switch (val.type) {
case 'edit': case 'edit':
this.addOrEditTitle = '编辑'; this.addOrEditTitle = '编辑'
this.centervisible = true; this.centervisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.addOrUpdate.init(val.data.id); this.$refs.addOrUpdate.init(val.data.id)
}); })
break; break
case 'delete': case 'delete':
this.handleDelete(val.data); this.handleDelete(val.data)
break; break
case 'loaded': case 'loaded':
this.centervisible2 = true; this.centervisible2 = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.loadedPage.init( this.$refs.loadedPage.init(val.data.id, val.data.code, val.data.orderId)
val.data.id, })
val.data.code, break
val.data.orderId
);
});
break;
default: default:
this.showDetail = true; this.showDetail = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.deliveryLogDetail.init(val.data); this.$refs.deliveryLogDetail.init(val.data)
}); })
} }
}, },
// //
handleCancel() { handleCancel() {
this.$refs.addOrUpdate.formClear(); this.$refs.addOrUpdate.formClear()
this.centervisible = false; this.centervisible = false
this.addOrEditTitle = ''; this.addOrEditTitle = ''
}, },
handleConfirm() { handleConfirm() {
this.$refs.addOrUpdate.submitForm(); this.$refs.addOrUpdate.submitForm()
}, },
successSubmit() { successSubmit() {
this.handleCancel(); this.handleCancel()
this.getList(); this.getList()
}, },
// //
handleDelete(val) { handleDelete(val) {
this.$modal this.$modal.confirm('是否确认删除发货单名为"' + val.name + '"的数据项?').then(function() {
.confirm('是否确认删除发货单名为"' + val.name + '"的数据项?') return deliveryLogDelete({ id: val.id })
.then(function () { }).then(() => {
return deliveryLogDelete({ id: val.id });
})
.then(() => {
this.getList(); this.getList();
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
}) }).catch(() => {});
.catch(() => {});
}, },
// //
handleCancel2() { handleCancel2() {
this.$refs.loadedPage.formClear(); this.$refs.loadedPage.formClear()
this.centervisible2 = false; this.centervisible2 = false
}, },
handleConfirm2() { handleConfirm2() {
this.$refs.loadedPage.submitForm(); this.$refs.loadedPage.submitForm()
}, },
successSubmit2() { successSubmit2() {
this.handleCancel2(); this.handleCancel2()
this.getList(); this.getList()
}, }
}, }
}; }
</script> </script>

View File

@ -4,121 +4,127 @@
<search-bar <search-bar
:formConfigs="formConfig" :formConfigs="formConfig"
ref="searchBarForm" ref="searchBarForm"
@headBtnClick="buttonClick" /> @headBtnClick="buttonClick"
/>
<!-- 列表 --> <!-- 列表 -->
<base-table <base-table
:page="queryParams.pageNo" :page="queryParams.pageNo"
:limit="queryParams.pageSize" :limit="queryParams.pageSize"
:table-props="tableProps" :table-props="tableProps"
:table-data="list" :table-data="list"
:max-height="tableH"> :max-height="tableH"
>
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:width="80" :width="80"
label="操作" label="操作"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick"
/>
</base-table> </base-table>
<pagination <pagination
:page.sync="queryParams.pageNo" :page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.pageSize"
:total="total" :total="total"
@pagination="getList" /> @pagination="getList"
/>
<!-- 详情抽屉 --> <!-- 详情抽屉 -->
<delivery-log-det-detail ref="deliveryLogDetail" /> <delivery-log-det-detail ref='deliveryLogDetail'/>
</div> </div>
</template> </template>
<script> <script>
import { deliveryProgressPage } from '@/api/base/delivery'; import { deliveryProgressPage } from '@/api/base/delivery'
import DeliveryLogDetDetail from './components/deliveryLogDetDetail.vue'; import DeliveryLogDetDetail from './components/deliveryLogDetDetail.vue'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'orderName', prop: 'orderName',
label: '订单名', label: '订单名',
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'customerName', prop: 'customerName',
label: '客户名称', label: '客户名称',
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'unit', prop: 'unit',
label: '单位', label: '单位'
}, },
{ {
prop: 'orderNum', prop: 'orderNum',
label: '订单数量', label: '订单数量'
}, },
{ {
prop: 'num', prop: 'num',
label: '发货数量', label: '发货数量'
}, },
{ {
prop: 'rate', prop: 'rate',
label: '累计发货比例(%)', label: '累计发货比例(%)'
}, }
]; ]
export default { export default {
name: 'DeliveryLogDet', name: "DeliveryLogDet",
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
{ {
type: 'input', type: 'input',
label: '订单名', label: '订单名',
param: 'orderName', param: 'orderName'
}, },
{ {
type: 'button', type: 'button',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary'
}, }
], ],
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 20,
orderName: '', orderName: ''
}, },
tableProps, tableProps,
list: [], list: [],
tableH: this.tableHeight(260),
total: 0, total: 0,
tableBtn: [ tableBtn: [
this.$auth.hasPermi('extend:delivery-log-det:detail') this.$auth.hasPermi('extend:delivery-log-det:detail')
? { ? {
type: 'detail', type: 'detail',
btnName: '详情', btnName: '详情'
}
: undefined
].filter((v) => v)
} }
: undefined,
].filter((v) => v),
};
}, },
components: { DeliveryLogDetDetail }, components: { DeliveryLogDetDetail },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
this.getList(); this.getList();
}, },
methods: { methods: {
getList() { getList() {
deliveryProgressPage({ ...this.queryParams }).then((res) => { deliveryProgressPage({...this.queryParams}).then(res => {
this.list = res.data.list || []; this.list = res.data.list || []
this.total = res.data.total || 0; this.total = res.data.total || 0
}); })
}, },
buttonClick(val) { buttonClick(val) {
this.queryParams.orderName = val.orderName; this.queryParams.orderName = val.orderName
this.getList(); this.getList()
}, },
handleClick(val) { handleClick(val) {
console.log(val); console.log(val)
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.deliveryLogDetail.init(val.data); this.$refs.deliveryLogDetail.init(val.data)
}); })
}, }
}, }
}; }
</script> </script>

View File

@ -2,43 +2,44 @@
<div <div
id="analysischartBar" id="analysischartBar"
style="width: 100%" style="width: 100%"
:style="{ height: chartHeight + 'px' }"></div> :style="{ height: chartHeight + 'px' }"
></div>
</template> </template>
<script> <script>
import * as echarts from 'echarts'; import * as echarts from 'echarts'
import resize from '@/utils/chartMixins/resize'; import resize from '@/utils/chartMixins/resize'
export default { export default {
name: 'BarChart', name: "BarChart",
mixins: [resize], mixins: [resize],
data() { data() {
return { return {
chartDom: '', chartDom: '',
chart: '', chart: '',
chartHeight: this.tableHeight(250) / 2, chartHeight: this.tableHeight(214) - 70
}; }
}, },
props: { props: {
chartData: { chartData: {
type: Array, type: Array,
required: true, required: true,
default: () => { default: () => {
return []; return []
}, }
}, },
timeDim: { timeDim: {
type: String, type: String,
default: '', default: ''
}, }
}, },
watch: { watch: {
chartData: function () { chartData: function () {
this.getChart(); this.getChart()
}, }
}, },
mounted() { mounted() {
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.chartHeight = this.tableHeight(250) / 2; this.chartHeight = this.tableHeight(214) - 70
}); })
}, },
methods: { methods: {
getChart() { getChart() {
@ -47,99 +48,101 @@ export default {
this.chart !== '' && this.chart !== '' &&
this.chart !== undefined this.chart !== undefined
) { ) {
this.chart.dispose(); // Dom this.chart.dispose() // Dom
} }
this.chartDom = document.getElementById('analysischartBar'); this.chartDom = document.getElementById('analysischartBar')
this.chart = echarts.init(this.chartDom); this.chart = echarts.init(this.chartDom)
let tempArr = []; let tempArr = []
let xData = []; let xData = []
let yData = []; let yData = []
let legendData = []; let legendData = []
if (this.chartData.length === 0) { if (this.chartData.length === 0) {
return false; return false
} else { } else {
tempArr = this.chartData[0].trendRespVOList; tempArr = this.chartData[0].trendRespVOList
} }
for (let k = 0; k < tempArr.length; k++) { for (let k = 0; k < tempArr.length; k++) {
let time = ''; let time = ''
if (this.timeDim === '3') { if (this.timeDim === '3') {
let year = tempArr[k].time.slice(0, 4); let year = tempArr[k].time.slice(0,4)
let weak = tempArr[k].time.slice(4, 6); let weak = tempArr[k].time.slice(4,6)
time = year + ' 第 ' + weak + ' 周'; time = year+' 第 '+weak+' 周'
} else { } else {
time = tempArr[k].time; time = tempArr[k].time
} }
xData.push(time); xData.push(time)
} }
for (let i = 0; i < this.chartData.length; i++) { for (let i = 0; i < this.chartData.length; i++) {
let obj = { let obj = {
name: this.chartData[i].objName + this.chartData[i].objCode, name: this.chartData[i].objName + this.chartData[i].objCode,
type: 'bar', type: 'bar',
barMaxWidth: 20, barMaxWidth: 20,
data: [], label: {
}; show: true,
legendData.push(this.chartData[i].objName + this.chartData[i].objCode); position: 'top'
let temp = this.chartData[i].trendRespVOList; },
for (let j = 0; j < temp.length; j++) { data: []
let num = temp[j].useNum ? temp[j].useNum.toFixed(2) : '';
obj.data.push(num);
} }
yData.push(obj); legendData.push(this.chartData[i].objName + this.chartData[i].objCode)
let temp = this.chartData[i].trendRespVOList
for (let j = 0; j < temp.length; j++) {
let num = temp[j].useNum ? temp[j].useNum : ''
obj.data.push(num)
}
yData.push(obj)
} }
var option = { var option = {
color:['#FFDC94','#8EF0AB','#63BDFF','#288AFF','#7164FF'], color:['#FFDC94','#8EF0AB','#63BDFF','#288AFF','#7164FF'],
tooltip: { tooltip: {
trigger: 'axis', trigger: 'axis',
axisPointer: { axisPointer: {
type: 'shadow', type: 'shadow'
}, },
formatter: function(params) { formatter: function(params) {
return ( return (
params[0].axisValue + params[0].axisValue +
`<br>` + `<br>` +
params params.map((item) => {
.map((item) => { let str = `<span style="display:inline-block;width:8px;height:8px;margin: 0 8px 0 -3px;border-radius:2px;background-color:${item.color};"></span>`
let str = `<span style="display:inline-block;width:8px;height:8px;margin: 0 8px 0 -3px;border-radius:2px;background-color:${item.color};"></span>`; let seriesNameStr = `<span style="display:inline-block;">${item.seriesName}</span>`
let seriesNameStr = `<span style="display:inline-block;">${item.seriesName}</span>`; let value = item.value ? item.value : '-'
let value = item.value ? item.value : '-'; let valueStr = `<span style="display:inline-block;margin-left:10px;color:rgba(0,0,0,0.45);">${value}</span>`
let valueStr = `<span style="display:inline-block;margin-left:10px;color:rgba(0,0,0,0.45);">${value}</span>`;
return `<span style="display:flex; justify-content:space-between; margin-bottom: 2px"> return `<span style="display:flex; justify-content:space-between; margin-bottom: 2px">
<span>${str}${seriesNameStr}</span> <span>${str}${seriesNameStr}</span>
<span>${valueStr}</span> <span>${valueStr}</span>
</span>`; </span>`
}) }).join(``)
.join(``) )
); }
},
}, },
grid: { grid: {
left: '4%', left: '4%',
right: '1%', right: '1%',
bottom: '1%', bottom: '1%',
containLabel: true, containLabel: true
}, },
legend: { legend: {
data: legendData, data: legendData,
right: '1%', right: '1%',
icon: 'rect', icon: 'rect',
itemHeight: 8, itemHeight: 8,
itemWidth: 8, itemWidth: 8
}, },
xAxis: { xAxis: {
type: 'category', type: 'category',
data: xData, data: xData,
axisLabel: { axisLabel: {
rotate: '45', rotate: "45"
}, }
}, },
yAxis: { yAxis: {
type: 'value', type: 'value'
}, },
series: yData, series: yData
}; };
option && this.chart.setOption(option); option && this.chart.setOption(option);
}, }
}, }
}; }
</script> </script>

View File

@ -0,0 +1,126 @@
<template>
<div
id="analysischartLine"
style="width: 100%"
:style="{ height: chartHeight + 'px' }"
></div>
</template>
<script>
import * as echarts from 'echarts'
import resize from '@/utils/chartMixins/resize'
export default {
name: "LineChart",
mixins: [resize],
data() {
return {
chartDom: '',
chart: '',
chartHeight: this.tableHeight(214) - 70
}
},
props: {
chartData: {
type: Array,
required: true,
default: () => {
return []
}
},
timeDim: {
type: String,
default: ''
}
},
watch: {
chartData: function () {
this.getChart()
}
},
mounted() {
window.addEventListener('resize', () => {
this.chartHeight = this.tableHeight(214) - 70
})
},
methods: {
getChart() {
if (
this.chart !== null &&
this.chart !== '' &&
this.chart !== undefined
) {
this.chart.dispose() // Dom
}
this.chartDom = document.getElementById('analysischartLine')
this.chart = echarts.init(this.chartDom)
let tempArr = []
let xData = []
let yData = []
let legendData = []
if (this.chartData.length === 0) {
return false
} else {
tempArr = this.chartData[0].trendRespVOList
}
for (let k = 0; k < tempArr.length; k++) {
let time = ''
if (this.timeDim === '3') {
let year = tempArr[k].time.slice(0,4)
let weak = tempArr[k].time.slice(4,6)
time = year+' 第 '+weak+' 周'
} else {
time = tempArr[k].time
}
xData.push(time)
}
for (let i = 0; i < this.chartData.length; i++) {
let obj = {
name: this.chartData[i].objName + this.chartData[i].objCode,
type: 'line',
stack: 'Total',
data: []
}
legendData.push(this.chartData[i].objName + this.chartData[i].objCode)
let temp = this.chartData[i].trendRespVOList
for (let j = 0; j < temp.length; j++) {
let num = temp[j].useNum ? temp[j].useNum : ''
obj.data.push(num)
}
yData.push(obj)
}
var option = {
color:['#FFDC94','#8EF0AB','#63BDFF','#288AFF','#7164FF'],
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'cross'
}
},
grid: {
left: '4%',
right: '1%',
bottom: '1%',
containLabel: true
},
legend: {
data: legendData,
right: '1%'
},
xAxis: {
type: 'category',
data: xData,
axisLabel: {
rotate: "45"
}
},
yAxis: {
type: 'value'
},
series: yData
};
option && this.chart.setOption(option);
}
}
}
</script>

View File

@ -1,46 +1,28 @@
<template> <template>
<div <div class="searchBarBox divHeight" ref="searchBarRef" :style="{ paddingRight: isFold ? '55px' : '0px' }">
class="searchBarBox divHeight" <el-form :inline="true" class="demo-form-inline">
ref="searchBarRef">
<el-form
:inline="true"
class="demo-form-inline">
<span class="blue-block"></span> <span class="blue-block"></span>
<el-form-item <el-form-item label="能源类型" required>
label="能源类型" <el-select v-model="queryParams.energyTypeId" placeholder="请选择" style="width: 100px;" size="small">
required>
<el-select
v-model="queryParams.energyTypeId"
placeholder="请选择"
style="width: 150px"
@change="chooseType"
filterable
size="small">
<el-option <el-option
v-for="item in energyTypeList" v-for="item in energyTypeList"
:key="item.id" :key="item.id"
:label="item.labelName" :label="item.name"
:value="item.id"></el-option> :value="item.id">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="时间维度" required>
label="时间维度" <el-select v-model="queryParams.timeDim" placeholder="请选择" style="width: 80px;" size="small">
required>
<el-select
v-model="queryParams.timeDim"
placeholder="请选择"
style="width: 80px"
size="small">
<el-option <el-option
v-for="item in getDictDatas(this.DICT_TYPE.TIME_DIM)" v-for="item in getDictDatas(this.DICT_TYPE.TIME_DIM)"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value"></el-option> :value="item.value">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="时间范围" required>
label="时间范围"
required>
<div v-show="queryParams.timeDim === '1'"> <div v-show="queryParams.timeDim === '1'">
<el-date-picker <el-date-picker
v-model="timeValue" v-model="timeValue"
@ -54,8 +36,10 @@
popper-class="noneMinute" popper-class="noneMinute"
@change="timeSelect" @change="timeSelect"
size="small" size="small"
style="width: 350px" style='width:350px;'
:clearable="false"></el-date-picker> :clearable="false"
>
</el-date-picker>
</div> </div>
<div v-show="queryParams.timeDim === '2'"> <div v-show="queryParams.timeDim === '2'">
<el-date-picker <el-date-picker
@ -68,31 +52,34 @@
:picker-options="pickerOptions" :picker-options="pickerOptions"
:clearable="false" :clearable="false"
size="small" size="small"
style="width: 350px" style='width:350px;'
@change="timeSelect"></el-date-picker> @change="timeSelect"
>
</el-date-picker>
</div> </div>
<div v-show="queryParams.timeDim === '3'"> <div v-show="queryParams.timeDim === '3'">
<el-date-picker <el-date-picker
v-model="weekValue1" v-model="weekValue1"
type="week" type="week"
format="yyyy 第 WW 周" format="yyyy 第 WW 周"
style="width: 170px" style='width:170px;'
:picker-options="pickerOptionsWeek" :picker-options="pickerOptionsWeek"
@change="startWeek" @change="startWeek"
:clearable="false" :clearable="false"
size="small" size="small"
placeholder="选择周"></el-date-picker> placeholder="选择周">
- </el-date-picker>-
<el-date-picker <el-date-picker
v-model="weekValue2" v-model="weekValue2"
type="week" type="week"
format="yyyy 第 WW 周" format="yyyy 第 WW 周"
:picker-options="pickerOptionsWeek" :picker-options="pickerOptionsWeek"
style="width: 170px" style='width:170px;'
@change="endWeek" @change="endWeek"
:clearable="false" :clearable="false"
size="small" size="small"
placeholder="选择周"></el-date-picker> placeholder="选择周">
</el-date-picker>
</div> </div>
<div v-show="queryParams.timeDim === '4'"> <div v-show="queryParams.timeDim === '4'">
<el-date-picker <el-date-picker
@ -105,12 +92,14 @@
:clearable="false" :clearable="false"
:picker-options="pickerOptions" :picker-options="pickerOptions"
size="small" size="small"
style="width: 350px" style='width:350px;'
@change="timeSelect"></el-date-picker> @change="timeSelect"
>
</el-date-picker>
</div> </div>
<div v-show="queryParams.timeDim === '5'"> <div v-show="queryParams.timeDim === '5'">
<el-date-picker <el-date-picker
style="width: 170px" style='width:170px;'
v-model="yearValue1" v-model="yearValue1"
type="year" type="year"
:picker-options="pickerOptions" :picker-options="pickerOptions"
@ -118,10 +107,11 @@
placeholder="选择年" placeholder="选择年"
@change="startYear" @change="startYear"
size="small" size="small"
:clearable="false"></el-date-picker> :clearable="false"
- >
</el-date-picker>-
<el-date-picker <el-date-picker
style="width: 170px" style='width:170px;'
v-model="yearValue2" v-model="yearValue2"
type="year" type="year"
:picker-options="pickerOptions" :picker-options="pickerOptions"
@ -129,88 +119,62 @@
placeholder="选择年" placeholder="选择年"
@change="endYear" @change="endYear"
size="small" size="small"
:clearable="false"></el-date-picker> :clearable="false"
>
</el-date-picker>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="对象维度" required>
v-if="energyType !== 0" <el-select v-model="queryParams.objType" placeholder="请选择" style="width: 80px;" @change="selectObjs" size="small">
label="对象维度"
required>
<el-select
v-model="queryParams.objType"
placeholder="请选择"
style="width: 80px"
@change="selectObjs"
:disabled="energyType === 2"
size="small">
<el-option <el-option
v-for="item in getDictDatas(this.DICT_TYPE.OBJECT_TYPE)" v-for="item in getDictDatas(this.DICT_TYPE.OBJECT_TYPE)"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value"></el-option> :value="item.value">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="对象选择" required>
label="对象选择" <el-select v-model="queryParams.objIds" placeholder="请选择" multiple :multiple-limit='5' collapse-tags style="width: 200px;" size="small">
required>
<el-select
v-model="queryParams.objIds"
placeholder="请选择"
multiple
:multiple-limit="5"
collapse-tags
filterable
style="width: 200px"
size="small">
<el-option <el-option
v-for="item in objectList" v-for="item in objectList"
:key="item.id" :key="item.id"
:label="item.name" :label="item.name"
:value="item.id"> :value="item.id">
<span style="float: left">{{ item.name }}</span> <span style="float: left">{{ item.name }}</span>
<span style="float: right; color: #8492a6; font-size: 13px"> <span style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
{{ item.code }}
</span>
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button type="primary" size="small" @click="search">查询</el-button>
type="primary" <span class="separateStyle"></span>
size="small" <el-button size="small" @click="resetBtn">重置</el-button>
@click="search">
查询
</el-button>
<el-button
size="small"
@click="resetBtn">
重置
</el-button>
<span
class="separateStyle"
v-hasPermi="['analysis:contrast-analysis:export']"></span>
<el-button
v-hasPermi="['analysis:contrast-analysis:export']"
type="primary"
size="small"
plain
@click="exportBtn">
导出
</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
<span v-if="isFold" class="foldClass" @click='switchMode'>
{{ isExpand ? '收起' : '展开' }}
<svg-icon :icon-class="isExpand ? 'upward' : 'downward'" />
</span>
</div> </div>
</template> </template>
<script> <script>
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getEnergyTypeListAll } from "@/api/base/energyType"
import { getLineAll } from '@/api/base/productionLine'; import { getLineAll } from "@/api/base/productionLine"
import { getWorkShopAll } from '@/api/base/workshopSection'; import { getWorkShopAll } from "@/api/base/workshopSection"
import { getFactoryList } from '@/api/core/base/factory'; import { getEquipmentAll } from "@/api/base/equipment"
import moment from 'moment'; import moment from 'moment'
export default { export default {
name: 'searchArea', name: 'searchArea',
props: {
isFold: {//
type: Boolean,
default: false
}
},
data() { data() {
return { return {
isExpand: false, //
// //
queryParams: { queryParams: {
energyTypeId: null, energyTypeId: null,
@ -218,9 +182,8 @@ export default {
objType: '', objType: '',
timeDim: null, timeDim: null,
startTime: null, startTime: null,
endTime: null, endTime: null
}, },
energyType: 0, //12
timeValue: [],// 7 timeValue: [],// 7
dateValue: [],// 30 dateValue: [],// 30
weekValue1: null,//24 weekValue1: null,//24
@ -232,285 +195,262 @@ export default {
objectList: [], objectList: [],
pickerOptions: { pickerOptions: {
disabledDate(date) { disabledDate(date) {
return date.getTime() > Date.now(); return date.getTime() > Date.now()
}, }
}, },
pickerOptionsWeek: { pickerOptionsWeek: {
disabledDate(time) { disabledDate(time) {
let day = Date.now(); let day = Date.now()
let limitTime = moment(day).day(-1); let limitTime = moment(day).day(-1)
return time.getTime() > new Date(limitTime).getTime(); return time.getTime() > new Date(limitTime).getTime()
}, }
}, }
}; }
}, },
mounted() { mounted() {
this.getTypeList(); this.getTypeList()
this.queryParams.timeDim = this.getDictDatas( this.queryParams.timeDim = this.getDictDatas(this.DICT_TYPE.TIME_DIM)[0].value //
this.DICT_TYPE.TIME_DIM
)[0].value; //
}, },
methods: { methods: {
getTypeList() { getTypeList() {
getEnergyTypeListAll().then((res) => { getEnergyTypeListAll().then((res) => {
this.energyTypeList = res.data || []; this.energyTypeList = res.data || []
}); })
},
//
chooseType(id) {
let val;
this.energyTypeList.map((item) => {
if (item.id === id) {
val = item.name;
}
});
if (val == 1 || val == 2) {
this.energyType = 1;
this.queryParams.objType = null;
} else {
this.energyType = 2;
this.queryParams.objType = this.getDictDatas(
this.DICT_TYPE.OBJECT_TYPE
)[0].value;
}
this.selectObjs(this.queryParams.objType);
}, },
// //
timeSelect() { timeSelect() {
switch (this.queryParams.timeDim) { switch (this.queryParams.timeDim) {
case '1': case '1':
if (!this.timeValue) { if (!this.timeValue) {
this.$modal.msgError('时间范围不能为空'); this.$modal.msgError('时间范围不能为空')
return false; return false
} }
if (this.timeValue[1] - this.timeValue[0] > 7*24*3600000) { if (this.timeValue[1] - this.timeValue[0] > 7*24*3600000) {
this.$modal.msgError('最大时间范围为7天请重新选择'); this.$modal.msgError('最大时间范围为7天请重新选择')
this.timeValue = []; this.timeValue = []
} }
break; break
case '2': case '2':
if (!this.dateValue) { if (!this.dateValue) {
this.$modal.msgError('时间范围不能为空'); this.$modal.msgError('时间范围不能为空')
return false; return false
} }
if (this.dateValue[1] - this.dateValue[0] > 29*24*3600000) { if (this.dateValue[1] - this.dateValue[0] > 29*24*3600000) {
this.$modal.msgError('最大时间范围为30天请重新选择'); // 0:00:0023:59:59 this.$modal.msgError('最大时间范围为30天请重新选择') // 0:00:0023:59:59
this.dateValue = []; this.dateValue = []
} }
break; break
case '4': case '4':
if (!this.monthValue) { if (!this.monthValue) {
this.$modal.msgError('时间范围不能为空'); this.$modal.msgError('时间范围不能为空')
return false; return false
} }
if (this.monthValue[1] - this.monthValue[0] > 729*24*3600000) { if (this.monthValue[1] - this.monthValue[0] > 729*24*3600000) {
this.$modal.msgError('最大时间范围为24个月请重新选择'); // this.$modal.msgError('最大时间范围为24个月请重新选择')//
this.monthValue = []; this.monthValue = []
} }
break; break
default: default:
} }
}, },
// //
startYear() { startYear() {
if (this.yearValue2 && this.yearValue2 < this.yearValue1) { if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择'); this.$modal.msgError('开始时间不能晚于结束时间,请重新选择')
this.yearValue1 = null; this.yearValue1 = null
return false; return false
} }
if (this.yearValue1 && this.yearValue2) { if (this.yearValue1 && this.yearValue2) {
if (this.yearValue2 - this.yearValue1 > 10*365*24*3600000) { if (this.yearValue2 - this.yearValue1 > 10*365*24*3600000) {
this.$modal.msgError('最大时间范围为10年请重新选择'); this.$modal.msgError('最大时间范围为10年请重新选择')
this.yearValue1 = null; this.yearValue1 = null
return false; return false
} }
} }
}, },
endYear() { endYear() {
if (this.yearValue2 && this.yearValue2 < this.yearValue1) { if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
this.$modal.msgError('结束时间不能早于开始时间,请重新选择'); this.$modal.msgError('结束时间不能早于开始时间,请重新选择')
this.yearValue2 = null; this.yearValue2 = null
return false; return false
} }
if (this.yearValue1 && this.yearValue2) { if (this.yearValue1 && this.yearValue2) {
if (this.yearValue2 - this.yearValue1 > 10*365*24*3600000) { if (this.yearValue2 - this.yearValue1 > 10*365*24*3600000) {
this.$modal.msgError('最大时间范围为10年请重新选择'); this.$modal.msgError('最大时间范围为10年请重新选择')
this.yearValue2 = null; this.yearValue2 = null
return false; return false
} }
} }
}, },
// //
startWeek() { startWeek() {
if (this.weekValue1 && this.weekValue2) { if (this.weekValue1 && this.weekValue2) {
let a = new Date(this.weekValue1).getTime(); let a = new Date(this.weekValue1).getTime()
let b = new Date(this.weekValue2).getTime(); let b = new Date(this.weekValue2).getTime()
if (a > b) { if (a > b) {
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择'); this.$modal.msgError('开始时间不能晚于结束时间,请重新选择')
this.weekValue1 = null; this.weekValue1 = null
return false; return false
} }
if (b - a > 167*24*3600000) { if (b - a > 167*24*3600000) {
this.$modal.msgError('最大时间范围为24周请重新选择'); this.$modal.msgError('最大时间范围为24周请重新选择')
this.weekValue1 = null; this.weekValue1 = null
return false; return false
} }
} }
}, },
endWeek() { endWeek() {
if (this.weekValue1 && this.weekValue2) { if (this.weekValue1 && this.weekValue2) {
let a = new Date(this.weekValue1).getTime(); let a = new Date(this.weekValue1).getTime()
let b = new Date(this.weekValue2).getTime(); let b = new Date(this.weekValue2).getTime()
if (a > b) { if (a > b) {
this.$modal.msgError('结束时间不能早于开始时间,请重新选择'); this.$modal.msgError('结束时间不能早于开始时间,请重新选择')
this.weekValue2 = null; this.weekValue2 = null
return false; return false
} }
if (b - a > 167*24*3600000) { if (b - a > 167*24*3600000) {
this.$modal.msgError('最大时间范围为24周请重新选择'); this.$modal.msgError('最大时间范围为24周请重新选择')
this.weekValue2 = null; this.weekValue2 = null
return false; return false
} }
} }
}, },
// //
selectObjs(val) { selectObjs(val) {
console.log(val); console.log(val)
switch (val) { switch (val) {
case '1': case '1':
getFactoryList().then((res) => { getLineAll().then(res => {
this.objectList = res.data || []; this.objectList = res.data || []
this.queryParams.objIds = []; this.queryParams.objIds = []
}); })
break; break;
case '2': case '2':
getLineAll().then((res) => { getWorkShopAll().then(res => {
this.objectList = res.data || []; this.objectList = res.data || []
this.queryParams.objIds = []; this.queryParams.objIds = []
}); })
break; break;
default: default:
getWorkShopAll().then((res) => { getEquipmentAll().then(res => {
this.objectList = res.data || []; this.objectList = res.data || []
this.queryParams.objIds = []; this.queryParams.objIds = []
}); })
} }
}, },
// //
search() { search() {
if (!this.queryParams.energyTypeId) { if (!this.queryParams.energyTypeId) {
this.$modal.msgError('请选择能源类型'); this.$modal.msgError('请选择能源类型')
return false; return false
} }
if (!this.queryParams.timeDim) { if (!this.queryParams.timeDim) {
this.$modal.msgError('请选择时间维度'); this.$modal.msgError('请选择时间维度')
return false; return false
} }
switch (this.queryParams.timeDim) { switch (this.queryParams.timeDim) {
case '1': case '1':
if (this.timeValue && this.timeValue.length > 0) { if (this.timeValue && this.timeValue.length > 0) {
this.queryParams.startTime = this.timeValue[0]; this.queryParams.startTime = this.timeValue[0]
this.queryParams.endTime = this.timeValue[1]; // this.queryParams.endTime = this.timeValue[1] //
} else { } else {
this.$modal.msgError('时间范围不能为空'); this.$modal.msgError('时间范围不能为空')
return false; return false
} }
break; break
case '2': case '2':
if (this.dateValue.length > 0) { if (this.dateValue.length > 0) {
this.queryParams.startTime = this.dateValue[0]; this.queryParams.startTime = this.dateValue[0]
this.queryParams.endTime = this.dateValue[1] + 86399000; // 23:59:59 this.queryParams.endTime = this.dateValue[1] + 86399000 // 23:59:59
} else { } else {
this.$modal.msgError('日范围不能为空'); this.$modal.msgError('日范围不能为空')
return false; return false
} }
break; break
case '3': case '3':
if (this.weekValue1 && this.weekValue2) { if (this.weekValue1 && this.weekValue2) {
let a = let a = moment(this.weekValue1).day(0).format('YYYY-MM-DD') + ' 00:00:00'
moment(this.weekValue1).day(0).format('YYYY-MM-DD') + ' 00:00:00'; let b = moment(this.weekValue2).day(6).format('YYYY-MM-DD') + ' 23:59:59'
let b = this.queryParams.startTime = new Date(a).getTime()
moment(this.weekValue2).day(6).format('YYYY-MM-DD') + ' 23:59:59'; this.queryParams.endTime = new Date(b).getTime()
this.queryParams.startTime = new Date(a).getTime();
this.queryParams.endTime = new Date(b).getTime();
} else { } else {
this.$modal.msgError('周范围不能为空'); this.$modal.msgError('周范围不能为空')
return false; return false
} }
break; break
case '4':// case '4'://
if (this.monthValue.length > 0) { if (this.monthValue.length > 0) {
this.queryParams.startTime = this.monthValue[0]; this.queryParams.startTime = this.monthValue[0]
this.queryParams.endTime = this.transformTime(this.monthValue[1]); this.queryParams.endTime = this.transformTime(this.monthValue[1])
} else { } else {
this.$modal.msgError('月范围不能为空'); this.$modal.msgError('月范围不能为空')
return false; return false
} }
break; break
default:// default://
if (this.yearValue1 && this.yearValue2) { if (this.yearValue1 && this.yearValue2) {
if (this.yearValue2 < this.yearValue1) { if (this.yearValue2 < this.yearValue1) {
this.$modal.msgError('结束时间不能早于开始时间'); this.$modal.msgError('结束时间不能早于开始时间')
return false; return false
} else { } else {
this.queryParams.startTime = this.yearValue1; this.queryParams.startTime = this.yearValue1
this.queryParams.endTime = this.transformYear(this.yearValue2); this.queryParams.endTime = this.transformYear(this.yearValue2)
} }
} else { } else {
this.$modal.msgError('年范围不能为空'); this.$modal.msgError('年范围不能为空')
return false; return false
} }
} }
if (!this.queryParams.objType) { if (!this.queryParams.objType) {
this.$modal.msgError('请选择对象维度'); this.$modal.msgError('请选择对象维度')
return false; return false
} }
if (this.queryParams.objIds.length === 0) { if (this.queryParams.objIds.length === 0) {
this.$modal.msgError('请选择对象'); this.$modal.msgError('请选择对象')
return false; return false
} }
this.queryParams.startTime = this.queryParams.startTime + ''; this.queryParams.startTime = this.queryParams.startTime + ''
this.queryParams.endTime = this.queryParams.endTime + ''; this.queryParams.endTime = this.queryParams.endTime + ''
console.log(this.queryParams); console.log(this.queryParams)
this.$emit('submit', this.queryParams); this.$emit('submit', this.queryParams)
}, },
resetBtn() { resetBtn() {
this.queryParams.energyTypeId = null; this.queryParams.energyTypeId = null
this.queryParams.timeDim = this.getDictDatas( this.queryParams.timeDim = this.getDictDatas(this.DICT_TYPE.TIME_DIM)[0].value //
this.DICT_TYPE.TIME_DIM this.queryParams.objIds = []
)[0].value; // this.queryParams.objType = ''
this.queryParams.objIds = []; this.timeValue = []
this.queryParams.objType = ''; this.dateValue = []
this.timeValue = []; this.weekValue1 = null
this.dateValue = []; this.weekValue2 = null
this.weekValue1 = null; this.monthValue = []
this.weekValue2 = null; this.yearValue1 = null
this.monthValue = []; this.yearValue2 = null
this.yearValue1 = null;
this.yearValue2 = null;
}, },
// transformTime(timeStamp) {//
exportBtn() { let year = moment(timeStamp).format('YYYY')
this.$emit('export'); let month = moment(timeStamp).format('MM')
let newData = moment(new Date(year,month,0)).format('YYYY-MM-DD') + ' 23:59:59'
let value = new Date(newData).getTime()
return value
}, },
transformTime(timeStamp) { transformYear(timeStamp) {//
// let year = moment(timeStamp).format('YYYY')
let year = moment(timeStamp).format('YYYY'); let newData = year+'-12-31 23:59:59'
let month = moment(timeStamp).format('MM'); let value = new Date(newData).getTime()
let newData = return value
moment(new Date(year, month, 0)).format('YYYY-MM-DD') + ' 23:59:59';
let value = new Date(newData).getTime();
return value;
}, },
transformYear(timeStamp) { switchMode() {//
// this.isExpand = !this.isExpand
let year = moment(timeStamp).format('YYYY'); const element = this.$refs.searchBarRef
let newData = year + '-12-31 23:59:59'; if (this.isExpand) {
let value = new Date(newData).getTime(); element.classList.remove('divHeight')
return value; } else {
}, element.classList.add('divHeight')
}, }
}; }
}
}
</script> </script>
<style lang='scss'> <style lang='scss'>
/* 时间整点 */ /* 时间整点 */
@ -523,11 +463,11 @@ export default {
.demo-form-inline { .demo-form-inline {
.el-date-editor .el-range__icon { .el-date-editor .el-range__icon {
font-size: 16px; font-size: 16px;
color: #0b58ff; color: #0B58FF;
} }
.el-input__prefix .el-icon-date { .el-input__prefix .el-icon-date {
font-size: 16px; font-size: 16px;
color: #0b58ff; color: #0B58FF;
} }
} }
</style> </style>
@ -537,21 +477,32 @@ export default {
display: inline-block; display: inline-block;
width: 4px; width: 4px;
height: 16px; height: 16px;
background-color: #0b58ff; background-color: #0B58FF;
border-radius: 1px; border-radius: 1px;
margin-right: 8px; margin-right: 8px;
margin-top: 12px; margin-top: 12px;
} }
.el-form-item {
margin-right: 10px;
margin-bottom: 4px;
} }
.searchBarBox .foldClass {
position: absolute;
top: 14px;
right: 0;
cursor: pointer;
font-size: 12px;
color:#0B58FF;
}
.searchBarBox .foldClass .iconfont {
font-size: 14px;
}
.divHeight {
height: 45px;
overflow: hidden;
} }
.separateStyle { .separateStyle {
display: inline-block; display: inline-block;
width: 1px; width: 1px;
height: 24px; height: 24px;
background: #e8e8e8; background: #E8E8E8;
vertical-align: middle; vertical-align: middle;
margin: 0 10px; margin: 0 10px;
} }

View File

@ -1,120 +1,96 @@
<template> <template>
<div <div class="app-container contrastAnalysisBox" id="contrastAnalysisBox">
class="app-container contrastAnalysisBox"
id="contrastAnalysisBox">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-area <search-area :isFold="isFold" @submit="getList"/>
@submit="getList" <el-tabs v-model="activeName" @tab-click="switchChart" v-show='chartData.length'>
@export="exportExl" /> <el-tab-pane label="柱状图" name="bar">
<div v-show="chartData.length"> <bar-chart ref="analysisBarChart" :chartData="chartData" :timeDim="timeDim" />
<bar-chart </el-tab-pane>
ref="analysisBarChart" <el-tab-pane label="折线图" name="line">
:chartData="chartData" <line-chart ref="analysisLineChart" :chartData="chartData" :timeDim="timeDim"/>
:timeDim="timeDim" /> </el-tab-pane>
<base-table </el-tabs>
:table-props="tableProps"
:table-data="list"
:max-height="tableH"
class="contrast-out-table" />
</div>
<!-- 没有数据 --> <!-- 没有数据 -->
<div <div class="no-data-bg" v-show='!chartData.length'></div>
class="no-data-bg"
v-show="!chartData.length"></div>
</div> </div>
</template> </template>
<script> <script>
import { getCompare } from '@/api/analysis/energyAnalysis'; import { getCompare } from "@/api/analysis/energyAnalysis"
import SearchArea from './components/searchArea'; import SearchArea from "./components/searchArea"
import BarChart from './components/barChart'; import BarChart from "./components/barChart"
import tableHeightMixin from '@/mixins/lb/tableHeightMixin'; import LineChart from "./components/lineChart"
import FileSaver from 'file-saver';
import * as XLSX from 'xlsx/xlsx.mjs';
// import moment from 'moment' // import moment from 'moment'
export default { export default {
name: 'ContrastAnalysis', name: 'ContrastAnalysis',
components: { SearchArea, BarChart }, components: { SearchArea, BarChart, LineChart },
mixins: [tableHeightMixin],
data() { data() {
return { return {
isFold: false,
activeName: 'bar',
chartData: [], chartData: [],
timeDim: '', timeDim: ''
tableProps: [], }
list: [], },
tableH: this.tableHeight(250) / 2, mounted() {
}; window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
this.isFold = this.searchBarWidth('contrastAnalysisBox', 1437)
// console.log(document.getElementById("contrastAnalysisBox").offsetWidth)
})
this.isFold = this.searchBarWidth('contrastAnalysisBox', 1437)
}, },
methods: { methods: {
_setTableHeight() {
this.tableH = this.tableHeight(250) / 2;
},
getList(params) { getList(params) {
this.timeDim = params.timeDim; this.timeDim = params.timeDim
getCompare({ ...params }).then((res) => { getCompare({ ...params }).then((res) => {
console.log(res)
if (res.code === 0) { if (res.code === 0) {
this.getTableList(res.data || []); this.chartData = res.data || []
this.chartData = res.data || [];
} else { } else {
this.chartData = []; this.chartData = []
} }
}); })
}, },
getTableList(arr) { switchChart() {
this.tableProps = []; if (this.activeName === 'bar') {
this.list = []; this.$nextTick((res) => {
let tempX = []; this.$refs.analysisBarChart.getChart()
let timeArr = arr[0].trendRespVOList || []; })
this.list = timeArr.map((item) => {
return { time: item.time };
});
for (let i = 0; i < arr.length; i++) {
let obj = {};
obj.prop = arr[i].objId;
obj.label = arr[i].objName;
obj.minWidth = 100;
tempX.push(obj);
let tiemList = arr[i].trendRespVOList;
for (let j = 0; j < tiemList.length; j++) {
this.list[j][arr[i].objId] = tiemList[j].useNum
? tiemList[j].useNum.toFixed(2)
: null;
}
}
this.tableProps = [{ prop: 'time', label: '时间' }].concat(tempX);
},
//
exportExl() {
if (this.list.length > 0) {
var wb = XLSX.utils.table_to_book(
document.querySelector('.contrast-out-table')
);
let fileName = '对比分析.xlsx';
var wbout = XLSX.write(wb, {
bookType: 'xlsx',
bookSST: true,
type: 'array',
});
try {
FileSaver.saveAs(
new Blob([wbout], { type: 'application/octet-stream' }),
fileName
);
this.$message.success('导出成功');
} catch (e) {
if (typeof console !== 'undefined') console.log(e, wbout);
}
return wbout;
} else { } else {
this.$modal.msgWarning('暂无数据导出'); this.$nextTick((res) => {
this.$refs.analysisLineChart.getChart()
})
}
}
}
} }
},
},
};
</script> </script>
<style lang='scss'> <style lang='scss'>
.contrastAnalysisBox { .contrastAnalysisBox {
.contrast-out-table { .el-tabs__nav::after {
margin-top: 20px; content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background-color: #e4e7ed;
/* z-index: 1; */
}
.el-tabs__nav-wrap::after {
width: 0;
}
.el-tabs__item {
padding: 0 10px;
}
.el-tabs__item:hover {
color: rgba(0, 0, 0, 0.85);
}
.el-tabs__item.is-active {
color: rgba(0, 0, 0, 0.85);
}
.el-tabs__item {
color: rgba(0, 0, 0, 0.45);
} }
} }
</style> </style>

View File

@ -1,44 +1,28 @@
<template> <template>
<el-form <el-form :inline="true" class="demo-form-inline">
:inline="true"
class="demo-form-inline">
<span class="blue-block"></span> <span class="blue-block"></span>
<el-form-item <el-form-item label="对象选择" required>
label="对象选择" <el-cascader
required> v-model="objArr"
<el-select :options="objList"
v-model="queryParams.objId" :props="{ checkStrictly: true, value: 'id', label: 'name' }"
placeholder="请选择" popper-class="cascaderParent"
style="width: 250px" size="small"
filterable style="width: 250px;"
size="small"> clearable></el-cascader>
<el-option
v-for="item in objList"
:key="item.id"
:label="item.name"
:value="item.id"
:clearable="false"></el-option>
</el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="时间维度" required>
label="时间维度" <el-select v-model="queryParams.type" placeholder="请选择" style="width: 80px;" size="small">
required>
<el-select
v-model="queryParams.type"
placeholder="请选择"
style="width: 80px"
size="small">
<el-option <el-option
v-for="item in timeType" v-for="item in timeType"
:key="item.id" :key="item.id"
:label="item.name" :label="item.name"
:value="item.id" :value="item.id"
:clearable="false"></el-option> :clearable="false">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="时间" required>
label="时间"
required>
<div v-show="queryParams.type === 1"> <div v-show="queryParams.type === 1">
<el-date-picker <el-date-picker
v-model="monthValue" v-model="monthValue"
@ -47,7 +31,8 @@
@change="selectTime" @change="selectTime"
:clearable="false" :clearable="false"
size="small" size="small"
placeholder="选择月"></el-date-picker> placeholder="选择月">
</el-date-picker>
</div> </div>
<div v-show="queryParams.type === 2"> <div v-show="queryParams.type === 2">
<el-date-picker <el-date-picker
@ -58,7 +43,8 @@
@change="selectTime" @change="selectTime"
:clearable="false" :clearable="false"
size="small" size="small"
placeholder="选择周"></el-date-picker> placeholder="选择周">
</el-date-picker>
</div> </div>
<div v-show="queryParams.type === 3"> <div v-show="queryParams.type === 3">
<el-date-picker <el-date-picker
@ -68,37 +54,24 @@
@change="selectTime" @change="selectTime"
:clearable="false" :clearable="false"
size="small" size="small"
placeholder="选择日"></el-date-picker> placeholder="选择日">
</el-date-picker>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button type="primary" size="small" @click="search">查询</el-button>
type="primary"
size="small"
@click="search">
查询
</el-button>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<span <span class="separateStyle"></span>
class="separateStyle"
v-hasPermi="['analysis:qoq-analysis:export']"></span>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button type="primary" size="small" @click="exportData" plain>导出</el-button>
v-hasPermi="['analysis:qoq-analysis:export']"
type="primary"
size="small"
@click="exportData"
plain>
导出
</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</template> </template>
<script> <script>
import { getTree } from '@/api/analysis/energyAnalysis'; import { getTree } from '@/api/base/factory'
import moment from 'moment'; import moment from 'moment'
export default { export default {
name: 'searchArea', name: 'searchArea',
data() { data() {
@ -107,126 +80,133 @@ export default {
queryParams: { queryParams: {
type: 1, type: 1,
searchTime: null, searchTime: null,
objId: null, objId: null
objType: 1,
}, },
timeType: [ timeType: [
{id: 1, name: '月'}, {id: 1, name: '月'},
{id: 2, name: '周'}, {id: 2, name: '周'},
{ id: 3, name: '日' }, {id: 3, name: '日'}
], ],
monthValue: '', monthValue: '',
weekValue: '', weekValue: '',
dateValue: '', dateValue: '',
objArr: [],
objList: [], objList: [],
pickerOptions: { pickerOptions: {
disabledDate(date) { disabledDate(date) {
return date.getTime() > Date.now(); return date.getTime() > Date.now()
}, }
}, },
pickerOptionsWeek: { pickerOptionsWeek: {
disabledDate(time) { disabledDate(time) {
let day = Date.now(); let day = Date.now()
let limitTime = moment(day).day(-1); let limitTime = moment(day).day(-1)
return time.getTime() > new Date(limitTime).getTime(); return time.getTime() > new Date(limitTime).getTime()
}, }
}, }
}; }
}, },
mounted() { mounted() {
this.getObjTree(); this.getObjTree()
}, },
methods: { methods: {
getObjTree() { getObjTree() {
getTree().then((res) => { getTree().then(res => {
this.objList = res.data || []; this.objList = res.data || []
if (this.objList.length > 0) { })
this.queryParams.objId = this.objList[0].id;
}
});
}, },
selectTime() { selectTime() {
switch (this.queryParams.type) { switch (this.queryParams.type) {
case 1: case 1:
this.queryParams.searchTime = this.monthValue; this.queryParams.searchTime = this.monthValue
break; break;
case 2: case 2:
this.queryParams.searchTime = this.weekValue; this.queryParams.searchTime = this.weekValue
break; break;
default: default:
this.queryParams.searchTime = this.dateValue; this.queryParams.searchTime = this.dateValue
} }
}, },
// //
search() { search() {
if (!this.queryParams.objId) { if (this.objArr.length === 0) {
this.$modal.msgError('请选择对象'); this.$modal.msgError('请选择对象')
return false; return false
} else {
this.queryParams.objId = this.objArr[this.objArr.length-1]
} }
if (!this.queryParams.type) { if (!this.queryParams.type) {
this.$modal.msgError('请选择时间维度'); this.$modal.msgError('请选择时间维度')
return false; return false
} }
if (!this.queryParams.searchTime) { if (!this.queryParams.searchTime) {
this.$modal.msgError('请选择时间'); this.$modal.msgError('请选择时间')
return false; return false
} }
switch (this.queryParams.type) { switch (this.queryParams.type) {
case 1: case 1:
this.queryParams.searchTime = this.transformTime(this.monthValue); this.queryParams.searchTime = this.transformTime(this.monthValue)
break; break;
case 2: case 2:
let value = let value = moment(this.weekValue).day(6).format('YYYY-MM-DD') + ' 23:59:59'
moment(this.weekValue).day(6).format('YYYY-MM-DD') + ' 23:59:59'; this.queryParams.searchTime = new Date(value).getTime()
this.queryParams.searchTime = new Date(value).getTime();
break; break;
default: default:
let value2 = let value2 = moment(this.dateValue).format('YYYY-MM-DD') + ' 23:59:59'
moment(this.dateValue).format('YYYY-MM-DD') + ' 23:59:59'; this.queryParams.searchTime = new Date(value2).getTime()
this.queryParams.searchTime = new Date(value2).getTime();
} }
this.$emit('submit', this.queryParams); this.$emit('submit', this.queryParams)
}, },
exportData() { exportData() {
let name; let name
if (this.queryParams.objId) { if (this.queryParams.objId) {
name = this.getObjName(this.objList, this.queryParams.objId); name = this.getObjName(this.objList, this.queryParams.objId)
} else { } else {
this.$modal.msgWarning('对象不能为空'); this.$modal.msgWarning("对象不能为空")
return false; return false
} }
this.$emit('exportD', { name: name }); this.$emit('exportD', {name: name})
}, },
// name // name
getObjName(list, id) { getObjName(list, id) {
let _this = this
for (let i = 0; i < list.length; i++) { for (let i = 0; i < list.length; i++) {
let a = list[i]; let a = list[i]
if (a.id === id) { if (a.id === id) {
return a.name; return a.name
} else {
if (a.children && a.children.length > 0) {
let res = _this.getObjName(a.children, id)
if (res) {
return res
}
}
} }
} }
}, },
transformTime(timeStamp) { transformTime(timeStamp) {//
// let year = moment(timeStamp).format('YYYY')
let year = moment(timeStamp).format('YYYY'); let month = moment(timeStamp).format('MM')
let month = moment(timeStamp).format('MM'); let newData = moment(new Date(year,month,0)).format('YYYY-MM-DD') + ' 23:59:59'
let newData = let value = new Date(newData).getTime()
moment(new Date(year, month, 0)).format('YYYY-MM-DD') + ' 23:59:59'; return value
let value = new Date(newData).getTime(); }
return value; }
}, }
},
};
</script> </script>
<style lang='scss'> <style lang='scss'>
/* 级联选择器 */
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
display: none;
}
.demo-form-inline { .demo-form-inline {
.el-date-editor .el-range__icon { .el-date-editor .el-range__icon {
font-size: 16px; font-size: 16px;
color: #0b58ff; color: #0B58FF;
} }
.el-input__prefix .el-icon-date { .el-input__prefix .el-icon-date {
font-size: 16px; font-size: 16px;
color: #0b58ff; color: #0B58FF;
} }
} }
</style> </style>
@ -235,7 +215,7 @@ export default {
display: inline-block; display: inline-block;
width: 1px; width: 1px;
height: 24px; height: 24px;
background: #e8e8e8; background: #E8E8E8;
vertical-align: middle; vertical-align: middle;
} }
.demo-form-inline { .demo-form-inline {
@ -243,14 +223,10 @@ export default {
display: inline-block; display: inline-block;
width: 4px; width: 4px;
height: 16px; height: 16px;
background-color: #0b58ff; background-color: #0B58FF;
border-radius: 1px; border-radius: 1px;
margin-right: 8px; margin-right: 8px;
margin-top: 10px; margin-top: 10px;
} }
.el-form-item {
margin-right: 10px;
margin-bottom: 4px;
}
} }
</style> </style>

View File

@ -1,34 +1,29 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-area <search-area @submit="getList" @exportD="exportData"/>
@submit="getList"
@exportD="exportData" />
<!-- 表格 --> <!-- 表格 -->
<div v-show="chartData.length"> <div v-show="chartData.length">
<base-table <base-table
:table-props="tableProps" :table-props="tableProps"
:table-data="list" :table-data="list"
class="qoq-out-table" /> class="qoq-out-table"
/>
<div class="chartTitle">环比分析图</div> <div class="chartTitle">环比分析图</div>
<div style="width: 100%"> <div style='width: 100%'>
<line-chart <line-chart ref="analysisLineChart" :chartData="chartData"/>
ref="analysisLineChart"
:chartData="chartData" />
</div> </div>
</div> </div>
<!-- 没有数据 --> <!-- 没有数据 -->
<div <div class="no-data-bg" v-show='!chartData.length'></div>
class="no-data-bg"
v-show="!chartData.length"></div>
</div> </div>
</template> </template>
<script> <script>
import { getQoq } from '@/api/analysis/energyAnalysis'; import { getQoq } from "@/api/analysis/energyAnalysis"
import SearchArea from './components/searchArea'; import SearchArea from "./components/searchArea"
import LineChart from './components/lineChart'; import LineChart from "./components/lineChart"
import FileSaver from 'file-saver'; import FileSaver from "file-saver"
import * as XLSX from 'xlsx/xlsx.mjs'; import * as XLSX from 'xlsx/xlsx.mjs'
export default { export default {
name: 'QoqAnalysis', name: 'QoqAnalysis',
components: { SearchArea, LineChart }, components: { SearchArea, LineChart },
@ -36,90 +31,87 @@ export default {
return { return {
chartData: [], chartData: [],
tableProps: [], tableProps: [],
list: [], list: []
}; }
}, },
methods: { methods: {
getList(params) { getList(params) {
getQoq({ ...params }).then((res) => { getQoq({ ...params }).then((res) => {
if (res.code === 0 && res.data) { if (res.code === 0 && res.data) {
this.getTableList(res.data); this.getTableList(res.data)
} else { } else {
this.chartData = []; this.chartData = []
this.list = []; this.list = []
} }
}); })
}, },
getTableList(arr) { getTableList(arr) {
let data = arr.data; let data = arr.data
let nameData = arr.nameData; let nameData = arr.nameData
let tempX = []; let tempX = []
data[0].data.map((item) => { data[0].data.map((item) => {
let obj = {}; let obj = {}
obj.prop = item.dynamicName; obj.prop = item.dynamicName
obj.label = item.dynamicName; obj.label = item.dynamicName
obj.id = item.id; obj.id = item.id
obj.children = []; obj.children = []
tempX.push(obj); tempX.push(obj)
}); })
for (let i = 0; i < nameData.length; i++) { for (let i = 0; i < nameData.length; i++) {
for (let j = 0; j < tempX.length; j++) { for (let j = 0; j < tempX.length; j++) {
if (tempX[j].id === nameData[i].parentId) { if (tempX[j].id === nameData[i].parentId) {
let obj = {}; let obj = {}
obj.prop = tempX[j].prop + '_' + nameData[i].name; obj.prop = tempX[j].prop + '_' + nameData[i].name
obj.label = nameData[i].name; obj.label = nameData[i].name
tempX[j].children.push(obj); tempX[j].children.push(obj)
} }
} }
} }
this.tableProps = [{ prop: 'time', label: '时间' }].concat(tempX); this.tableProps = [{prop: 'time',label: '时间'}].concat(tempX)
// //
this.list = []; this.list = []
for (let k = 0; k < data.length; k++) { for (let k = 0; k < data.length; k++) {
let obj = {}; let obj = {}
obj.time = data[k].time; obj.time = data[k].time
let arr1 = data[k].data; let arr1 = data[k].data
obj.type = []; obj.type = []
for (let q = 0; q < arr1.length; q++) { for (let q = 0; q < arr1.length; q++) {
let name = arr1[q].dynamicName; let name = arr1[q].dynamicName
obj.type.push(name); obj.type.push(name)
let arr2 = arr1[q].children; let arr2 = arr1[q].children
for (let p = 0; p < arr2.length; p++) { for (let p = 0; p < arr2.length; p++) {
let prop = name + '_' + arr2[p].dynamicName; let prop = name + '_' + arr2[p].dynamicName
obj[prop] = arr2[p].dynamicValue; obj[prop] = arr2[p].dynamicValue
} }
} }
this.list.push(obj); this.list.push(obj)
} }
this.chartData = this.list; this.chartData = this.list
}, },
exportData(val) { exportData(val) {
if (this.list.length > 0) { if (this.list.length > 0) {
var wb = XLSX.utils.table_to_book( var wb = XLSX.utils.table_to_book(document.querySelector(".qoq-out-table"))
document.querySelector('.qoq-out-table') let fileName = val.name + "环比分析.xlsx"
);
let fileName = val.name + '环比分析.xlsx';
var wbout = XLSX.write(wb, { var wbout = XLSX.write(wb, {
bookType: 'xlsx', bookType: "xlsx",
bookSST: true, bookSST: true,
type: 'array', type: "array"
}); })
try { try {
FileSaver.saveAs( FileSaver.saveAs(
new Blob([wbout], { type: 'application/octet-stream' }), new Blob([wbout], { type: "application/octet-stream" }),
fileName fileName
); )
this.$message.success('导出成功');
} catch (e) { } catch (e) {
if (typeof console !== 'undefined') console.log(e, wbout); if (typeof console !== "undefined") console.log(e, wbout);
} }
return wbout; return wbout
} else { } else {
this.$modal.msgWarning('暂无数据导出'); this.$modal.msgWarning("暂无数据导出")
}
}
}
} }
},
},
};
</script> </script>
<style lang='scss' scoped> <style lang='scss' scoped>
.chartTitle { .chartTitle {
@ -132,7 +124,7 @@ export default {
display: inline-block; display: inline-block;
width: 4px; width: 4px;
height: 18px; height: 18px;
background-color: #0b58ff; background-color: #0B58FF;
border-radius: 1px; border-radius: 1px;
margin-right: 8px; margin-right: 8px;
vertical-align: bottom; vertical-align: bottom;

View File

@ -2,43 +2,44 @@
<div <div
id="analysischartLine" id="analysischartLine"
style="width: 100%" style="width: 100%"
:style="{ height: chartHeight + 'px' }"></div> :style="{ height: chartHeight + 'px' }"
></div>
</template> </template>
<script> <script>
import * as echarts from 'echarts'; import * as echarts from 'echarts'
import resize from '@/utils/chartMixins/resize'; import resize from '@/utils/chartMixins/resize'
export default { export default {
name: 'LineChart', name: "LineChart",
mixins: [resize], mixins: [resize],
data() { data() {
return { return {
chartDom: '', chartDom: '',
chart: '', chart: '',
chartHeight: this.tableHeight(314), chartHeight: this.tableHeight(214) - 70
}; }
}, },
props: { props: {
chartData: { chartData: {
type: Array, type: Array,
required: true, required: true,
default: () => { default: () => {
return []; return []
}, }
}, },
timeDim: { timeDim: {
type: String, type: String,
default: '', default: ''
}, }
}, },
watch: { watch: {
chartData: function () { chartData: function () {
this.getChart(); this.getChart()
}, }
}, },
mounted() { mounted() {
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.chartHeight = this.tableHeight(314); this.chartHeight = this.tableHeight(214) - 70
}); })
}, },
methods: { methods: {
getChart() { getChart() {
@ -47,56 +48,56 @@ export default {
this.chart !== '' && this.chart !== '' &&
this.chart !== undefined this.chart !== undefined
) { ) {
this.chart.dispose(); // Dom this.chart.dispose() // Dom
} }
this.chartDom = document.getElementById('analysischartLine'); this.chartDom = document.getElementById('analysischartLine')
this.chart = echarts.init(this.chartDom); this.chart = echarts.init(this.chartDom)
let xData = []; let xData = []
let yData = []; let yData = []
for (let i = 0; i < this.chartData.length; i++) { for (let i = 0; i < this.chartData.length; i++) {
let time = ''; let time = ""
if (this.timeDim === '3') { if (this.timeDim === '3') {
let year = this.chartData[i].time.slice(0, 4); let year = this.chartData[i].time.slice(0,4)
let weak = this.chartData[i].time.slice(4, 6); let weak = this.chartData[i].time.slice(4,6)
time = year + ' 第 ' + weak + ' 周'; time = year+' 第 '+weak+' 周'
} else { } else {
time = this.chartData[i].time; time = this.chartData[i].time
} }
xData.push(time); xData.push(time)
yData.push(this.chartData[i].useNum); yData.push(this.chartData[i].useNum)
} }
var option = { var option = {
color:['#288AFF'], color:['#288AFF'],
tooltip: { // tooltip: {
trigger: 'axis', // trigger: 'axis'
}, // },
grid: { grid: {
left: '4%', left: '4%',
right: '1%', right: '1%',
bottom: '1%', bottom: '1%',
containLabel: true, containLabel: true
}, },
xAxis: { xAxis: {
type: 'category', type: 'category',
data: xData, data: xData,
axisLabel: { axisLabel: {
rotate: '45', rotate: "45"
}, }
}, },
yAxis: { yAxis: {
type: 'value', type: 'value'
}, },
series: [ series: [
{ {
data: yData, data: yData,
type: 'line', type: 'line'
}, }
], ]
}; };
option && this.chart.setOption(option); option && this.chart.setOption(option);
}, }
}, }
}; }
</script> </script>

View File

@ -1,78 +1,38 @@
<template> <template>
<div <div class="searchBarBox divHeight" ref="searchBarRef" :style="{ paddingRight: isFold ? '55px' : '0px' }">
class="searchBarBox" <el-form :inline="true" class="demo-form-inline">
ref="searchBarRef">
<el-form
:inline="true"
class="demo-form-inline">
<span class="blue-block"></span> <span class="blue-block"></span>
<el-form-item <el-form-item label="能源类型" required>
label="能源类型" <el-select v-model="queryParams.energyTypeId" placeholder="请选择" style="width: 100px;" size="small">
required>
<el-select
v-model="queryParams.energyTypeId"
placeholder="请选择"
size="small"
@change="chooseType"
filterable
style="width: 100%">
<el-option <el-option
v-for="item in energyTypeList" v-for="item in energyTypeList"
:key="item.id" :key="item.id"
:label="item.labelName" :label="item.name"
:value="item.id"></el-option> :value="item.id">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="对象选择" required>
v-if="energyType === 1"
label="对象选择"
required>
<el-cascader <el-cascader
v-model="objArr" v-model="objArr"
:options="objList" :options="objList"
:show-all-levels="false"
:props="{ checkStrictly: true, value: 'id', label: 'name' }" :props="{ checkStrictly: true, value: 'id', label: 'name' }"
popper-class="cascaderParent"
size="small" size="small"
@change="changeLine"
clearable></el-cascader> clearable></el-cascader>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="时间维度" required>
v-if="energyType === 2" <el-select v-model="queryParams.timeDim" placeholder="请选择" style="width: 80px;" size="small">
label="对象选择"
required>
<el-select
v-model="objId"
placeholder="请选择"
style="width: 250px"
filterable
size="small">
<el-option
v-for="item in objList"
:key="item.id"
:label="item.name"
:value="item.id"
:clearable="false"></el-option>
</el-select>
</el-form-item>
<el-form-item
label="时间维度"
required>
<el-select
v-model="queryParams.timeDim"
placeholder="请选择"
style="width: 80px"
size="small">
<el-option <el-option
v-for="item in getDictDatas(this.DICT_TYPE.TIME_DIM)" v-for="item in getDictDatas(this.DICT_TYPE.TIME_DIM)"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
size="small"></el-option> size="small">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="时间范围" required>
label="时间范围"
required>
<div v-show="queryParams.timeDim === '1'"> <div v-show="queryParams.timeDim === '1'">
<el-date-picker <el-date-picker
v-model="timeValue" v-model="timeValue"
@ -86,7 +46,9 @@
popper-class="noneMinute" popper-class="noneMinute"
@change="timeSelect" @change="timeSelect"
size="small" size="small"
style="width: 350px"></el-date-picker> style='width:350px;'
>
</el-date-picker>
</div> </div>
<div v-show="queryParams.timeDim === '2'"> <div v-show="queryParams.timeDim === '2'">
<el-date-picker <el-date-picker
@ -99,28 +61,31 @@
:picker-options="pickerOptions" :picker-options="pickerOptions"
@change="timeSelect" @change="timeSelect"
size="small" size="small"
style="width: 350px"></el-date-picker> style='width:350px;'
>
</el-date-picker>
</div> </div>
<div v-show="queryParams.timeDim === '3'"> <div v-show="queryParams.timeDim === '3'">
<el-date-picker <el-date-picker
v-model="weekValue1" v-model="weekValue1"
type="week" type="week"
format="yyyy 第 WW 周" format="yyyy 第 WW 周"
style="width: 170px" style='width:170px;'
:picker-options="pickerOptionsWeek" :picker-options="pickerOptionsWeek"
@change="startWeek" @change="startWeek"
size="small" size="small"
placeholder="选择周"></el-date-picker> placeholder="选择周">
- </el-date-picker>-
<el-date-picker <el-date-picker
v-model="weekValue2" v-model="weekValue2"
type="week" type="week"
format="yyyy 第 WW 周" format="yyyy 第 WW 周"
:picker-options="pickerOptionsWeek" :picker-options="pickerOptionsWeek"
style="width: 170px" style='width:170px;'
@change="endWeek" @change="endWeek"
size="small" size="small"
placeholder="选择周"></el-date-picker> placeholder="选择周">
</el-date-picker>
</div> </div>
<div v-show="queryParams.timeDim === '4'"> <div v-show="queryParams.timeDim === '4'">
<el-date-picker <el-date-picker
@ -132,79 +97,71 @@
value-format="timestamp" value-format="timestamp"
:picker-options="pickerOptions" :picker-options="pickerOptions"
size="small" size="small"
style="width: 350px" style='width:350px;'
@change="timeSelect"></el-date-picker> @change="timeSelect"
>
</el-date-picker>
</div> </div>
<div v-show="queryParams.timeDim === '5'"> <div v-show="queryParams.timeDim === '5'">
<el-date-picker <el-date-picker
style="width: 170px" style='width:170px;'
v-model="yearValue1" v-model="yearValue1"
type="year" type="year"
:picker-options="pickerOptions" :picker-options="pickerOptions"
value-format="timestamp" value-format="timestamp"
placeholder="选择年" placeholder="选择年"
size="small" size="small"
@change="startYear"></el-date-picker> @change="startYear"
- >
</el-date-picker>-
<el-date-picker <el-date-picker
style="width: 170px" style='width:170px;'
v-model="yearValue2" v-model="yearValue2"
type="year" type="year"
:picker-options="pickerOptions" :picker-options="pickerOptions"
value-format="timestamp" value-format="timestamp"
placeholder="选择年" placeholder="选择年"
size="small" size="small"
@change="endYear"></el-date-picker> @change="endYear"
>
</el-date-picker>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button type="primary" size="small" @click="search">查询</el-button>
type="primary" <span class="separateStyle"></span>
size="small" <el-button size="small" @click="resetBtn">重置</el-button>
@click="handBtn('search')">
查询
</el-button>
<el-button
size="small"
@click="resetBtn">
重置
</el-button>
<span
class="separateStyle"
v-hasPermi="['analysis:energy-analysis:query']"></span>
<el-button
v-hasPermi="['analysis:energy-analysis:query']"
type="primary"
size="small"
plain
@click="handBtn('exportBtn')">
导出
</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
<span v-if="isFold" class="foldClass" @click='switchMode'>
{{ isExpand ? '收起' : '展开' }}
<svg-icon :icon-class="isExpand ? 'upward' : 'downward'" />
</span>
</div> </div>
</template> </template>
<script> <script>
import { getTree } from '@/api/analysis/energyAnalysis'; import { getEnergyTypeListAll } from "@/api/base/energyType"
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getTree } from '@/api/base/factory'
import moment from 'moment'; import moment from 'moment'
export default { export default {
name: 'searchArea', name: 'searchArea',
props: {
isFold: {//
type: Boolean,
default: false
}
},
data() { data() {
return { return {
isExpand: false, //
// //
queryParams: { queryParams: {
energyTypeId: null, energyTypeId: null,
objId: null, objId: null,
timeDim: null, timeDim: null,
startTime: null, startTime: null,
endTime: null, endTime: null
objType: 1, //12线3
}, },
objId: null,
objType: 1, //12线3,使
energyTypeList: [],
energyType: 0, //12
objArr: [], objArr: [],
timeValue: [],// 7 timeValue: [],// 7
dateValue: [],// 30 dateValue: [],// 30
@ -213,290 +170,248 @@ export default {
monthValue: [],//24 monthValue: [],//24
yearValue1: null,//10 yearValue1: null,//10
yearValue2: null, yearValue2: null,
energyTypeList: [],
objList: [], objList: [],
pickerOptions: { pickerOptions: {
disabledDate(date) { disabledDate(date) {
return date.getTime() > Date.now(); return date.getTime() > Date.now()
}, }
}, },
pickerOptionsWeek: { pickerOptionsWeek: {
disabledDate(time) { disabledDate(time) {
let day = Date.now(); let day = Date.now()
let limitTime = moment(day).day(-1); let limitTime = moment(day).day(-1)
return time.getTime() > new Date(limitTime).getTime(); return time.getTime() > new Date(limitTime).getTime()
}, }
}, }
}; }
}, },
mounted() { mounted() {
this.getEnergyList(); this.getTypeList()
this.getObjTree(); this.getObjTree()
this.queryParams.timeDim = this.getDictDatas( this.queryParams.timeDim = this.getDictDatas(this.DICT_TYPE.TIME_DIM)[0].value //
this.DICT_TYPE.TIME_DIM this.timeValue = [moment().startOf('day'), moment().endOf('day')-59*61*1000]
)[0].value; //
this.timeValue = [
moment().startOf('day'),
moment().endOf('day') - 59 * 61 * 1000,
];
}, },
methods: { methods: {
getObjTree() { getTypeList() {
getTree().then((res) => {
this.objList = res.data || [];
if (this.objList.length > 0) {
this.objId = this.objList[0].id;
}
});
},
//
getEnergyList() {
getEnergyTypeListAll().then((res) => { getEnergyTypeListAll().then((res) => {
this.energyTypeList = res.data || []; this.energyTypeList = res.data || []
}); })
}, },
// getObjTree() {
chooseType(id) { getTree().then(res => {
let val; this.objList = res.data || []
this.energyTypeList.map((item) => { })
if (item.id === id) {
val = item.name;
}
});
if (val == 1 || val == 2) {
this.energyType = 1;
} else {
this.energyType = 2;
}
},
// /线/
changeLine(val) {
this.objType = val.length || 0;
}, },
// //
timeSelect() { timeSelect() {
switch (this.queryParams.timeDim) { switch (this.queryParams.timeDim) {
case '1': case '1':
if (!this.timeValue) { if (!this.timeValue) {
this.$modal.msgError('时间范围不能为空'); this.$modal.msgError('时间范围不能为空')
return false; return false
} }
if (this.timeValue[1] - this.timeValue[0] > 7*24*3600000) { if (this.timeValue[1] - this.timeValue[0] > 7*24*3600000) {
this.$modal.msgError('最大时间范围为7天请重新选择'); this.$modal.msgError('最大时间范围为7天请重新选择')
this.timeValue = []; this.timeValue = []
} }
break; break
case '2': case '2':
if (!this.dateValue) { if (!this.dateValue) {
this.$modal.msgError('时间范围不能为空'); this.$modal.msgError('时间范围不能为空')
return false; return false
} }
if (this.dateValue[1] - this.dateValue[0] > 29*24*3600000) { if (this.dateValue[1] - this.dateValue[0] > 29*24*3600000) {
this.$modal.msgError('最大时间范围为30天请重新选择'); // 0:00:0023:59:59 this.$modal.msgError('最大时间范围为30天请重新选择') // 0:00:0023:59:59
this.dateValue = []; this.dateValue = []
} }
break; break
case '4': case '4':
if (!this.monthValue) { if (!this.monthValue) {
this.$modal.msgError('时间范围不能为空'); this.$modal.msgError('时间范围不能为空')
return false; return false
} }
if (this.monthValue[1] - this.monthValue[0] > 729*24*3600000) { if (this.monthValue[1] - this.monthValue[0] > 729*24*3600000) {
this.$modal.msgError('最大时间范围为24个月请重新选择'); // this.$modal.msgError('最大时间范围为24个月请重新选择')//
this.monthValue = []; this.monthValue = []
} }
break; break
default: default:
} }
}, },
// //
startYear() { startYear() {
if (this.yearValue2 && this.yearValue2 < this.yearValue1) { if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择'); this.$modal.msgError('开始时间不能晚于结束时间,请重新选择')
this.yearValue1 = null; this.yearValue1 = null
return false; return false
} }
if (this.yearValue1 && this.yearValue2) { if (this.yearValue1 && this.yearValue2) {
if (this.yearValue2 - this.yearValue1 > 10*365*24*3600000) { if (this.yearValue2 - this.yearValue1 > 10*365*24*3600000) {
this.$modal.msgError('最大时间范围为10年请重新选择'); this.$modal.msgError('最大时间范围为10年请重新选择')
this.yearValue1 = null; this.yearValue1 = null
return false; return false
} }
} }
}, },
endYear() { endYear() {
if (this.yearValue2 && this.yearValue2 < this.yearValue1) { if (this.yearValue2 && this.yearValue2 < this.yearValue1) {
this.$modal.msgError('结束时间不能早于开始时间,请重新选择'); this.$modal.msgError('结束时间不能早于开始时间,请重新选择')
this.yearValue2 = null; this.yearValue2 = null
return false; return false
} }
if (this.yearValue1 && this.yearValue2) { if (this.yearValue1 && this.yearValue2) {
if (this.yearValue2 - this.yearValue1 > 10*365*24*3600000) { if (this.yearValue2 - this.yearValue1 > 10*365*24*3600000) {
this.$modal.msgError('最大时间范围为10年请重新选择'); this.$modal.msgError('最大时间范围为10年请重新选择')
this.yearValue2 = null; this.yearValue2 = null
return false; return false
} }
} }
}, },
// //
startWeek() { startWeek() {
if (this.weekValue1 && this.weekValue2) { if (this.weekValue1 && this.weekValue2) {
let a = new Date(this.weekValue1).getTime(); let a = new Date(this.weekValue1).getTime()
let b = new Date(this.weekValue2).getTime(); let b = new Date(this.weekValue2).getTime()
if (a > b) { if (a > b) {
this.$modal.msgError('开始时间不能晚于结束时间,请重新选择'); this.$modal.msgError('开始时间不能晚于结束时间,请重新选择')
this.weekValue1 = null; this.weekValue1 = null
return false; return false
} }
if (b - a > 167*24*3600000) { if (b - a > 167*24*3600000) {
this.$modal.msgError('最大时间范围为24周请重新选择'); this.$modal.msgError('最大时间范围为24周请重新选择')
this.weekValue1 = null; this.weekValue1 = null
return false; return false
} }
} }
}, },
endWeek() { endWeek() {
if (this.weekValue1 && this.weekValue2) { if (this.weekValue1 && this.weekValue2) {
let a = new Date(this.weekValue1).getTime(); let a = new Date(this.weekValue1).getTime()
let b = new Date(this.weekValue2).getTime(); let b = new Date(this.weekValue2).getTime()
if (a > b) { if (a > b) {
this.$modal.msgError('结束时间不能早于开始时间,请重新选择'); this.$modal.msgError('结束时间不能早于开始时间,请重新选择')
this.weekValue2 = null; this.weekValue2 = null
return false; return false
} }
if (b - a > 167*24*3600000) { if (b - a > 167*24*3600000) {
this.$modal.msgError('最大时间范围为24周请重新选择'); this.$modal.msgError('最大时间范围为24周请重新选择')
this.weekValue2 = null; this.weekValue2 = null
return false; return false
} }
} }
}, },
// //
handBtn(val) { search() {
if (!this.queryParams.energyTypeId) { if (!this.queryParams.energyTypeId) {
this.$modal.msgError('请选择能源类型'); this.$modal.msgError('请选择能源类型')
return false; return false
} }
if (this.energyType == 1) {
if (this.objArr.length === 0) { if (this.objArr.length === 0) {
this.$modal.msgError('请选择对象'); this.$modal.msgError('请选择对象')
return false; return false
} else { } else {
this.queryParams.objId = this.objArr[this.objArr.length - 1]; this.queryParams.objId = this.objArr[this.objArr.length-1]
this.queryParams.objType = this.objType;
} }
} else if (this.energyType == 2) {
if (!this.objId) {
this.$modal.msgError('请选择对象');
return false;
} else {
this.queryParams.objId = this.objId;
this.queryParams.objType = 1;
}
}
if (!this.queryParams.timeDim) { if (!this.queryParams.timeDim) {
this.$modal.msgError('请选择时间维度'); this.$modal.msgError('请选择时间维度')
return false; return false
} }
switch (this.queryParams.timeDim) { switch (this.queryParams.timeDim) {
case '1': case '1':
if (this.timeValue && this.timeValue.length > 0) { if (this.timeValue && this.timeValue.length > 0) {
this.queryParams.startTime = this.timeValue[0]; this.queryParams.startTime = this.timeValue[0]
this.queryParams.endTime = this.timeValue[1]; // this.queryParams.endTime = this.timeValue[1] //
} else { } else {
this.$modal.msgError('时间范围不能为空'); this.$modal.msgError('时间范围不能为空')
return false; return false
} }
break; break
case '2': case '2':
if (this.dateValue && this.dateValue.length > 0) { if (this.dateValue && this.dateValue.length > 0) {
this.queryParams.startTime = this.dateValue[0]; this.queryParams.startTime = this.dateValue[0]
this.queryParams.endTime = this.dateValue[1] + 86399000; // 23:59:59 this.queryParams.endTime = this.dateValue[1] + 86399000 // 23:59:59
} else { } else {
this.$modal.msgError('日范围不能为空'); this.$modal.msgError('日范围不能为空')
return false; return false
} }
break; break
case '3': case '3':
if (this.weekValue1 && this.weekValue2) { if (this.weekValue1 && this.weekValue2) {
let a = let a = moment(this.weekValue1).day(0).format('YYYY-MM-DD') + ' 00:00:00'
moment(this.weekValue1).day(0).format('YYYY-MM-DD') + ' 00:00:00'; let b = moment(this.weekValue2).day(6).format('YYYY-MM-DD') + ' 23:59:59'
let b = this.queryParams.startTime = new Date(a).getTime()
moment(this.weekValue2).day(6).format('YYYY-MM-DD') + ' 23:59:59'; this.queryParams.endTime = new Date(b).getTime()
this.queryParams.startTime = new Date(a).getTime();
this.queryParams.endTime = new Date(b).getTime();
} else { } else {
this.$modal.msgError('周范围不能为空'); this.$modal.msgError('周范围不能为空')
return false; return false
} }
break; break
case '4':// case '4'://
if (this.monthValue && this.monthValue.length > 0) { if (this.monthValue && this.monthValue.length > 0) {
this.queryParams.startTime = this.monthValue[0]; this.queryParams.startTime = this.monthValue[0]
this.queryParams.endTime = this.transformTime(this.monthValue[1]); this.queryParams.endTime = this.transformTime(this.monthValue[1])
} else { } else {
this.$modal.msgError('月范围不能为空'); this.$modal.msgError('月范围不能为空')
return false; return false
} }
break; break
default:// default://
if (this.yearValue1 && this.yearValue2) { if (this.yearValue1 && this.yearValue2) {
if (this.yearValue2 < this.yearValue1) { if (this.yearValue2 < this.yearValue1) {
this.$modal.msgError('结束时间不能早于开始时间'); this.$modal.msgError('结束时间不能早于开始时间')
return false; return false
} else { } else {
this.queryParams.startTime = this.yearValue1; this.queryParams.startTime = this.yearValue1
this.queryParams.endTime = this.transformYear(this.yearValue2); this.queryParams.endTime = this.transformYear(this.yearValue2)
} }
} else { } else {
this.$modal.msgError('年范围不能为空'); this.$modal.msgError('年范围不能为空')
return false; return false
} }
} }
this.queryParams.startTime = this.queryParams.startTime + ''; this.queryParams.startTime = this.queryParams.startTime + ''
this.queryParams.endTime = this.queryParams.endTime + ''; this.queryParams.endTime = this.queryParams.endTime + ''
if (val === 'search') { this.$emit('submit', this.queryParams)
this.$emit('submit', this.queryParams);
} else {
this.$emit('export', this.queryParams);
}
}, },
// //
resetBtn() { resetBtn() {
this.queryParams.energyTypeId = null; this.queryParams.energyTypeId = null
this.energyType = 0; this.queryParams.objId = null
this.queryParams.objId = null; this.objArr = []
this.objId = null; this.queryParams.timeDim = this.getDictDatas(this.DICT_TYPE.TIME_DIM)[0].value //
this.objType = 1; this.timeValue = [moment().startOf('day'), moment().endOf('day')-59*61*1000]
this.objArr = [];
this.queryParams.timeDim = this.getDictDatas(
this.DICT_TYPE.TIME_DIM
)[0].value; //
this.timeValue = [
moment().startOf('day'),
moment().endOf('day') - 59 * 61 * 1000,
];
}, },
transformTime(timeStamp) { transformTime(timeStamp) {//
// let year = moment(timeStamp).format('YYYY')
let year = moment(timeStamp).format('YYYY'); let month = moment(timeStamp).format('MM')
let month = moment(timeStamp).format('MM'); let newData = moment(new Date(year,month,0)).format('YYYY-MM-DD') + ' 23:59:59'
let newData = let value = new Date(newData).getTime()
moment(new Date(year, month, 0)).format('YYYY-MM-DD') + ' 23:59:59'; return value
let value = new Date(newData).getTime();
return value;
}, },
transformYear(timeStamp) { transformYear(timeStamp) {//
// let year = moment(timeStamp).format('YYYY')
let year = moment(timeStamp).format('YYYY'); let newData = year+'-12-31 23:59:59'
let newData = year + '-12-31 23:59:59'; let value = new Date(newData).getTime()
let value = new Date(newData).getTime(); return value
return value;
}, },
}, switchMode() {//
}; this.isExpand = !this.isExpand
const element = this.$refs.searchBarRef
if (this.isExpand) {
element.classList.remove('divHeight')
} else {
element.classList.add('divHeight')
}
}
}
}
</script> </script>
<style lang='scss'> <style lang='scss'>
/* 级联选择器 */
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
display: none;
}
/* 时间整点 */ /* 时间整点 */
.noneMinute .el-time-spinner__wrapper { .noneMinute .el-time-spinner__wrapper {
width: 100%; width: 100%;
@ -507,11 +422,11 @@ export default {
.demo-form-inline { .demo-form-inline {
.el-date-editor .el-range__icon { .el-date-editor .el-range__icon {
font-size: 16px; font-size: 16px;
color: #0b58ff; color: #0B58FF;
} }
.el-input__prefix .el-icon-date { .el-input__prefix .el-icon-date {
font-size: 16px; font-size: 16px;
color: #0b58ff; color: #0B58FF;
} }
} }
</style> </style>
@ -521,21 +436,32 @@ export default {
display: inline-block; display: inline-block;
width: 4px; width: 4px;
height: 16px; height: 16px;
background-color: #0b58ff; background-color: #0B58FF;
border-radius: 1px; border-radius: 1px;
margin-right: 8px; margin-right: 8px;
margin-top: 12px; margin-top: 12px;
} }
.el-form-item {
margin-right: 10px;
margin-bottom: 4px;
} }
.searchBarBox .foldClass {
position: absolute;
top: 14px;
right: 0;
cursor: pointer;
font-size: 12px;
color:#0B58FF;
}
.searchBarBox .foldClass .iconfont {
font-size: 14px;
}
.divHeight {
height: 45px;
overflow: hidden;
} }
.separateStyle { .separateStyle {
display: inline-block; display: inline-block;
width: 1px; width: 1px;
height: 24px; height: 24px;
background: #e8e8e8; background: #E8E8E8;
vertical-align: middle; vertical-align: middle;
margin: 0 10px; margin: 0 10px;
} }

View File

@ -1,110 +1,94 @@
<template> <template>
<div <div class="app-container trendAnalysisBox" id="trendAnalysisBox">
class="app-container trendAnalysisBox"
id="trendAnalysisBox">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-area <search-area :isFold="isFold" @submit="getList"/>
@submit="getList" <el-tabs v-model="activeName" @tab-click="switchChart" v-show='chartData.length'>
@export="exportExl" /> <el-tab-pane label="柱状图" name="bar">
<div v-show="chartData.length"> <bar-chart ref="analysisBarChart" :chartData="chartData" :timeDim="timeDim"/>
<base-table </el-tab-pane>
:table-props="tableProps" <el-tab-pane label="折线图" name="line">
:table-data="list" <line-chart ref="analysisLineChart" :chartData="chartData" :timeDim="timeDim"/>
class="trend-out-table" /> </el-tab-pane>
<line-chart </el-tabs>
ref="analysisLineChart"
:chartData="chartData"
:timeDim="timeDim" />
</div>
<!-- 没有数据 --> <!-- 没有数据 -->
<div <div class="no-data-bg" v-show='!chartData.length'></div>
class="no-data-bg"
v-show="!chartData.length"></div>
</div> </div>
</template> </template>
<script> <script>
import { getEnergyTrend, exportTrend } from '@/api/analysis/energyAnalysis'; import { getEnergyTrend } from "@/api/analysis/energyAnalysis"
import SearchArea from './components/searchArea'; import SearchArea from "./components/searchArea"
import LineChart from './components/lineChart'; import BarChart from "./components/barChart"
import LineChart from "./components/lineChart"
// import moment from 'moment' // import moment from 'moment'
export default { export default {
name: 'TrendAnalysis', name: 'TrendAnalysis',
components: { SearchArea, LineChart }, components: { SearchArea, BarChart, LineChart },
data() { data() {
return { return {
isFold: false,
activeName: 'bar',
chartData: [], chartData: [],
timeDim: '', timeDim: ''
tableProps: [], }
list: [], },
}; mounted() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
this.isFold = this.searchBarWidth('trendAnalysisBox', 1263)
})
this.isFold = this.searchBarWidth('trendAnalysisBox', 1263)
}, },
methods: { methods: {
getList(params) { getList(params) {
this.timeDim = params.timeDim; this.timeDim = params.timeDim
getEnergyTrend({ ...params }).then((res) => { getEnergyTrend({ ...params }).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.getTableList(res.data || []); this.chartData = res.data
this.chartData = res.data || [];
} else { } else {
this.chartData = []; this.chartData = []
} }
}); })
}, },
getTableList(arr) { switchChart() {
this.tableProps = []; if (this.activeName === 'bar') {
this.list = []; this.$nextTick((res) => {
let tempX = []; this.$refs.analysisBarChart.getChart()
let listObj = { useNum: '消耗量' }; // })
for (let i = 0; i < arr.length; i++) {
let obj = {};
if (this.timeDim === '3') {
let fName = arr[i].time.slice(0, 4);
let lName = arr[i].time.slice(4, 6);
obj.label = fName + ' 第 ' + lName + ' 周';
} else { } else {
obj.label = arr[i].time; this.$nextTick((res) => {
this.$refs.analysisLineChart.getChart()
})
}
}
} }
obj.prop = arr[i].time;
obj.minWidth = 100;
tempX.push(obj);
listObj[arr[i].time] = arr[i].useNum || null;
} }
this.tableProps = [{ prop: 'useNum', label: '时间' }].concat(tempX);
this.list.push(listObj);
},
// excel
exportExl(params) {
exportTrend({ ...params }).then((res) => {
// let fileName = '';
// const contentDisposition = res.headers['content-disposition'];
// if (contentDisposition) {
// fileName = decodeURIComponent(
// contentDisposition.slice(
// contentDisposition.indexOf('filename=') + 9
// )
// );
// }
const blob = new Blob([res.data]);
const reader = new FileReader();
reader.readAsDataURL(blob);
reader.onload = (e) => {
const a = document.createElement('a');
a.download = '走势分析';
a.href = e.target.result;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
this.$message.success('导出成功');
};
});
},
},
};
</script> </script>
<style lang="scss"> <style lang='scss'>
.trendAnalysisBox { .trendAnalysisBox {
.trend-out-table { .el-tabs__nav::after {
margin-bottom: 15px; content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background-color: #e4e7ed;
/* z-index: 1; */
}
.el-tabs__nav-wrap::after {
width: 0;
}
.el-tabs__item {
padding: 0 10px;
}
.el-tabs__item:hover {
color: rgba(0, 0, 0, 0.85);
}
.el-tabs__item.is-active {
color: rgba(0, 0, 0, 0.85);
}
.el-tabs__item {
color: rgba(0, 0, 0, 0.45);
} }
} }
</style> </style>

View File

@ -1,40 +1,37 @@
<template> <template>
<div <div id="analysischartLine" style="width: 100%;height: 100%;"></div>
id="analysischartLine"
style="width: 100%"
:style="{ height: chartHeight + 'px' }"></div>
</template> </template>
<script> <script>
import * as echarts from 'echarts'; import * as echarts from 'echarts'
import resize from '@/utils/chartMixins/resize'; import resize from '@/utils/chartMixins/resize'
export default { export default {
name: 'LineChart', name: "LineChart",
mixins: [resize], mixins: [resize],
data() { data() {
return { return {
chartDom: '', chartDom: '',
chart: '', chart: '',
chartHeight: this.tableHeight(250) / 2, chartHeight: this.tableHeight(214) - 70
}; }
}, },
props: { props: {
chartData: { chartData: {
type: Array, type: Array,
required: true, required: true,
default: () => { default: () => {
return []; return []
}, }
}, }
}, },
watch: { watch: {
chartData: function () { chartData: function () {
this.getChart(); this.getChart()
}, }
}, },
mounted() { mounted() {
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.chartHeight = this.tableHeight(250) / 2; this.chartHeight = this.tableHeight(214) - 70
}); })
}, },
methods: { methods: {
getChart() { getChart() {
@ -43,77 +40,63 @@ export default {
this.chart !== '' && this.chart !== '' &&
this.chart !== undefined this.chart !== undefined
) { ) {
this.chart.dispose(); // Dom this.chart.dispose() // Dom
} }
this.chartDom = document.getElementById('analysischartLine'); this.chartDom = document.getElementById('analysischartLine')
this.chart = echarts.init(this.chartDom); this.chart = echarts.init(this.chartDom)
if (this.chartData.length === 0) { if (this.chartData.length === 0) {
return false; return false
} }
let xData = []; let xData = []
let arr = this.chartData[0].type; let arr = this.chartData[0].type
let keys = Object.keys(this.chartData[0]); let keys = Object.keys(this.chartData[0])
let yData = []; let yData = []
for (let j = 0; j < arr.length; j++) { for (let j = 0; j < arr.length; j++) {
for (let k = 0; k < keys.length; k++) { for (let k = 0; k < keys.length; k++) {
if ( if (keys[k].indexOf(arr[j] + '_上年同期') > -1 || keys[k].indexOf(arr[j] + '_能源消耗') > -1) {
keys[k].indexOf(arr[j] + '_上年同期') > -1 ||
keys[k].indexOf(arr[j] + '_能源消耗') > -1
) {
let obj = { let obj = {
name: '', name: '',
type: 'line', type: 'line',
data: [], data: []
}; }
obj.name = keys[k]; obj.name = keys[k]
yData.push(obj); yData.push(obj)
} }
} }
} }
for (let i = 0; i < this.chartData.length; i++) { for (let i = 0; i < this.chartData.length; i++) {
xData.push(this.chartData[i].time); xData.push(this.chartData[i].time)
for (let p = 0; p < yData.length; p++) { for (let p = 0; p < yData.length; p++) {
yData[p].data.push(this.chartData[i][yData[p].name]); yData[p].data.push(this.chartData[i][yData[p].name])
} }
} }
var option = { var option = {
color: [ color: ['#FFDC94', '#8EF0AB', '#63BDFF', '#288AFF', '#7164FF', '#FF6860', '#FF9747', '#B0EB42', '#D680FF', '#0043D2'],
'#FFDC94',
'#8EF0AB',
'#63BDFF',
'#288AFF',
'#7164FF',
'#FF6860',
'#FF9747',
'#B0EB42',
'#D680FF',
'#0043D2',
],
legend: { legend: {
data: keys, data: keys,
right: '1%', right: '1%'
}, },
tooltip: { tooltip: {
trigger: 'axis', trigger: 'axis'
}, },
grid: { grid: {
left: '1%', left: '1%',
right: '1%', right: '1%',
bottom: '3%', bottom: '3%',
containLabel: true, containLabel: true
}, },
xAxis: { xAxis: {
type: 'category', type: 'category',
data: xData, data: xData
}, },
yAxis: { yAxis: {
type: 'value', type: 'value'
}, },
series: yData, series: yData
}; };
option && this.chart.setOption(option); option && this.chart.setOption(option);
}, }
}, }
}; }
</script> </script>

View File

@ -1,44 +1,27 @@
<template> <template>
<el-form <el-form :inline="true" class="demo-form-inline">
:inline="true"
class="demo-form-inline">
<span class="blue-block"></span> <span class="blue-block"></span>
<el-form-item <el-form-item label="对象选择" required>
label="对象选择" <el-cascader
required> v-model="objArr"
<el-select :options="objList"
v-model="queryParams.objId" :props="{ checkStrictly: true, value: 'id', label: 'name' }"
placeholder="请选择" popper-class="cascaderParent"
style="width: 250px" size="small"
filterable clearable></el-cascader>
size="small">
<el-option
v-for="item in objList"
:key="item.id"
:label="item.name"
:value="item.id"
:clearable="false"></el-option>
</el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="时间维度" required>
label="时间维度" <el-select v-model="queryParams.type" placeholder="请选择" style="width: 80px;" size="small">
required>
<el-select
v-model="queryParams.type"
placeholder="请选择"
style="width: 80px"
size="small">
<el-option <el-option
v-for="item in timeType" v-for="item in timeType"
:key="item.id" :key="item.id"
:label="item.name" :label="item.name"
:value="item.id" :value="item.id"
:clearable="false"></el-option> :clearable="false">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="时间" required>
label="时间"
required>
<div v-show="queryParams.type === 1 || queryParams.type === 2"> <div v-show="queryParams.type === 1 || queryParams.type === 2">
<el-date-picker <el-date-picker
v-model="yearValue" v-model="yearValue"
@ -47,7 +30,8 @@
@change="selectTime" @change="selectTime"
:clearable="false" :clearable="false"
size="small" size="small"
placeholder="选择年"></el-date-picker> placeholder="选择年">
</el-date-picker>
</div> </div>
<div v-show="queryParams.type === 3"> <div v-show="queryParams.type === 3">
<el-date-picker <el-date-picker
@ -57,37 +41,24 @@
@change="selectTime" @change="selectTime"
:clearable="false" :clearable="false"
size="small" size="small"
placeholder="选择月"></el-date-picker> placeholder="选择月">
</el-date-picker>
</div> </div>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button type="primary" size="small" @click="search">查询</el-button>
type="primary"
size="small"
@click="search">
查询
</el-button>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<span <span class="separateStyle"></span>
class="separateStyle"
v-hasPermi="['analysis:yoy-analysis:export']"></span>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button type="primary" size="small" @click="exportData" plain>导出</el-button>
v-hasPermi="['analysis:yoy-analysis:export']"
type="primary"
size="small"
@click="exportData"
plain>
导出
</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</template> </template>
<script> <script>
import { getTree } from '@/api/analysis/energyAnalysis'; import { getTree } from '@/api/base/factory'
import moment from 'moment'; import moment from 'moment'
export default { export default {
name: 'searchArea', name: 'searchArea',
data() { data() {
@ -96,111 +67,119 @@ export default {
queryParams: { queryParams: {
type: 1, // 123 type: 1, // 123
searchTime: null, searchTime: null,
objId: null, objId: null
objType: 1,
}, },
timeType: [ timeType: [
{id: 1, name: '季度'}, {id: 1, name: '季度'},
{id: 2, name: '月'}, {id: 2, name: '月'},
{ id: 3, name: '日' }, {id: 3, name: '日'}
], ],
yearValue: '', yearValue: '',
yearMonth: '', yearMonth: '',
objArr: [],
objList: [], objList: [],
pickerOptions: { pickerOptions: {
disabledDate(date) { disabledDate(date) {
return date.getTime() > Date.now(); return date.getTime() > Date.now()
}, }
}, }
}; }
}, },
mounted() { mounted() {
this.getObjTree(); this.getObjTree()
}, },
methods: { methods: {
getObjTree() { getObjTree() {
getTree().then((res) => { getTree().then(res => {
this.objList = res.data || []; this.objList = res.data || []
if (this.objList.length > 0) { })
this.queryParams.objId = this.objList[0].id;
}
});
}, },
selectTime() { selectTime() {
if (this.queryParams.type === 3) { if (this.queryParams.type === 3) {
this.queryParams.searchTime = this.yearMonth; this.queryParams.searchTime = this.yearMonth
} else { } else {
this.queryParams.searchTime = this.yearValue; this.queryParams.searchTime = this.yearValue
} }
}, },
// //
search() { search() {
if (!this.queryParams.objId) { if (this.objArr.length === 0) {
this.$modal.msgError('请选择对象'); this.$modal.msgError('请选择对象')
return false; return false
} else {
this.queryParams.objId = this.objArr[this.objArr.length-1]
} }
if (!this.queryParams.type) { if (!this.queryParams.type) {
this.$modal.msgError('请选择时间维度'); this.$modal.msgError('请选择时间维度')
return false; return false
} }
if (!this.queryParams.searchTime) { if (!this.queryParams.searchTime) {
this.$modal.msgError('请选择时间'); this.$modal.msgError('请选择时间')
return false; return false
} }
if (this.queryParams.type === 3) { if (this.queryParams.type === 3) {
this.queryParams.searchTime = this.transformTime(this.yearMonth) + ''; this.queryParams.searchTime = this.transformTime(this.yearMonth) + ''
} else { } else {
this.queryParams.searchTime = this.transformYear(this.yearValue) + ''; this.queryParams.searchTime = this.transformYear(this.yearValue) + ''
} }
this.$emit('submit', this.queryParams); this.$emit('submit', this.queryParams)
}, },
exportData() { exportData() {
let name; let name
if (this.queryParams.objId) { if (this.queryParams.objId) {
name = this.getObjName(this.objList, this.queryParams.objId); name = this.getObjName(this.objList, this.queryParams.objId)
} else { } else {
this.$modal.msgWarning('对象不能为空'); this.$modal.msgWarning("对象不能为空")
return false; return false
} }
this.$emit('exportD', { name: name }); this.$emit('exportD', {name: name})
}, },
// name // name
getObjName(list, id) { getObjName(list, id) {
let _this = this
for (let i = 0; i < list.length; i++) { for (let i = 0; i < list.length; i++) {
let a = list[i]; let a = list[i]
if (a.id === id) { if (a.id === id) {
return a.name; return a.name
} else {
if (a.children && a.children.length > 0) {
let res = _this.getObjName(a.children, id)
if (res) {
return res
}
}
} }
} }
}, },
transformTime(timeStamp) { transformTime(timeStamp) {//
// let year = moment(timeStamp).format('YYYY')
let year = moment(timeStamp).format('YYYY'); let month = moment(timeStamp).format('MM')
let month = moment(timeStamp).format('MM'); let newData = moment(new Date(year,month,0)).format('YYYY-MM-DD') + ' 23:59:59'
let newData = let value = new Date(newData).getTime()
moment(new Date(year, month, 0)).format('YYYY-MM-DD') + ' 23:59:59'; return value
let value = new Date(newData).getTime();
return value;
}, },
transformYear(timeStamp) { transformYear(timeStamp) {//
// let year = moment(timeStamp).format('YYYY')
let year = moment(timeStamp).format('YYYY'); let newData = year+'-12-31 23:59:59'
let newData = year + '-12-31 23:59:59'; let value = new Date(newData).getTime()
let value = new Date(newData).getTime(); return value
return value; }
}, }
}, }
};
</script> </script>
<style lang='scss'> <style lang='scss'>
/* 级联选择器 */
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
display: none;
}
.demo-form-inline { .demo-form-inline {
.el-date-editor .el-range__icon { .el-date-editor .el-range__icon {
font-size: 16px; font-size: 16px;
color: #0b58ff; color: #0B58FF;
} }
.el-input__prefix .el-icon-date { .el-input__prefix .el-icon-date {
font-size: 16px; font-size: 16px;
color: #0b58ff; color: #0B58FF;
} }
} }
</style> </style>
@ -210,21 +189,17 @@ export default {
display: inline-block; display: inline-block;
width: 4px; width: 4px;
height: 16px; height: 16px;
background-color: #0b58ff; background-color: #0B58FF;
border-radius: 1px; border-radius: 1px;
margin-right: 8px; margin-right: 8px;
margin-top: 10px; margin-top: 10px;
} }
.el-form-item {
margin-right: 10px;
margin-bottom: 4px;
}
} }
.separateStyle { .separateStyle {
display: inline-block; display: inline-block;
width: 1px; width: 1px;
height: 24px; height: 24px;
background: #e8e8e8; background: #E8E8E8;
vertical-align: middle; vertical-align: middle;
} }
</style> </style>

View File

@ -1,36 +1,31 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-area <search-area @submit="getList" @exportD="exportData"/>
@submit="getList" <div v-show='chartData.length'>
@exportD="exportData" />
<div v-show="chartData.length">
<div class="chartTitle">同比分析图</div> <div class="chartTitle">同比分析图</div>
<div style="width: 100%"> <div style='width: 100%;height: 400px;'>
<line-chart <line-chart ref="analysisLineChart" :chartData="chartData"/>
ref="analysisLineChart"
:chartData="chartData" />
</div> </div>
<!-- 表格 --> <!-- 表格 -->
<base-table <base-table
:table-props="tableProps" :table-props="tableProps"
:table-data="list" :table-data="list"
:max-height="tableH" :max-height="tableH"
class="yoy-out-table" /> class="yoy-out-table"
/>
</div> </div>
<!-- 没有数据 --> <!-- 没有数据 -->
<div <div class="no-data-bg" v-show='!chartData.length'></div>
class="no-data-bg"
v-show="!chartData.length"></div>
</div> </div>
</template> </template>
<script> <script>
import { getYoy } from '@/api/analysis/energyAnalysis'; import { getYoy } from "@/api/analysis/energyAnalysis"
import subRate from './components/subRate.vue'; import subRate from "./components/subRate.vue"
import SearchArea from './components/searchArea'; import SearchArea from "./components/searchArea"
import LineChart from './components/lineChart'; import LineChart from "./components/lineChart"
import FileSaver from 'file-saver'; import FileSaver from "file-saver"
import * as XLSX from 'xlsx/xlsx.mjs'; import * as XLSX from 'xlsx/xlsx.mjs'
export default { export default {
name: 'YoyAnalysis', name: 'YoyAnalysis',
components: { SearchArea, LineChart }, components: { SearchArea, LineChart },
@ -39,103 +34,98 @@ export default {
chartData: [], chartData: [],
tableProps: [], tableProps: [],
list: [], list: [],
tableH: this.tableHeight(250) / 2, tableH: this.tableHeight(640)
}; }
}, },
mounted() { mounted() {
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.tableH = this.tableHeight(250) / 2; this.tableH = this.tableHeight(640)
}); })
}, },
methods: { methods: {
getList(params) { getList(params) {
getYoy({ ...params }).then((res) => { getYoy({ ...params }).then((res) => {
if (res.code === 0 && res.data) { if (res.code === 0 && res.data) {
this.getTableList(res.data); this.getTableList(res.data)
} else { } else {
this.chartData = []; this.chartData = []
this.list = []; this.list = []
} }
}); })
}, },
getTableList(arr) { getTableList(arr) {
let data = arr.data; let data = arr.data
let nameData = arr.nameData; let nameData = arr.nameData
let tempX = []; let tempX = []
data[0].data.map((item) => { data[0].data.map((item) => {
let obj = {}; let obj = {}
obj.prop = item.dynamicName; obj.prop = item.dynamicName
obj.label = item.dynamicName; obj.label = item.dynamicName
obj.id = item.id; obj.id = item.id
obj.children = []; obj.children = []
tempX.push(obj); tempX.push(obj)
}); })
for (let i = 0; i < nameData.length; i++) { for (let i = 0; i < nameData.length; i++) {
for (let j = 0; j < tempX.length; j++) { for (let j = 0; j < tempX.length; j++) {
if (tempX[j].id === nameData[i].parentId) { if (tempX[j].id === nameData[i].parentId) {
let obj = {}; let obj = {}
obj.prop = tempX[j].prop + '_' + nameData[i].name; obj.prop = tempX[j].prop + '_' + nameData[i].name
obj.label = nameData[i].name; obj.label = nameData[i].name
if (obj.label.indexOf('同比')!= -1) { if (obj.label.indexOf('同比')!= -1) {
obj.subcomponent = subRate; obj.subcomponent = subRate
} }
tempX[j].children.push(obj); tempX[j].children.push(obj)
} }
} }
} }
this.tableProps = [{ prop: 'time', label: '时间' }].concat(tempX); this.tableProps = [{prop: 'time',label: '时间'}].concat(tempX)
console.log(this.tableProps); console.log(this.tableProps)
// //
this.list = []; this.list = []
for (let k = 0; k < data.length; k++) { for (let k = 0; k < data.length; k++) {
let obj = {}; let obj = {}
obj.time = data[k].time; obj.time = data[k].time
let arr1 = data[k].data; let arr1 = data[k].data
obj.type = []; obj.type = []
for (let q = 0; q < arr1.length; q++) { for (let q = 0; q < arr1.length; q++) {
let name = arr1[q].dynamicName; let name = arr1[q].dynamicName
obj.type.push(name); obj.type.push(name)
let arr2 = arr1[q].children; let arr2 = arr1[q].children
for (let p = 0; p < arr2.length; p++) { for (let p = 0; p < arr2.length; p++) {
let prop = name + '_' + arr2[p].dynamicName; let prop = name + '_' + arr2[p].dynamicName
obj[prop] = arr2[p].dynamicValue; obj[prop] = arr2[p].dynamicValue
} }
} }
this.list.push(obj); this.list.push(obj)
} }
this.chartData = this.list; this.chartData = this.list
}, },
exportData(val) { exportData(val) {
if (this.list.length > 0) { if (this.list.length > 0) {
var wb = XLSX.utils.table_to_book( var wb = XLSX.utils.table_to_book(document.querySelector(".yoy-out-table"))
document.querySelector('.yoy-out-table') let fileName = val.name + "同比分析.xlsx"
);
let fileName = val.name + '同比分析.xlsx';
var wbout = XLSX.write(wb, { var wbout = XLSX.write(wb, {
bookType: 'xlsx', bookType: "xlsx",
bookSST: true, bookSST: true,
type: 'array', type: "array"
}); })
try { try {
FileSaver.saveAs( FileSaver.saveAs(
new Blob([wbout], { type: 'application/octet-stream' }), new Blob([wbout], { type: "application/octet-stream" }),
fileName fileName
); )
} catch (e) { } catch (e) {
if (typeof console !== 'undefined') console.log(e, wbout); if (typeof console !== "undefined") console.log(e, wbout);
} }
return wbout; return wbout
} else { } else {
this.$modal.msgWarning('暂无数据导出'); this.$modal.msgWarning("暂无数据导出")
}
}
}
} }
},
},
};
</script> </script>
<style lang='scss' scoped> <style lang='scss' scoped>
.yoy-out-table {
margin-top: 20px;
}
.chartTitle { .chartTitle {
font-size: 16px; font-size: 16px;
color: #000; color: #000;
@ -145,7 +135,7 @@ export default {
display: inline-block; display: inline-block;
width: 4px; width: 4px;
height: 18px; height: 18px;
background-color: #0b58ff; background-color: #0B58FF;
border-radius: 1px; border-radius: 1px;
margin-right: 8px; margin-right: 8px;
vertical-align: bottom; vertical-align: bottom;

View File

@ -1,84 +1,63 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-bar <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
:formConfigs="formConfig"
ref="searchBarForm"
@headBtnClick="buttonClick" />
<!-- 列表 --> <!-- 列表 -->
<base-table <base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list"
:page="queryParams.pageNo"
:limit="queryParams.pageSize"
:table-props="tableProps"
:table-data="list"
:max-height="tableH"> :max-height="tableH">
<method-btn <method-btn v-if="tableBtn.length" slot="handleBtn" :width="80" label="操作" :method-list="tableBtn"
v-if="tableBtn.length"
slot="handleBtn"
:width="80"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
</base-table> </base-table>
<pagination <pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total"
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList" /> @pagination="getList" />
<!-- 新增 --> <!-- 新增 -->
<base-dialog <base-dialog :dialogTitle="addOrEditTitle" :dialogVisible="centervisible" @cancel="handleCancel"
:dialogTitle="addOrEditTitle" @confirm="handleConfirm" :before-close="handleCancel">
:dialogVisible="centervisible" <energy-plc-add ref="energyPlc" @successSubmit="successSubmit" />
@cancel="handleCancel"
@confirm="handleConfirm"
:before-close="handleCancel">
<energy-plc-add
ref="energyPlc"
@successSubmit="successSubmit" />
</base-dialog> </base-dialog>
</div> </div>
</template> </template>
<script> <script>
import { getEnergyPlcPage, deleteEnergyPlc } from '@/api/base/energyPlc'; import { getEnergyPlcPage, deleteEnergyPlc } from "@/api/base/energyPlc";
import EnergyPlcAdd from './components/energyPlcAdd.vue'; // import { publicFormatter } from '@/utils/dict'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin'; import EnergyPlcAdd from './components/energyPlcAdd.vue'
const tableProps = [ const tableProps = [
{ {
prop: 'plcTableName', prop: 'plcTableName',
label: '关联表名', label: '关联表名',
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'code', prop: 'code',
label: '关联表编码', label: '关联表编码',
minWidth: 150, minWidth: 150,
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'name', prop: 'name',
label: '标识名', label: '标识名',
minWidth: 150, minWidth: 150,
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'enName', prop: 'enName',
label: '英文标识名', label: '英文标识名'
}, },
{ {
prop: 'collection', prop: 'collection',
label: '是否采集', label: '是否采集'
}, },
{ {
prop: 'description', prop: 'description',
label: '描述', label: '描述',
showOverflowtooltip: true, showOverflowtooltip: true
}, }
]; ]
export default { export default {
name: 'EnergyPlc', name: "EnergyPlc",
components: { EnergyPlcAdd }, components: { EnergyPlcAdd },
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
@ -86,61 +65,65 @@ export default {
type: 'input', type: 'input',
label: '标识名', label: '标识名',
placeholder: '标识名', placeholder: '标识名',
param: 'name', param: 'name'
}, },
{ {
type: this.$auth.hasPermi('base:energy-plc:query') ? 'button' : '', type: 'button',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary'
}, },
{ {
type: this.$auth.hasPermi('base:energy-plc:create') ? 'separate' : '', type: 'separate'
}, },
{ {
type: this.$auth.hasPermi('base:energy-plc:create') ? 'button' : '', type: this.$auth.hasPermi('base:energy-plc:create') ? 'button' : '',
btnName: '新增', btnName: '新增',
name: 'add', name: 'add',
color: 'success', color: 'success',
plain: true, plain: true
}, }
], ],
tableProps, tableProps,
tableBtn: [ tableBtn: [
this.$auth.hasPermi('base:energy-plc:update') this.$auth.hasPermi('base:energy-plc:update')
? { ? {
type: 'edit', type: 'edit',
btnName: '编辑', btnName: '编辑'
} }
: undefined, : undefined,
this.$auth.hasPermi('base:energy-plc:delete') this.$auth.hasPermi('base:energy-plc:delete')
? { ? {
type: 'delete', type: 'delete',
btnName: '删除', btnName: '删除'
} }
: undefined, : undefined
].filter((v) => v), ].filter((v) => v),
tableH: this.tableHeight(260),
collectionList: [ collectionList: [
{ value: 0, label: '否' }, { value: 0, label: '否' },
{ value: 1, label: '是' }, { value: 1, label: '是' }
], ],
// //
total: 0, total: 0,
// //
list: [], list: [],
// //
addOrEditTitle: '', addOrEditTitle: "",
// //
centervisible: false, centervisible: false,
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 20,
name: null, name: null
}, }
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
this.getList(); this.getList();
}, },
methods: { methods: {
@ -148,72 +131,67 @@ export default {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.queryParams.name = val.name; this.queryParams.name = val.name
this.getList(); this.getList()
break; break
default: default:
this.addOrEditTitle = '新增'; this.addOrEditTitle = '新增'
this.centervisible = true; this.centervisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyPlc.init(); this.$refs.energyPlc.init()
}); })
} }
}, },
/** 查询列表 */ /** 查询列表 */
getList() { getList() {
getEnergyPlcPage(this.queryParams).then((response) => { getEnergyPlcPage(this.queryParams).then(response => {
let arr = response.data.list || []; let arr = response.data.list || [];
arr && arr && arr.map(item => {
arr.map((item) => { this.collectionList.map(i => {
this.collectionList.map((i) => {
if (item.collection === i.value) { if (item.collection === i.value) {
item.collection = i.label; item.collection = i.label
} }
}); })
}); })
this.list = arr; this.list = arr
this.total = response.data.total; this.total = response.data.total;
}); });
}, },
handleClick(val) { handleClick(val) {
switch (val.type) { switch (val.type) {
case 'edit': case 'edit':
this.addOrEditTitle = '编辑'; this.addOrEditTitle = '编辑'
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyPlc.init(val.data.id); this.$refs.energyPlc.init(val.data.id)
}); })
this.centervisible = true; this.centervisible = true
break; break
default: default:
this.handleDelete(val.data); this.handleDelete(val.data)
} }
}, },
handleCancel() { handleCancel() {
this.$refs.energyPlc.formClear(); this.$refs.energyPlc.formClear()
this.centervisible = false; this.centervisible = false
this.addOrEditTitle = ''; this.addOrEditTitle = ''
}, },
handleConfirm() { handleConfirm() {
this.$refs.energyPlc.submitForm(); this.$refs.energyPlc.submitForm()
}, },
successSubmit() { successSubmit() {
this.handleCancel(); this.handleCancel()
this.getList(); this.getList()
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
this.$modal this.$modal.confirm('是否确认删除关联表名为"' + row.name + '"的数据项?').then(function () {
.confirm('是否确认删除关联表名为"' + row.name + '"的数据项?')
.then(function () {
return deleteEnergyPlc(row.id); return deleteEnergyPlc(row.id);
}) }).then(() => {
.then(() => {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.getList(); this.getList();
this.$modal.msgSuccess('删除成功'); this.$modal.msgSuccess("删除成功");
}) }).catch(() => { });
.catch(() => {}); }
}, }
},
}; };
</script> </script>

View File

@ -1,50 +1,36 @@
<template> <template>
<el-form <el-form ref="form" :rules="rules" label-width="100px" :model="form">
ref="form" <el-form-item label="关联表名" prop="plcId">
:rules="rules" <el-select v-model="form.plcId" placeholder="请选择" style="width: 100%;" filterable>
label-width="100px"
:model="form">
<el-form-item
label="关联表名"
prop="plcId">
<el-select
v-model="form.plcId"
placeholder="请选择"
style="width: 100%"
filterable>
<el-option <el-option
v-for="item in plcList" v-for="item in plcList"
:key="item.id" :key="item.id"
:label="item.plcTableName" :label="item.plcTableName"
:value="item.id"></el-option> :value="item.id">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item <el-form-item label="对象" prop="bindObjectId">
label="对象"
prop="bindObjectId">
<el-cascader <el-cascader
style="width: 100%" style='width: 100%;'
v-model="objIds" v-model="objIds"
:options="objList" :options="objList"
:props="{ checkStrictly: true, value: 'id', label: 'name' }" :props="{ checkStrictly: true, value: 'id', label: 'name' }"
popper-class="cascaderParent"
@change="selectObj" @change="selectObj"
clearable></el-cascader> clearable></el-cascader>
</el-form-item> </el-form-item>
</el-form> </el-form>
</template> </template>
<script> <script>
import { import { getEnergyPlcConnect, updateEnergyPlcConnect, createEnergyPlcConnect } from '@/api/base/energyPlcConnect'
getEnergyPlcConnect, import { getEnergyPlcAll } from '@/api/base/energyPlc'
updateEnergyPlcConnect,
createEnergyPlcConnect,
} from '@/api/base/energyPlcConnect';
import { getEnergyPlcAll } from '@/api/base/energyPlc';
export default { export default {
name: 'EnergyPlcConnectAdd', name: 'EnergyPlcConnectAdd',
props: { props: {
objList: { objList: {
type: Array, type: Array,
default: () => [], default: () => []
}, },
}, },
data() { data() {
@ -53,70 +39,63 @@ export default {
id: '', id: '',
plcId: '', plcId: '',
bindObjectId: '', bindObjectId: '',
bindObjectType: '', bindObjectType: ''
}, },
objIds: [],// objIds: [],//
plcList: [], plcList: [],
isEdit: false, // isEdit: false, //
rules: { rules: {
plcId: [ plcId: [{ required: true, message: '关联表名不能为空', trigger: 'change' }],
{ required: true, message: '关联表名不能为空', trigger: 'change' }, bindObjectId: [{ required: true, message: '对象不能为空', trigger: 'change' }]
], }
bindObjectId: [ }
{ required: true, message: '对象不能为空', trigger: 'change' },
],
},
};
}, },
methods: { methods: {
init(id) { init(id) {
getEnergyPlcAll().then((res) => { getEnergyPlcAll().then((res) => {
this.plcList = res.data || []; this.plcList = res.data || []
}); })
if (id) { if (id) {
this.isEdit = true; this.isEdit = true
this.form.id = id; this.form.id = id
getEnergyPlcConnect( id ).then((res) => { getEnergyPlcConnect( id ).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.form = res.data; this.form = res.data
this.objIds = this.changeDetSelect( this.objIds = this.changeDetSelect(this.form.bindObjectId, this.objList)
this.form.bindObjectId,
this.objList
);
} }
}); })
} else { } else {
this.isEdit = false; this.isEdit = false
this.form.id = ''; this.form.id = ''
} }
}, },
// //
changeDetSelect(key, treeData) { changeDetSelect(key, treeData) {
let arr = []; // let arr = [] //
let returnArr = []; // let returnArr = [] //
let depth = 0; // let depth = 0 //
// //
function childrenEach(childrendData, depthN) { function childrenEach(childrendData, depthN) {
for (var j = 0; j < childrendData.length; j++) { for (var j = 0; j < childrendData.length; j++) {
depth = depthN; depth = depthN
arr[depthN] = childrendData[j].id; arr[depthN] = childrendData[j].id
if (childrendData[j].id == key) { if (childrendData[j].id == key) {
returnArr = arr.slice(0, depthN + 1); returnArr = arr.slice(0, depthN + 1)
break; break
} else { } else {
if (childrendData[j].children) { if (childrendData[j].children) {
depth++; depth++
childrenEach(childrendData[j].children, depth); childrenEach(childrendData[j].children, depth)
} }
} }
} }
return returnArr; return returnArr
} }
return childrenEach(treeData, depth); return childrenEach(treeData, depth)
}, },
selectObj(val) { selectObj(val) {
this.form.bindObjectId = val[val.length - 1]; this.form.bindObjectId = val[val.length-1]
this.form.bindObjectType = val.length - 1; this.form.bindObjectType = val.length-1
}, },
submitForm() { submitForm() {
this.$refs['form'].validate((valid) => { this.$refs['form'].validate((valid) => {
@ -125,31 +104,36 @@ export default {
// //
updateEnergyPlcConnect({...this.form}).then((res) => { updateEnergyPlcConnect({...this.form}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} else { } else {
createEnergyPlcConnect({...this.form}).then((res) => { createEnergyPlcConnect({...this.form}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} }
} else { } else {
return false; return false
} }
}); })
}, },
formClear() { formClear() {
this.form.id = ''; this.form.id = ''
this.form.plcId = ''; this.form.plcId = ''
this.form.bindObjectId = ''; this.form.bindObjectId = ''
this.form.bindObjectType = ''; this.form.bindObjectType = ''
this.objIds = []; this.objIds = []
this.isEdit = false; this.isEdit = false
}, }
}, }
}; }
</script> </script>
<style>
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
display: none;
}
</style>

View File

@ -1,37 +1,16 @@
<template> <template>
<div> <div>
<el-drawer <el-drawer :title="drawerTitle" :visible.sync="visible" size="70%" @close='closeD' :show-close='false'>
:title="drawerTitle"
:visible.sync="visible"
size="70%"
@close="closeD"
:show-close="false">
<div class="box"> <div class="box">
<el-form :inline="true"> <el-form :inline="true">
<el-form-item label="关联表名"> <el-form-item label="关联表名">
<el-input <el-input v-model="plcTableName" size='small' readonly></el-input>
v-model="plcTableName"
size="small"
readonly
style="width: 250px"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="对象"> <el-form-item label="对象">
<el-input <el-input v-model="objName" size='small' readonly></el-input>
v-model="objName"
size="small"
readonly
style="width: 250px"></el-input>
</el-form-item> </el-form-item>
<el-form-item <el-form-item v-if="showBtn">
v-if="showBtn" <el-button type="success" size='small' plain @click="addNew">新增</el-button>
v-hasPermi="['base:energy-plc-param:create']">
<el-button
type="success"
size="small"
plain
@click="addNew">
新增
</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
<base-table <base-table
@ -39,20 +18,23 @@
:limit="queryParams.pageSize" :limit="queryParams.pageSize"
:table-props="tableProps" :table-props="tableProps"
:table-data="tableData" :table-data="tableData"
:max-height="tableH"> :max-height="tableH"
>
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:width="100" :width="100"
label="操作" label="操作"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick"
/>
</base-table> </base-table>
<pagination <pagination
:page.sync="queryParams.pageNo" :page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.pageSize"
:total="total" :total="total"
@pagination="getList" /> @pagination="getList"
/>
</div> </div>
</el-drawer> </el-drawer>
<!-- 新增 --> <!-- 新增 -->
@ -61,48 +43,43 @@
:dialogVisible="centervisible" :dialogVisible="centervisible"
@cancel="handleCancel" @cancel="handleCancel"
@confirm="handleConfirm" @confirm="handleConfirm"
:before-close="handleCancel"> :before-close="handleCancel"
<energy-plc-param-add >
ref="energyPlcParam" <energy-plc-param-add ref="energyPlcParam" @successSubmit="successSubmit" />
@successSubmit="successSubmit" />
</base-dialog> </base-dialog>
</div> </div>
</template> </template>
<script> <script>
import { import { getEnergyPlcParamPage, deleteEnergyPlcParam } from '@/api/base/energyPlcParam'
getEnergyPlcParamPage, import EnergyPlcParamAdd from './energyPlcParamAdd'
deleteEnergyPlcParam, import { publicFormatter } from '@/utils/dict'
} from '@/api/base/energyPlcParam';
import EnergyPlcParamAdd from './energyPlcParamAdd';
import { publicFormatter } from '@/utils/dict';
const tableProps = [ const tableProps = [
{ {
prop: 'typeId', prop: 'typeId',
label: '能源类型', label: '能源类型'
filter: publicFormatter('energy_type'),
}, },
{ {
prop: 'plcParamName', prop: 'plcParamName',
label: '参数列名', label: '参数列名'
}, },
{ {
prop: 'name', prop: 'name',
label: '参数名称', label: '参数名称'
}, },
{ {
prop: 'unit', prop: 'unit',
label: '单位', label: '单位',
filter: publicFormatter('unit_dict'), filter: publicFormatter('energy_unit')
}, },
{ {
prop: 'collection', prop: 'collection',
label: '是否采集', label: '是否采集'
}, },
{ {
prop: 'description', prop: 'description',
label: '描述', label: '描述'
}, }
]; ]
export default { export default {
name: 'EnergyPlcParam', name: 'EnergyPlcParam',
props: { props: {
@ -110,9 +87,9 @@ export default {
type: Array, type: Array,
required: true, required: true,
default: () => { default: () => {
return []; return []
}, }
}, }
}, },
data() { data() {
return { return {
@ -126,136 +103,121 @@ export default {
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 30, pageSize: 30,
connectId: null, connectId: null
}, },
plcTableName: '', plcTableName: '',
objName: '', objName: '',
// //
addOrEditTitle: '', addOrEditTitle: "",
// //
centervisible: false, centervisible: false,
collectionList: [ collectionList: [
{value: 0,label: '否'}, {value: 0,label: '否'},
{ value: 1, label: '是' }, {value: 1,label: '是'}
], ],
showBtn: true, showBtn: true
}; }
}, },
components: { EnergyPlcParamAdd }, components: { EnergyPlcParamAdd },
created() { created() {
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.tableH = this.tableHeight(115); this.tableH = this.tableHeight(115)
}); })
}, },
methods: { methods: {
init(data,title) { init(data,title) {
this.visible = true; this.visible = true
this.queryParams.connectId = data.id; this.queryParams.connectId = data.id
this.plcTableName = data.plcTableName; this.plcTableName = data.plcTableName
this.objName = data.objName; this.objName = data.objName
this.getList(); this.getList()
if (title === 'detail') { if (title === 'detail') {
this.drawerTitle = '查看参数'; this.drawerTitle = '查看参数'
this.showBtn = false; this.showBtn = false
this.tableBtn = []; this.tableBtn = []
} else { } else {
this.drawerTitle = '参数绑定'; this.drawerTitle = '参数绑定'
this.showBtn = true; this.showBtn = true
this.tableBtn = [ this.tableBtn = [
this.$auth.hasPermi('base:energy-plc-param:update') {
? {
type: 'edit', type: 'edit',
btnName: '编辑', btnName: '编辑'
} },
: undefined, {
this.$auth.hasPermi('base:energy-plc-param:delete')
? {
type: 'delete', type: 'delete',
btnName: '删除', btnName: '删除'
} }
: undefined, ]
].filter((v) => v);
} }
}, },
getList() { getList() {
getEnergyPlcParamPage({...this.queryParams}).then((res) => { getEnergyPlcParamPage({...this.queryParams}).then((res) => {
let arr = res.data.list || []; let arr = res.data.list || []
arr && arr&&arr.map(item => {
arr.map((item) => { this.collectionList.map(i => {
this.collectionList.map((i) => {
if (item.collection === i.value) { if (item.collection === i.value) {
item.collection = i.label; item.collection = i.label
} }
}); })
this.energyTypeList.map((j) => { this.energyTypeList.map(j => {
if (item.typeId === j.id) { if (item.typeId === j.id) {
item.typeId = j.name; item.typeId = j.name
} }
}); })
}); })
this.tableData = arr; this.tableData = arr
this.total = res.data.total; this.total = res.data.total;
}); })
}, },
// //
addNew() { addNew() {
this.addOrEditTitle = '新增'; this.addOrEditTitle = '新增'
this.centervisible = true; this.centervisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyPlcParam.init({ this.$refs.energyPlcParam.init({'connectId': this.queryParams.connectId, id: ''})
connectId: this.queryParams.connectId, })
id: '',
});
});
}, },
handleCancel() { handleCancel() {
this.$refs.energyPlcParam.formClear(); this.$refs.energyPlcParam.formClear()
this.centervisible = false; this.centervisible = false
this.addOrEditTitle = ''; this.addOrEditTitle = ''
}, },
handleConfirm() { handleConfirm() {
this.$refs.energyPlcParam.submitForm(); this.$refs.energyPlcParam.submitForm()
}, },
successSubmit() { successSubmit() {
this.handleCancel(); this.handleCancel()
this.getList(); this.getList()
}, },
handleClick(val) { handleClick(val) {
console.log(val); console.log(val)
switch (val.type) { switch (val.type) {
case 'edit': case 'edit':
this.addOrEditTitle = '编辑'; this.addOrEditTitle = '编辑'
this.centervisible = true; this.centervisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyPlcParam.init({ this.$refs.energyPlcParam.init({'connectId': this.queryParams.connectId, id: val.data.id})
connectId: this.queryParams.connectId, })
id: val.data.id, break
});
});
break;
default: default:
this.handleDelete(val.data); this.handleDelete(val.data)
} }
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
this.$modal this.$modal.confirm('是否确认删除参数列名为"' + row.plcParamName + '"的数据项?').then(function() {
.confirm('是否确认删除参数列名为"' + row.plcParamName + '"的数据项?')
.then(function () {
return deleteEnergyPlcParam(row.id); return deleteEnergyPlcParam(row.id);
}) }).then(() => {
.then(() => {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.getList(); this.getList();
this.$modal.msgSuccess('删除成功'); this.$modal.msgSuccess("删除成功");
}) }).catch(() => {});
.catch(() => {});
}, },
closeD() { closeD() {
this.$emit('closeDrawer'); this.$emit('closeDrawer')
}, }
}, }
}; }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.box { .box {

View File

@ -1,72 +1,51 @@
<template> <template>
<el-form <el-form ref="form" :rules="rules" label-width="100px" :model="form">
ref="form"
:rules="rules"
label-width="100px"
:model="form">
<el-row> <el-row>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="能源类型" prop="typeId">
label="能源类型" <el-select v-model="form.typeId" placeholder="请选择" style="width: 100%;" filterable>
prop="typeId">
<el-select
v-model="form.typeId"
placeholder="请选择"
style="width: 100%"
filterable>
<el-option <el-option
v-for="item in energyListType" v-for="item in energyListType"
:key="item.id" :key="item.id"
:label="item.labelName" :label="item.name"
:value="item.id"></el-option> :value="item.id">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="参数列名" prop="plcParamName">
label="参数列名"
prop="plcParamName">
<el-input v-model="form.plcParamName"></el-input> <el-input v-model="form.plcParamName"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="参数名称" prop="name">
label="参数名称"
prop="name">
<el-input v-model="form.name"></el-input> <el-input v-model="form.name"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="单位" prop="unit">
label="单位" <el-select v-model="form.unit" placeholder="请选择" style="width: 100%;">
prop="unit">
<el-select
v-model="form.unit"
placeholder="请选择"
style="width: 100%">
<el-option <el-option
v-for="item in getDictDatas(DICT_TYPE.UNIT_DICT)" v-for="item in getDictDatas(DICT_TYPE.ENERGY_UNIT)"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value"></el-option> :value="item.value">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="是否采集" prop="collection">
label="是否采集"
prop="collection">
<el-switch v-model="form.collection"></el-switch> <el-switch v-model="form.collection"></el-switch>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="描述" prop="description">
label="描述"
prop="description">
<el-input v-model="form.description"></el-input> <el-input v-model="form.description"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
@ -74,12 +53,8 @@
</el-form> </el-form>
</template> </template>
<script> <script>
import { import { getEnergyPlcParam, updateEnergyPlcParam, createEnergyPlcParam } from '@/api/base/energyPlcParam'
getEnergyPlcParam, import { getEnergyTypeListAll } from '@/api/base/energyType'
updateEnergyPlcParam,
createEnergyPlcParam,
} from '@/api/base/energyPlcParam';
import { getEnergyTypeListAll } from '@/api/base/energyType';
export default { export default {
name: 'EnergyPlcParamAdd', name: 'EnergyPlcParamAdd',
data() { data() {
@ -92,72 +67,66 @@ export default {
unit: '', unit: '',
description: '', description: '',
collection: true, collection: true,
connectId: '', connectId: ''
}, },
energyListType: [], energyListType: [],
isEdit: false, // isEdit: false, //
rules: { rules: {
typeId: [ typeId: [{ required: true, message: '能源类型不能为空', trigger: 'change' }],
{ required: true, message: '能源类型不能为空', trigger: 'change' }, plcParamName: [{ required: true, message: '参数列名不能为空', trigger: 'blur' }],
], name: [{ required: true, message: '参数名称不能为空', trigger: 'blur' }]
plcParamName: [ }
{ required: true, message: '参数列名不能为空', trigger: 'blur' }, }
],
name: [
{ required: true, message: '参数名称不能为空', trigger: 'blur' },
],
},
};
}, },
methods: { methods: {
init(param) { init(param) {
this.form.connectId = param.connectId; this.form.connectId = param.connectId
getEnergyTypeListAll().then((res) => { getEnergyTypeListAll().then((res) => {
this.energyListType = res.data || []; this.energyListType = res.data || []
}); })
if (param.id) { if (param.id) {
this.isEdit = true; this.isEdit = true
this.form.id = param.id; this.form.id = param.id
getEnergyPlcParam(this.form.id).then((res) => { getEnergyPlcParam(this.form.id).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.form = res.data; this.form = res.data
this.form.collection = this.form.collection === 0 ? false : true; this.form.collection = this.form.collection === 0 ? false : true
} }
}); })
} else { } else {
this.isEdit = false; this.isEdit = false
this.form.id = ''; this.form.id = ''
} }
}, },
submitForm() { submitForm() {
this.$refs['form'].validate((valid) => { this.$refs['form'].validate((valid) => {
if (valid) { if (valid) {
this.form.collection = this.form.collection === false ? 0 : 1; this.form.collection = this.form.collection === false ? 0 : 1
if (this.isEdit) { if (this.isEdit) {
// //
updateEnergyPlcParam({...this.form}).then((res) => { updateEnergyPlcParam({...this.form}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} else { } else {
createEnergyPlcParam({...this.form}).then((res) => { createEnergyPlcParam({...this.form}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} }
} else { } else {
return false; return false
} }
}); })
}, },
formClear() { formClear() {
this.$refs.form.resetFields(); this.$refs.form.resetFields()
this.isEdit = false; this.isEdit = false
}, }
}, }
}; }
</script> </script>

View File

@ -1,102 +1,68 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-bar <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
:formConfigs="formConfig"
ref="searchBarForm"
@headBtnClick="buttonClick" />
<!-- 列表 --> <!-- 列表 -->
<base-table <base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list"
:page="queryParams.pageNo"
:limit="queryParams.pageSize"
:table-props="tableProps"
:table-data="list"
:max-height="tableH"> :max-height="tableH">
<method-btn <method-btn v-if="tableBtn.length" slot="handleBtn" :width="160" label="操作" :method-list="tableBtn"
v-if="tableBtn.length"
slot="handleBtn"
:width="160"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
</base-table> </base-table>
<pagination <pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total"
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList" /> @pagination="getList" />
<!-- 新增 --> <!-- 新增 -->
<base-dialog <base-dialog :dialogTitle="addOrEditTitle" :dialogVisible="centervisible" @cancel="handleCancel"
:dialogTitle="addOrEditTitle" @confirm="handleConfirm" :before-close="handleCancel" width='30%'>
:dialogVisible="centervisible" <energy-plc-connect-add ref="energyPlcConnect" :objList="objList" @successSubmit="successSubmit" />
@cancel="handleCancel"
@confirm="handleConfirm"
:before-close="handleCancel"
width="30%">
<energy-plc-connect-add
ref="energyPlcConnect"
:objList="objList"
@successSubmit="successSubmit" />
</base-dialog> </base-dialog>
<!-- 参数绑定/查看 --> <!-- 参数绑定/查看 -->
<energy-plc-param <energy-plc-param v-if="paramVisible" ref="plcParam" @closeDrawer="closeDrawer"
v-if="paramVisible"
ref="plcParam"
@closeDrawer="closeDrawer"
:energyTypeList="energyTypeList"></energy-plc-param> :energyTypeList="energyTypeList"></energy-plc-param>
</div> </div>
</template> </template>
<script> <script>
import { import { getEnergyPlcConnectPage, deleteEnergyPlcConnect } from "@/api/base/energyPlcConnect";
getEnergyPlcConnectPage,
deleteEnergyPlcConnect,
} from '@/api/base/energyPlcConnect';
// import { publicFormatter } from '@/utils/dict' // import { publicFormatter } from '@/utils/dict'
import { getTree } from '@/api/analysis/energyAnalysis'; import { getTree } from '@/api/base/factory'
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getEnergyTypeListAll } from '@/api/base/energyType'
import EnergyPlcConnectAdd from './components/energyPlcConnectAdd'; import EnergyPlcConnectAdd from './components/energyPlcConnectAdd'
import EnergyPlcParam from './components/energyPlcParam'; import EnergyPlcParam from './components/energyPlcParam'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'objName', prop: 'objName',
label: '对象', label: '对象'
minWidth: 130,
showOverflowtooltip: true,
}, },
{ {
prop: 'objCode', prop: 'objCode',
label: '对象编码', label: '对象编码',
minWidth: 150, showOverflowtooltip: true
showOverflowtooltip: true,
}, },
{ {
prop: 'plcTableName', prop: 'plcTableName',
label: '关联表名', label: '关联表名'
}, },
{ {
prop: 'plcTableCode', prop: 'plcTableCode',
label: '关联表编码', label: '关联表编码',
minWidth: 150, minWidth: 150,
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'cnName', prop: 'cnName',
label: '标识名', label: '标识名',
minWidth: 150, minWidth: 150,
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'varNum', prop: 'varNum',
label: '绑定参数数量', label: '绑定参数数量'
width: 110, }
}, ]
];
export default { export default {
name: 'EnergyPlcConnect', name: "EnergyPlcConnect",
components: { EnergyPlcConnectAdd, EnergyPlcParam }, components: { EnergyPlcConnectAdd, EnergyPlcParam },
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
@ -104,181 +70,167 @@ export default {
type: 'input', type: 'input',
label: '标识名', label: '标识名',
placeholder: '标识名', placeholder: '标识名',
param: 'cnName', param: 'cnName'
}, },
{ {
type: this.$auth.hasPermi('base:energy-plc-connect:query') type: 'button',
? 'button'
: '',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary'
}, },
{ {
type: this.$auth.hasPermi('base:energy-plc-connect:create') type: 'separate'
? 'separate'
: '',
}, },
{ {
type: this.$auth.hasPermi('base:energy-plc-connect:create') type: this.$auth.hasPermi('base:energy-plc-connect:create') ? 'button' : '',
? 'button'
: '',
btnName: '新增', btnName: '新增',
name: 'add', name: 'add',
color: 'success', color: 'success',
plain: true, plain: true
}, }
], ],
tableProps, tableProps,
tableBtn: [ tableBtn: [
this.$auth.hasPermiAnd([ this.$auth.hasPermi('base:energy-plc-connect:bind')
'base:energy-plc-param:query',
'base:energy-type:query',
])
? { ? {
type: 'connect', type: 'connect',
btnName: '绑定', btnName: '绑定'
} }
: undefined, : undefined,
this.$auth.hasPermi('base:energy-plc-param:query') {
? {
type: 'detail', type: 'detail',
btnName: '详情', btnName: '详情'
} },
: undefined, this.$auth.hasPermi('base:energy-plc-connect:update')
this.$auth.hasPermiAnd([
'base:energy-plc-connect:update',
'base:energy-plc-connect:query',
])
? { ? {
type: 'edit', type: 'edit',
btnName: '编辑', btnName: '编辑'
} }
: undefined, : undefined,
this.$auth.hasPermi('base:energy-plc-connect:delete') this.$auth.hasPermi('base:energy-plc-connect:delete')
? { ? {
type: 'delete', type: 'delete',
btnName: '删除', btnName: '删除'
} }
: undefined, : undefined
].filter((v) => v), ].filter((v) => v),
tableH: this.tableHeight(260),
// //
total: 0, total: 0,
// //
list: [], list: [],
// //
addOrEditTitle: '', addOrEditTitle: "",
// //
centervisible: false, centervisible: false,
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 20,
cnName: null, cnName: null
}, },
paramVisible: false, paramVisible: false,
energyTypeList: [], energyTypeList: [],
objList: [], objList: []
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
this.getList(); this.getList();
}, },
mounted() { mounted() {
// //
this.getEnergyTypeList(); this.getEnergyTypeList()
// //
this.getObjTree(); this.getObjTree()
}, },
methods: { methods: {
buttonClick(val) { buttonClick(val) {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.queryParams.cnName = val.cnName; this.queryParams.cnName = val.cnName
this.getList(); this.getList()
break; break
default: default:
this.addOrEditTitle = '新增'; this.addOrEditTitle = '新增'
this.centervisible = true; this.centervisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyPlcConnect.init(); this.$refs.energyPlcConnect.init()
}); })
} }
}, },
/** 查询列表 */ /** 查询列表 */
getList() { getList() {
getEnergyPlcConnectPage(this.queryParams).then((response) => { getEnergyPlcConnectPage(this.queryParams).then(response => {
let arr = response.data.list || []; let arr = response.data.list || [];
this.list = arr; this.list = arr
this.total = response.data.total; this.total = response.data.total;
}); });
}, },
handleClick(val) { handleClick(val) {
console.log(val); console.log(val)
switch (val.type) { switch (val.type) {
case 'edit': case 'edit':
this.addOrEditTitle = '编辑'; this.addOrEditTitle = '编辑'
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyPlcConnect.init(val.data.id); this.$refs.energyPlcConnect.init(val.data.id)
}); })
this.centervisible = true; this.centervisible = true
break; break
case 'delete': case 'delete':
this.handleDelete(val.data); this.handleDelete(val.data)
break; break
case 'detail': case 'detail':
this.paramVisible = true; this.paramVisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.plcParam.init(val.data, 'detail'); this.$refs.plcParam.init(val.data, 'detail')
}); })
break; break
default: default:
this.paramVisible = true; this.paramVisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.plcParam.init(val.data, 'connect'); this.$refs.plcParam.init(val.data, 'connect')
}); })
} }
}, },
handleCancel() { handleCancel() {
this.$refs.energyPlcConnect.formClear(); this.$refs.energyPlcConnect.formClear()
this.centervisible = false; this.centervisible = false
this.addOrEditTitle = ''; this.addOrEditTitle = ''
}, },
handleConfirm() { handleConfirm() {
this.$refs.energyPlcConnect.submitForm(); this.$refs.energyPlcConnect.submitForm()
}, },
successSubmit() { successSubmit() {
this.handleCancel(); this.handleCancel()
this.getList(); this.getList()
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
this.$modal this.$modal.confirm('是否确认删除对象为"' + row.objName + '"的数据项?').then(function () {
.confirm('是否确认删除对象为"' + row.objName + '"的数据项?')
.then(function () {
return deleteEnergyPlcConnect(row.id); return deleteEnergyPlcConnect(row.id);
}) }).then(() => {
.then(() => {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.getList(); this.getList();
this.$modal.msgSuccess('删除成功'); this.$modal.msgSuccess("删除成功");
}) }).catch(() => { });
.catch(() => {});
}, },
closeDrawer() { closeDrawer() {
this.getList(); this.getList()
}, },
getEnergyTypeList() { getEnergyTypeList() {
getEnergyTypeListAll().then((res) => { getEnergyTypeListAll().then((res) => {
this.energyTypeList = res.data || []; this.energyTypeList = res.data || []
}); })
}, },
getObjTree() { getObjTree() {
getTree().then((res) => { getTree().then(res => {
this.objList = res.data || []; this.objList = res.data || []
}); })
}, }
}, }
}; };
</script> </script>

View File

@ -1,147 +0,0 @@
<template>
<div class="energyQuantityManualAddTable">
<el-table
:data="renderData"
border
style="width: 100%"
:header-cell-style="{
background: '#F2F4F9',
color: '#606266',
}">
<el-table-column
prop="tableName"
label="表名*">
<template slot-scope="scope">
<div class="tableInner">
<el-select
v-model="scope.row.tableName"
placeholder="请选择"
style="width: 100%"
@change="changeSelect(scope.row, 'tableName')">
<el-option
v-for="item in tableNameList"
:key="item.value"
:label="item.label"
:value="item.value"></el-option>
</el-select>
</div>
</template>
</el-table-column>
<el-table-column
prop="readingQuantity"
label="抄表数*">
<template slot-scope="scope">
<div class="tableInner">
<el-input-number
v-model="scope.row.readingQuantity"
:min="0"
:max="999999999"
style="width: 100%"
:controls="false"
@change="changeInput(scope.row, 'readingQuantity')"
:precision="2"></el-input-number>
</div>
</template>
</el-table-column>
</el-table>
<el-button
v-show="!isEdit"
class="addButton"
icon="el-icon-plus"
@click="emitButtonClick">
新增
</el-button>
</div>
</template>
<script>
export default {
name: 'AddTable',
props: {
tableData: {
type: Array,
required: true,
default: () => {
return [];
},
},
tableNameList: {
type: Array,
required: true,
default: () => {
return [];
},
},
isEdit: {
type: Boolean,
required: true,
default: () => {
return false;
},
},
},
data() {
return {};
},
computed: {
renderData() {
return this.tableData.map((item, index) => {
return {
...item,
_pageIndex: index + 1,
};
});
},
},
methods: {
emitButtonClick() {
this.$emit('emitButtonClick');
},
changeInput(val1, val2) {
val1.prop = val2;
this.$emit('emitFun', val1);
},
changeSelect(val1, val2) {
val1.prop = val2;
this.$emit('emitFun', val1);
},
},
};
</script>
<style lang='scss' scoped>
.energyQuantityManualAddTable {
.el-table .el-table__cell {
padding: 0;
height: 35px;
}
.addButton {
width: 100%;
height: 35px;
border-top: none;
color: #0b58ff;
border-color: #ebeef5;
border-radius: 0;
}
.addButton:hover {
color: #0b58ff;
border-color: #ebeef5;
background-color: #fff;
}
.addButton:focus {
border-color: #ebeef5;
background-color: #fff;
}
.tableInner .el-input__inner {
border: none;
padding: 0;
height: 33px;
}
}
</style>
<style lang='scss'>
.energyQuantityManualAddTable {
.el-table .el-table__cell {
padding: 0;
height: 35px;
}
}
</style>

View File

@ -0,0 +1,38 @@
<template>
<div class="tableInner">
<!-- <el-input v-model="list[itemProp]" @blur="changeInput" /> -->
<el-input-number v-model="list[itemProp]" @change="changeInput" :min="0" :max="999999999" style='width: 100%;' :controls='false' :precision='2'></el-input-number>
</div>
</template>
<script>
export default {
name: 'InputArea',
props: {
injectData: {
type: Object,
default: () => ({})
},
itemProp: {
type: String
}
},
data() {
return {
list: this.injectData
}
},
methods: {
changeInput() {
console.log(this.list)
this.$emit('emitData', this.list)
}
}
}
</script>
<style scoped>
.tableInner .el-input__inner {
border: none;
padding: 0;
height: 33px;
}
</style>

View File

@ -0,0 +1,44 @@
<template>
<div class="tableInner">
<el-select v-model="list[itemProp]" placeholder="请选择" style="width: 100%;" @change="changeSelect">
<el-option
v-for="item in getDictDatas(DICT_TYPE.TABLE_NAME)"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</div>
</template>
<script>
export default {
name: 'SelectArea',
props: {
injectData: {
type: Object,
default: () => ({})
},
itemProp: {
type: String
}
},
data() {
return {
list: this.injectData
}
},
methods: {
changeSelect() {
console.log(this.list)
this.$emit('emitData', this.list)
}
}
}
</script>
<style scoped>
.tableInner .el-input__inner {
border: none;
padding: 0;
height: 33px;
}
</style>

View File

@ -1,63 +1,47 @@
<template> <template>
<el-form <el-form ref="energyQuantityManualForm" :rules="rules" label-width="90px" :model="form">
ref="energyQuantityManualForm"
:rules="rules"
label-width="90px"
:model="form">
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="12"> <el-col :span='12'>
<el-form-item <el-form-item label="能源类型" prop="energyTypeId">
label="能源类型" <el-select v-model="form.energyTypeId" placeholder="请选择" style="width: 100%;" filterable>
prop="energyTypeId"> <el-option v-for="item in this.energyTypeList" :key="item.id" :label="item.name" :value="item.id">
<el-select </el-option>
v-model="form.energyTypeId"
placeholder="请选择"
style="width: 100%"
@change="selEnergyType"
filterable>
<el-option
v-for="item in this.energyTypeList"
:key="item.id"
:label="item.labelName"
:value="item.id"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span='12'>
<el-form-item <el-form-item label="抄表日期" prop="recordTime">
label="抄表日期" <el-date-picker v-model="form.recordTime" type="date" format="yyyy-MM-dd" value-format="timestamp"
prop="recordTime"> placeholder="选择日期" style="width: 100%;">
<el-date-picker </el-date-picker>
v-model="form.recordTime"
type="date"
format="yyyy-MM-dd"
value-format="timestamp"
placeholder="选择日期"
style="width: 100%"></el-date-picker>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="24"> <el-col :span='24'>
<add-table <base-table border :table-props="tableProps" :table-data="tableData" :add-button-show="addButtonShow"
:table-data="tableData" @emitFun="inputChange" @emitButtonClick="emitButtonClick" />
:table-name-list="tableNameList"
:isEdit="isEdit"
@emitFun="inputChange"
@emitButtonClick="emitButtonClick" />
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
</template> </template>
<script> <script>
import { import { energyQuantityManualCreate, energyQuantityManualUpdate, energyQuantityManualGet } from '@/api/base/energyQuantityManual'
energyQuantityManualCreate, import moment from 'moment'
energyQuantityManualUpdate, import InputArea from './InputArea'
energyQuantityManualGet, import SelectArea from './SelectArea'
} from '@/api/base/energyQuantityManual'; const tableProps = [
import moment from 'moment'; {
import AddTable from './AddTable'; prop: 'tableName',
import { energyTableGet } from '@/api/base/energyQuantityManual'; label: '表名*',
subcomponent: SelectArea
},
{
prop: 'readingQuantity',
label: '抄表数*',
subcomponent: InputArea
}
]
export default { export default {
name: 'EnergyQuantityManualAdd', name: 'EnergyQuantityManualAdd',
props: { props: {
@ -65,108 +49,78 @@ export default {
type: Array, type: Array,
required: true, required: true,
default: () => { default: () => {
return []; return []
}, }
}, }
}, },
data() { data() {
return { return {
tableProps,
tableData: [], tableData: [],
tableNameList: [], //list
addButtonShow: '新增', addButtonShow: '新增',
form: { form: {
id: '', id: '',
energyTypeId: '', energyTypeId: '',
unit: '', unit: '',
recordTime: '', recordTime: ''
}, },
rules: { rules: {
energyTypeId: [ energyTypeId: [{ required: true, message: '能源类型不能为空', trigger: 'change' }],
{ required: true, message: '能源类型不能为空', trigger: 'change' }, recordTime: [{ required: true, message: '抄表日期不能为空', trigger: 'change' }]
],
recordTime: [
{ required: true, message: '抄表日期不能为空', trigger: 'change' },
],
}, },
isEdit: false, isEdit: false
}; }
}, },
components: { AddTable },
methods: { methods: {
init(params) { init(params) {
this.form.recordTime = moment().valueOf(); this.form.recordTime = moment().valueOf()
if (params.type === 'add') { if (params.type === 'add') {
this.isEdit = false; this.isEdit = false
} else if (params.type === 'meterReading') { } else if (params.type === 'meterReading') {
this.isEdit = false; this.isEdit = false
this.form.energyTypeId = params.energyTypeId; this.form.energyTypeId = params.energyTypeId
this.selEnergyType(this.form.energyTypeId); let obj = {}
let obj = {}; obj.tableName = params.tableName + ''
obj.tableName = params.tableName + ''; obj.readingQuantity = 0
obj.readingQuantity = 0; this.tableData.push(obj)
this.tableData.push(obj);
} else { } else {
this.isEdit = true; this.isEdit = true
this.form.id = params.id; this.form.id = params.id
this.addButtonShow = ''; this.addButtonShow = ''
energyQuantityManualGet({ id: this.form.id }).then((res) => { energyQuantityManualGet({ id: this.form.id }).then(res => {
if (res.code === 0) { if (res.code === 0) {
this.form.energyTypeId = res.data.energyTypeId; this.form.energyTypeId = res.data.energyTypeId
this.selEnergyType(this.form.energyTypeId); this.form.recordTime = res.data.recordTime ? res.data.recordTime : null
this.form.recordTime = res.data.recordTime let obj = {}
? res.data.recordTime obj.tableName = res.data.tableName ? res.data.tableName + '' : ''
: null; obj.readingQuantity = res.data.readingQuantity
let obj = {}; this.tableData.push(obj)
obj.tableName = res.data.tableName ? res.data.tableName + '' : '';
obj.readingQuantity = res.data.readingQuantity;
this.tableData.push(obj);
} }
}); })
} }
}, },
inputChange(val) { inputChange(val) {
this.tableData[val._pageIndex - 1][val.prop] = val[val.prop]; this.tableData[val._pageIndex - 1][val.prop] = val[val.prop]
console.log(this.tableData);
}, },
emitButtonClick() { emitButtonClick() {
if (!this.form.energyTypeId) { let obj = {}
this.$modal.msgWarning('请先选择能源类型'); obj.tableName = ''
return false; obj.readingQuantity = 0
} this.tableData.push(obj)
let obj = {};
obj.tableName = '';
obj.readingQuantity = 0;
this.tableData.push(obj);
},
selEnergyType(id) {
//
this.tableData = [];
this.tableNameList = [];
energyTableGet({ energyTypeId: id }).then((res) => {
this.tableNameList = res.data.tableObjs || [];
if (this.tableNameList.length === 0) {
this.$modal.msgWarning(
'当前能源类型暂无配置表名,请先到《表名配置》页面配置'
);
}
});
}, },
submitForm() { submitForm() {
this.$refs['energyQuantityManualForm'].validate((valid) => { this.$refs['energyQuantityManualForm'].validate((valid) => {
if (valid) { if (valid) {
// //
if (this.tableData.length === 0) { if (this.tableData.length === 0) {
this.$modal.msgError('抄表数据不能为空'); this.$modal.msgError("抄表数据不能为空");
return false; return false
} else { } else {
for (let item of this.tableData) { for (let item of this.tableData) {
console.log(item); console.log(item)
if ( if (!item.tableName || (!item.readingQuantity && item.readingQuantity !== 0)) {
!item.tableName || this.$modal.msgError("抄表数据有空值,请检查");
(!item.readingQuantity && item.readingQuantity !== 0) return false
) {
this.$modal.msgError('抄表数据有空值,请检查');
return false;
} }
} }
} }
@ -177,37 +131,37 @@ export default {
energyTypeId: this.form.energyTypeId, energyTypeId: this.form.energyTypeId,
recordTime: this.form.recordTime, recordTime: this.form.recordTime,
tableName: this.tableData[0].tableName, tableName: this.tableData[0].tableName,
readingQuantity: this.tableData[0].readingQuantity, readingQuantity: this.tableData[0].readingQuantity
}).then((res) => { }).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} else { } else {
energyQuantityManualCreate({ energyQuantityManualCreate({
energyTypeId: this.form.energyTypeId, energyTypeId: this.form.energyTypeId,
recordTime: this.form.recordTime, recordTime: this.form.recordTime,
data: this.tableData, data: this.tableData
}).then((res) => { }).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} }
} else { } else {
return false; return false
} }
}); })
}, },
formClear() { formClear() {
this.$refs.energyQuantityManualForm.resetFields(); this.$refs.energyQuantityManualForm.resetFields()
this.form.unit = ''; this.form.unit = ''
this.isEdit = false; this.isEdit = false
this.addButtonShow = '新增'; this.addButtonShow = '新增'
this.tableData = []; this.tableData = []
}, }
}, }
}; }
</script> </script>

View File

@ -1,336 +1,271 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-bar <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
:formConfigs="formConfig"
ref="searchBarForm"
@headBtnClick="buttonClick" />
<!-- 列表 --> <!-- 列表 -->
<base-table <base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list"
:page="queryParams.pageNo" :max-height="tableH" @selection-change="selectChange">
:limit="queryParams.pageSize" <method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
:table-props="tableProps"
:table-data="list"
:max-height="tableH"
@selection-change="selectChange">
<method-btn
v-if="tableBtn.length"
slot="handleBtn"
:width="120"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick" />
</base-table> </base-table>
<pagination <pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total"
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList" /> @pagination="getList" />
<!-- 新增 --> <!-- 新增 -->
<base-dialog <base-dialog :dialogTitle="addOrEditTitle" :dialogVisible="centervisible" @cancel="handleCancel"
:dialogTitle="addOrEditTitle" @confirm="handleConfirm" :before-close="handleCancel">
:dialogVisible="centervisible" <energy-quantity-manual-add ref="energyQuantityManualAdd" :energyTypeList="energyTypeList"
@cancel="handleCancel"
@confirm="handleConfirm"
:before-close="handleCancel">
<energy-quantity-manual-add
ref="energyQuantityManualAdd"
:energyTypeList="energyTypeList"
@successSubmit="successSubmit" /> @successSubmit="successSubmit" />
</base-dialog> </base-dialog>
</div> </div>
</template> </template>
<script> <script>
import { import { energyQuantityManualPage, energyQuantityManualDelete, energyQuantityManualExport } from "@/api/base/energyQuantityManual"
energyQuantityManualPage, import { getEnergyTypeListAll } from "@/api/base/energyType"
energyQuantityManualDelete, import { publicFormatter } from '@/utils/dict'
energyQuantityManualExport, import { parseTime, parseTimeTable } from '@/utils/ruoyi'
} from '@/api/base/energyQuantityManual'; // import FileSaver from "file-saver"
import { getEnergyTypeListAll } from '@/api/base/energyType'; // import * as XLSX from 'xlsx/xlsx.mjs'
import { publicFormatter } from '@/utils/dict'; import EnergyQuantityManualAdd from './components/energyQuantityManualAdd'
import { parseTimeTable } from '@/utils/ruoyi'; import moment from 'moment'
import EnergyQuantityManualAdd from './components/energyQuantityManualAdd';
import moment from 'moment';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'energyTypeLabel', prop: 'energyType',
label: '能源类型', label: '能源类型',
minWidth: 110, minWidth: 110,
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'unit', prop: 'unit',
label: '单位', label: '单位',
filter: publicFormatter('unit_dict'), filter: publicFormatter('energy_unit'),
minWidth: 110, minWidth: 110
}, },
{ {
prop: 'tableName', prop: 'tableName',
label: '能源表名', label: '能源表名',
filter: publicFormatter('table_name'), filter: publicFormatter('table_name'),
minWidth: 110, minWidth: 110,
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'recordTime', prop: 'recordTime',
label: '抄表日期', label: '抄表日期',
filter: parseTimeTable('{y}-{m}-{d}'), filter: parseTimeTable('{y}-{m}-{d}'),
minWidth: 110, minWidth: 110
}, },
{ {
prop: 'readingQuantity', prop: 'readingQuantity',
label: '抄表值', label: '抄表值'
}, },
{ {
prop: 'useQty', prop: 'useQty',
label: '差值', label: '差值'
}, }
]; ]
export default { export default {
name: 'EnergyQuantityManual', name: "EnergyQuantityManual",
data() { data() {
return { return {
formConfig: [ formConfig: [
{ {
type: 'select', type: 'select',
label: '能源类型', label: '能源类型',
labelField: 'labelName',
selectOptions: [], selectOptions: [],
param: 'energyTypeId', param: 'energyTypeId',
filterable: true, filterable: true
}, },
{ {
type: 'datePicker', type: 'datePicker',
label: '抄表日期', label: '抄表日期',
dateType: 'daterange', dateType: 'daterange',
format: 'yyyy-MM-dd', format: 'yyyy-MM-dd',
valueFormat: 'timestamp', valueFormat: "timestamp",
rangeSeparator: '-', rangeSeparator: '-',
startPlaceholder: '开始时间', startPlaceholder: '开始时间',
endPlaceholder: '结束时间', endPlaceholder: '结束时间',
param: 'timeVal', param: 'timeVal',
defaultSelect: [], defaultSelect: []
}, },
{ {
type: this.$auth.hasPermi('base:energy-quantity-manual:query') type: 'button',
? 'button'
: '',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary'
}, },
{ {
type: this.$auth.hasPermiOr([ type: 'separate'
'base:energy-quantity-manual:export',
'base:energy-quantity-manual:create',
])
? 'separate'
: '',
}, },
{ {
type: this.$auth.hasPermi('base:energy-quantity-manual:export') type: this.$auth.hasPermi('base:energy-quantity-manual:export') ? 'button' : '',
? 'button'
: '',
btnName: '导出', btnName: '导出',
name: 'export', name: 'export',
color: 'primary', color: 'primary',
plain: true, plain: true
}, },
{ {
type: this.$auth.hasPermi('base:energy-quantity-manual:create') type: this.$auth.hasPermi('base:energy-quantity-manual:create') ? 'button' : '',
? 'button'
: '',
btnName: '新增', btnName: '新增',
name: 'add', name: 'add',
color: 'success', color: 'success',
plain: true, plain: true
}, }
], ],
tableProps, tableProps,
tableH: this.tableHeight(260),
// //
total: 0, total: 0,
// //
list: [], list: [],
tableBtn: [ tableBtn: [
this.$auth.hasPermiAnd([ this.$auth.hasPermi('base:energy-quantity-manual:create')
'base:energy-quantity-manual:query',
'base:energy-quantity-manual:create',
])
? { ? {
type: 'meterReading', type: 'meterReading',
btnName: '抄表', btnName: '抄表'
} }
: undefined, : undefined,
this.$auth.hasPermiAnd([ this.$auth.hasPermi('base:energy-quantity-manual:update')
'base:energy-quantity-manual:update',
'base:energy-quantity-manual:query',
])
? { ? {
type: 'edit', type: 'edit',
btnName: '编辑', btnName: '编辑'
} }
: undefined, : undefined,
this.$auth.hasPermi('base:energy-quantity-manual:delete') this.$auth.hasPermi('base:energy-quantity-manual:delete')
? { ? {
type: 'delete', type: 'delete',
btnName: '删除', btnName: '删除'
} }
: undefined, : undefined
].filter((v) => v), ].filter((v) => v),
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 20,
energyTypeId: '', energyTypeId: '',
recordTime: [], recordTime: []
}, },
energyTypeList: [], energyTypeList: [],
exportList: [], exportList: [],
addOrEditTitle: '', addOrEditTitle: '',
centervisible: false, centervisible: false,
}; };
}, },
components: { EnergyQuantityManualAdd }, components: { EnergyQuantityManualAdd },
mixins: [tableHeightMixin],
created() { created() {
let end = moment(moment().format('YYYY-MM-DD 23:59:59')).valueOf(); window.addEventListener('resize', () => {
let start = moment( this.tableH = this.tableHeight(260)
moment().subtract(7, 'days').format('YYYY-MM-DD 00:00:00') })
).valueOf(); let end = moment(moment().format('YYYY-MM-DD 23:59:59')).valueOf()
this.formConfig[1].defaultSelect = [start, end]; let start = moment(moment().subtract(7, 'days').format('YYYY-MM-DD 00:00:00')).valueOf()
this.queryParams.recordTime[0] = start; this.formConfig[1].defaultSelect = [start, end]
this.queryParams.recordTime[1] = end; this.queryParams.recordTime[0] = start
this.queryParams.recordTime[1] = end
this.getList(); this.getList();
this.getTypeList(); this.getTypeList()
}, },
methods: { methods: {
buttonClick(val) { buttonClick(val) {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.queryParams.energyTypeId = val.energyTypeId; this.queryParams.energyTypeId = val.energyTypeId
this.queryParams.recordTime[0] = val.timeVal this.queryParams.recordTime[0] = val.timeVal ? moment(moment(val.timeVal[0]).format('YYYY-MM-DD 00:00:00')).valueOf() : null
? moment(moment(val.timeVal[0]).format('YYYY-MM-DD 00:00:00')).valueOf() this.queryParams.recordTime[1] = val.timeVal ? moment(moment(val.timeVal[1]).format('YYYY-MM-DD 23:59:59')).valueOf() : null
: null;
this.queryParams.recordTime[1] = val.timeVal
? moment(moment(val.timeVal[1]).format('YYYY-MM-DD 23:59:59')).valueOf()
: null;
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.getList(); this.getList()
break; break
case 'add': case 'add':
this.addOrEditTitle = '新增'; this.addOrEditTitle = '新增'
this.centervisible = true; this.centervisible = true
let params = {}; let params = {}
params.type = 'add'; params.type = 'add'
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyQuantityManualAdd.init(params); this.$refs.energyQuantityManualAdd.init(params)
}); })
break; break
default: default:
this.$modal this.$modal.confirm('是否确认导出').then(() => {
.confirm('是否确认导出') return energyQuantityManualExport({ energyTypeId: this.queryParams.energyTypeId, recordTime: this.queryParams.recordTime });
.then(() => { }).then(response => {
return energyQuantityManualExport({
energyTypeId: this.queryParams.energyTypeId,
recordTime: this.queryParams.recordTime,
});
})
.then((response) => {
this.$download.excel(response, '能源报表.xls'); this.$download.excel(response, '能源报表.xls');
}) }).catch(() => { })
.catch(() => {});
} }
}, },
/** 查询列表 */ /** 查询列表 */
getList() { getList() {
energyQuantityManualPage(this.queryParams).then((response) => { energyQuantityManualPage(this.queryParams).then(response => {
let arr = response.data.list || []; let arr = response.data.list || []
arr && arr && arr.map(item => {
arr.map((item) => { item.amount = item.amount ? (!isNaN(parseFloat(item.amount)) && isFinite(item.amount) ? item.amount.toFixed(2) : '') : ''
item.amount = item.amount })
? !isNaN(parseFloat(item.amount)) && isFinite(item.amount) this.list = arr
? item.amount.toFixed(2)
: ''
: '';
this.getDictDatas('energy_type').map((subItem) => {
if (item.energyType === subItem.value) {
item.energyTypeLabel = subItem.label;
}
});
});
this.list = arr;
this.total = response.data.total; this.total = response.data.total;
this.exportList = []; this.exportList = []
}); });
}, },
getTypeList() { getTypeList() {
getEnergyTypeListAll().then((res) => { getEnergyTypeListAll().then((res) => {
this.formConfig[0].selectOptions = res.data || []; this.formConfig[0].selectOptions = res.data || []
this.energyTypeList = res.data || []; this.energyTypeList = res.data || []
}); })
}, },
selectChange(val) { selectChange(val) {
console.log(val); console.log(val)
this.exportList = val; this.exportList = val
}, },
handleClick(val) { handleClick(val) {
console.log(val); console.log(val)
switch (val.type) { switch (val.type) {
case 'edit': case 'edit':
this.addOrEditTitle = '编辑'; this.addOrEditTitle = '编辑'
this.centervisible = true; this.centervisible = true
let paramA = {}; let paramA = {}
paramA.type = 'edit'; paramA.type = 'edit'
paramA.id = val.data.id; paramA.id = val.data.id
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyQuantityManualAdd.init(paramA); this.$refs.energyQuantityManualAdd.init(paramA)
}); })
break; break
case 'meterReading': case 'meterReading':
this.addOrEditTitle = '新增'; this.addOrEditTitle = '新增'
this.centervisible = true; this.centervisible = true
let paramB = {}; let paramB = {}
paramB.type = 'meterReading'; paramB.type = 'meterReading'
paramB.energyTypeId = val.data.energyTypeId; paramB.energyTypeId = val.data.energyTypeId
paramB.tableName = val.data.tableName; paramB.tableName = val.data.tableName
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyQuantityManualAdd.init(paramB); this.$refs.energyQuantityManualAdd.init(paramB)
}); })
break; break
default: default:
this.handleDelete(val.data); this.handleDelete(val.data)
} }
}, },
// //
handleCancel() { handleCancel() {
this.$refs.energyQuantityManualAdd.formClear(); this.$refs.energyQuantityManualAdd.formClear()
this.centervisible = false; this.centervisible = false
this.addOrEditTitle = ''; this.addOrEditTitle = ''
}, },
handleConfirm() { handleConfirm() {
this.$refs.energyQuantityManualAdd.submitForm(); this.$refs.energyQuantityManualAdd.submitForm()
}, },
successSubmit() { successSubmit() {
this.handleCancel(); this.handleCancel()
this.getList(); this.getList()
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
console.log(row.id); console.log(row.id)
this.$modal this.$modal.confirm('是否确认删除能源类型为"' + row.energyType + '"的数据项?').then(function () {
.confirm('是否确认删除能源类型为"' + row.energyTypeLabel + '"的数据项?')
.then(function () {
return energyQuantityManualDelete({ id: row.id }); return energyQuantityManualDelete({ id: row.id });
}) }).then(() => {
.then(() => {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.getList(); this.getList();
this.$modal.msgSuccess('删除成功'); this.$modal.msgSuccess("删除成功");
}) }).catch(() => { });
.catch(() => {}); }
}, }
},
}; };
</script> </script>

View File

@ -1,116 +1,99 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-bar <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
:formConfigs="formConfig"
ref="searchBarForm"
@headBtnClick="buttonClick" />
<!-- 列表 --> <!-- 列表 -->
<base-table <base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list"
:page="queryParams.pageNo" :selectWidth="55" :max-height="tableH" @selection-change="selectChange" />
:limit="queryParams.pageSize" <pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total"
:table-props="tableProps"
:table-data="list"
:selectWidth="55"
:max-height="tableH"
@selection-change="selectChange" />
<pagination
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList" /> @pagination="getList" />
</div> </div>
</template> </template>
<script> <script>
import { getEnergyQuantityRealtimePage } from '@/api/base/energyQuantityRealtime'; import { getEnergyQuantityRealtimePage } from "@/api/base/energyQuantityRealtime"
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getEnergyTypeListAll } from "@/api/base/energyType"
// import { publicFormatter } from '@/utils/dict'; // import { publicFormatter } from '@/utils/dict'
import FileSaver from 'file-saver'; import FileSaver from "file-saver"
import * as XLSX from 'xlsx/xlsx.mjs'; import * as XLSX from 'xlsx/xlsx.mjs'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'objName', prop: 'objName',
label: '统计对象', label: '统计对象',
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'objCode', prop: 'objCode',
label: '对象编码', label: '对象编码',
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'energyTypeLabel', prop: 'energyTypeName',
label: '能源类型', label: '能源类型',
showOverflowtooltip: true, showOverflowtooltip: true
}, },
{ {
prop: 'startValue', prop: 'startValue',
label: '初始值', label: '初始值'
}, },
{ {
prop: 'endValue', prop: 'endValue',
label: '当前值', label: '当前值'
}, },
{ {
prop: 'diffValue', prop: 'diffValue',
label: '差值', label: '差值'
}, },
{ {
prop: 'amount', prop: 'amount',
label: '金额', label: '金额'
}, }
]; ]
export default { export default {
name: 'EnergyQuantityRealtime', name: "EnergyQuantityRealtime",
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
{ {
type: 'select', type: 'select',
label: '能源类型', label: '能源类型',
labelField: 'labelName',
selectOptions: [], selectOptions: [],
param: 'energyTypeId', param: 'energyTypeId',
filterable: true, filterable: true
}, },
{ {
type: 'datePicker', type: 'datePicker',
label: '时间', label: '时间',
dateType: 'datetimerange', dateType: 'datetimerange',
format: 'yyyy-MM-dd HH:mm:ss', format: 'yyyy-MM-dd HH:mm:ss',
valueFormat: 'timestamp', valueFormat: "timestamp",
rangeSeparator: '-', rangeSeparator: '-',
startPlaceholder: '开始时间', startPlaceholder: '开始时间',
endPlaceholder: '结束时间', endPlaceholder: '结束时间',
param: 'timeVal', param: 'timeVal',
defaultSelect: [], defaultSelect: [],
width: 350, width: 350
}, },
{ {
type: this.$auth.hasPermi('base:energy-quantity-realtime:query') type: 'button',
? 'button'
: '',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary'
}, },
{ {
type: 'separate', type: 'separate'
}, },
{ {
type: this.$auth.hasPermi('base:energy-quantity-realtime:export') type: this.$auth.hasPermi('base:energy-quantity-realtime:export') ? 'button' : '',
? 'button'
: '',
btnName: '导出', btnName: '导出',
name: 'export', name: 'export',
color: 'primary', color: 'primary',
plain: true, plain: true
}, }
], ],
tableProps, tableProps,
tableH: this.tableHeight(260),
// //
total: 0, total: 0,
// //
@ -121,97 +104,78 @@ export default {
pageSize: 20, pageSize: 20,
energyTypeId: '', energyTypeId: '',
startTime: null, startTime: null,
endTime: null, endTime: null
}, },
energyTypeList: [], energyTypeList: [],
exportList: [], exportList: []
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
if (location.href.indexOf('?') > 0) { if (location.href.indexOf('?') > 0) {
let arr = location.href.split('?')[1].split('&'); let arr = location.href.split('?')[1].split('&')
this.formConfig[1].defaultSelect = [ this.formConfig[1].defaultSelect = [arr[0].split('=')[1], arr[1].split('=')[1]]
arr[0].split('=')[1],
arr[1].split('=')[1],
];
} else { } else {
this.formConfig[1].defaultSelect = [ this.formConfig[1].defaultSelect = [Date.now() - 7 * 24 * 3600000, Date.now()]
Date.now() - 7 * 24 * 3600000,
Date.now(),
];
} }
this.queryParams.startTime = this.formConfig[1].defaultSelect[0]; this.queryParams.startTime = this.formConfig[1].defaultSelect[0]
this.queryParams.endTime = this.formConfig[1].defaultSelect[1]; this.queryParams.endTime = this.formConfig[1].defaultSelect[1]
this.getList(); this.getList();
this.getTypeList(); this.getTypeList()
}, },
watch: { watch: {
$route: 'initData', $route: 'initData'
}, },
methods: { methods: {
initData(to) { initData(to) {
if (to.name === 'EnergyQuantityRealtime') { if (to.name === 'EnergyQuantityRealtime') {
if (location.href.indexOf('?') > 0) { if (location.href.indexOf('?') > 0) {
let arr = location.href.split('?')[1].split('&'); let arr = location.href.split('?')[1].split('&')
this.formConfig[1].defaultSelect = [ this.formConfig[1].defaultSelect = [arr[0].split('=')[1], arr[1].split('=')[1]]
arr[0].split('=')[1],
arr[1].split('=')[1],
];
} else { } else {
this.formConfig[1].defaultSelect = [ this.formConfig[1].defaultSelect = [Date.now() - 7 * 24 * 3600000, Date.now()]
Date.now() - 7 * 24 * 3600000,
Date.now(),
];
} }
this.queryParams.startTime = this.formConfig[1].defaultSelect[0]; this.queryParams.startTime = this.formConfig[1].defaultSelect[0]
this.queryParams.endTime = this.formConfig[1].defaultSelect[1]; this.queryParams.endTime = this.formConfig[1].defaultSelect[1]
this.getList(); this.getList()
} }
}, },
buttonClick(val) { buttonClick(val) {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.queryParams.energyTypeId = val.energyTypeId; this.queryParams.energyTypeId = val.energyTypeId
this.queryParams.startTime = val.timeVal ? val.timeVal[0] : null; this.queryParams.startTime = val.timeVal ? val.timeVal[0] : null
this.queryParams.endTime = val.timeVal ? val.timeVal[1] : null; this.queryParams.endTime = val.timeVal ? val.timeVal[1] : null
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.getList(); this.getList()
break; break
default: default:
this.exportTable(); this.exportTable()
} }
}, },
/** 查询列表 */ /** 查询列表 */
getList() { getList() {
getEnergyQuantityRealtimePage(this.queryParams).then((response) => { getEnergyQuantityRealtimePage(this.queryParams).then(response => {
let arr = response.data.list || []; let arr = response.data.list || []
arr && arr && arr.map(item => {
arr.map((item) => { item.amount = item.amount ? (!isNaN(parseFloat(item.amount)) && isFinite(item.amount) ? item.amount.toFixed(2) : '') : ''
item.amount = item.amount })
? !isNaN(parseFloat(item.amount)) && isFinite(item.amount) this.list = arr
? item.amount.toFixed(2)
: ''
: '';
this.getDictDatas('energy_type').map((subItem) => {
if (item.energyTypeName === subItem.value) {
item.energyTypeLabel = subItem.label;
}
});
});
this.list = arr;
this.total = response.data.total; this.total = response.data.total;
this.exportList = []; this.exportList = []
}); });
}, },
getTypeList() { getTypeList() {
getEnergyTypeListAll().then((res) => { getEnergyTypeListAll().then((res) => {
this.formConfig[0].selectOptions = res.data || []; this.formConfig[0].selectOptions = res.data || []
this.energyTypeList = res.data || []; this.energyTypeList = res.data || []
}); })
}, },
selectChange(val) { selectChange(val) {
console.log(val); console.log(val)
this.exportList = val; this.exportList = val
}, },
// //
exportTable() { exportTable() {
@ -219,38 +183,38 @@ export default {
let body = this.exportList.map((x) => [ let body = this.exportList.map((x) => [
x.objName, x.objName,
x.objCode, x.objCode,
x.energyTypeLabel, x.energyTypeName,
x.startValue, x.startValue,
x.endValue, x.endValue,
x.diffValue, x.diffValue,
x.amount, x.amount
]); ])
let header = []; let header = []
this.tableProps.map((y) => { this.tableProps.map((y) => {
header.push(y.label); header.push(y.label)
}); })
body.unshift(header); body.unshift(header)
console.log(body); console.log(body)
const filename = '能源抄表.xlsx'; const filename = '能源抄表.xlsx'
const ws_name = 'Sheet1'; const ws_name = 'Sheet1'
const wb = XLSX.utils.book_new(); const wb = XLSX.utils.book_new()
const ws = XLSX.utils.aoa_to_sheet(body); const ws = XLSX.utils.aoa_to_sheet(body)
XLSX.utils.book_append_sheet(wb, ws, ws_name); XLSX.utils.book_append_sheet(wb, ws, ws_name)
let wbout = XLSX.write(wb, { let wbout = XLSX.write(wb, {
bookType: 'xlsx', bookType: 'xlsx',
bookSST: false, bookSST: false,
type: 'array', type: 'array'
}); })
FileSaver.saveAs( FileSaver.saveAs(
new Blob([wbout], { new Blob([wbout], {
type: 'application/octet-stream', type: 'application/octet-stream'
}), }),
filename filename
); )
} else { } else {
this.$modal.msgWarning('请勾选需要导出的数据'); this.$modal.msgWarning('请勾选需要导出的数据')
}
}
} }
},
},
}; };
</script> </script>

View File

@ -1,161 +1,79 @@
<template> <template>
<el-form <el-form ref="form" :rules="rules" label-width="100px" :model="form">
ref="form"
:rules="rules"
label-width="100px"
:model="form">
<el-row> <el-row>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="能源类型" prop="name">
label="能源类型" <el-input v-model="form.name"></el-input>
prop="name">
<el-select
v-model="form.name"
placeholder="请选择"
style="width: 100%">
<el-option
v-for="item in getDictDatas(DICT_TYPE.ENERGY_TYPE)"
:key="item.value"
:label="item.label"
:value="item.value"></el-option>
</el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="类型编码" prop="code">
label="类型编码" <el-input v-model="form.code" disabled></el-input>
prop="code">
<el-input
v-model="form.code"
disabled></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="单位" prop="unit">
label="单位" <el-select v-model="form.unit" placeholder="请选择" style="width: 100%;">
prop="unit"> <el-option v-for="item in getDictDatas(DICT_TYPE.ENERGY_UNIT)" :key="item.value" :label="item.label"
<el-select :value="item.value">
v-model="form.unit" </el-option>
placeholder="请选择"
filterable
style="width: 100%">
<el-option
v-for="item in getDictDatas(DICT_TYPE.UNIT_DICT)"
:key="item.value"
:label="item.label"
:value="item.value"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="计价方式" prop="pricingMethod">
label="计价方式" <el-select v-model="form.pricingMethod" placeholder="请选择" style="width: 100%;">
prop="pricingMethod"> <el-option label="时间段" :value='0'></el-option>
<el-select <el-option label="使用量" :value='1'></el-option>
v-model="form.pricingMethod" <el-option label="固定价位" :value='2'></el-option>
placeholder="请选择"
style="width: 100%">
<el-option
label="时间段"
:value="0"></el-option>
<el-option
label="使用量"
:value="1"></el-option>
<el-option
label="固定价位"
:value="2"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col <el-col :span="12" v-show="form.pricingMethod === 2">
:span="12" <el-form-item label="单价(元)" prop="pricingMethod">
v-show="form.pricingMethod === 2"> <el-input-number v-model="form.singlePrice" :precision="2" :min="0" :max="999999999"
<el-form-item style="width: 100%;"></el-input-number>
label="单价(元)"
prop="pricingMethod">
<el-input-number
v-model="form.singlePrice"
:precision="2"
:min="0"
:max="999999999"
style="width: 100%"></el-input-number>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col <el-col :span="12" v-show="form.pricingMethod === 1">
:span="12" <el-form-item label="计量维度" prop="dim">
v-show="form.pricingMethod === 1"> <el-select v-model="form.dim" placeholder="请选择" style="width: 100%;">
<el-form-item <el-option label="月" :value='4'></el-option>
label="计量维度" <el-option label="年" :value='5'></el-option>
prop="dim">
<el-select
v-model="form.dim"
placeholder="请选择"
style="width: 100%">
<el-option
label="月"
:value="4"></el-option>
<el-option
label="年"
:value="5"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col <el-col :span="24" v-show="form.pricingMethod === 0">
:span="24" <el-form-item label="时间段" prop="pricingMethod">
v-show="form.pricingMethod === 0"> <base-table :key='timeKye' :table-props="tableProps1" :table-data="tableData1"
<el-form-item :add-button-show="addButtonShow" @emitButtonClick="emitButtonClick1" @emitFun="inputChange1">
label="时间段" <method-btn v-if="tableBtn.length" slot="handleBtn" :width="80" label="操作" :method-list="tableBtn"
prop="pricingMethod">
<base-table
:key="timeKye"
:table-props="tableProps1"
:table-data="tableData1"
:add-button-show="addButtonShow"
@emitButtonClick="emitButtonClick1"
@emitFun="inputChange1">
<method-btn
v-if="tableBtn.length"
slot="handleBtn"
:width="80"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick1" /> @clickBtn="handleClick1" />
</base-table> </base-table>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col <el-col :span="24" v-show="form.pricingMethod === 1">
:span="24" <el-form-item label="使用量" prop="pricingMethod">
v-show="form.pricingMethod === 1"> <base-table :key='usedKye' :table-props="tableProps2" :table-data="tableData2"
<el-form-item :add-button-show="addButtonShow" @emitButtonClick="emitButtonClick2" @emitFun="inputChange2">
label="使用量" <method-btn v-if="tableBtn.length" slot="handleBtn" :width="80" label="操作" :method-list="tableBtn"
prop="pricingMethod">
<base-table
:key="usedKye"
:table-props="tableProps2"
:table-data="tableData2"
:add-button-show="addButtonShow"
@emitButtonClick="emitButtonClick2"
@emitFun="inputChange2">
<method-btn
v-if="tableBtn.length"
slot="handleBtn"
:width="80"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick2" /> @clickBtn="handleClick2" />
</base-table> </base-table>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="24"> <el-col :span="12">
<el-form-item <el-form-item label="是否推送" prop="push">
label="描述" <el-switch v-model="form.push"></el-switch>
prop="description"> </el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="描述" prop="description">
<el-input v-model="form.description"></el-input> <el-input v-model="form.description"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
@ -163,31 +81,26 @@
</el-form> </el-form>
</template> </template>
<script> <script>
import { import { getEnergyType, updateEnergyType, createEnergyType, getEnergyTypeCode } from '@/api/base/energyType'
getEnergyType, import inputArea from './InputArea.vue'
updateEnergyType, import timePickerArea from './TimePickerArea.vue'
createEnergyType,
getEnergyTypeCode,
} from '@/api/base/energyType';
import inputArea from './InputArea.vue';
import timePickerArea from './TimePickerArea.vue';
const tableProps1 = [ const tableProps1 = [
{ {
prop: 'startTime', prop: 'startTime',
label: '开始时间', label: '开始时间',
subcomponent: timePickerArea, subcomponent: timePickerArea
}, },
{ {
prop: 'endTime', prop: 'endTime',
label: '结束时间', label: '结束时间',
subcomponent: timePickerArea, subcomponent: timePickerArea
}, },
{ {
prop: 'price', prop: 'price',
label: '单价(元)', label: '单价(元)',
subcomponent: inputArea, subcomponent: inputArea
}, }
]; ]
const tableProps2 = [ const tableProps2 = [
{ {
prop: 'startUsed', prop: 'startUsed',
@ -197,14 +110,14 @@ const tableProps2 = [
{ {
prop: 'endUsed', prop: 'endUsed',
label: '上限量', label: '上限量',
subcomponent: inputArea, subcomponent: inputArea
}, },
{ {
prop: 'price', prop: 'price',
label: '单价(元)', label: '单价(元)',
subcomponent: inputArea, subcomponent: inputArea
}, }
]; ]
export default { export default {
name: 'energyTypeAdd', name: 'energyTypeAdd',
data() { data() {
@ -217,16 +130,13 @@ export default {
singlePrice: 0, singlePrice: 0,
pricingMethod: 2, pricingMethod: 2,
dim: '', dim: '',
description: '', push: false,
description: ''
}, },
isEdit: false, // isEdit: false, //
rules: { rules: {
name: [ name: [{ required: true, message: '能源类型不能为空', trigger: 'blur' }],
{ required: true, message: '能源类型不能为空', trigger: 'blur' }, pricingMethod: [{ required: true, message: '计价方式不能为空', trigger: 'change' }]
],
pricingMethod: [
{ required: true, message: '计价方式不能为空', trigger: 'change' },
],
}, },
timeKye: 0, timeKye: 0,
usedKye: 0, usedKye: 0,
@ -237,91 +147,92 @@ export default {
tableBtn: [ tableBtn: [
{ {
type: 'delete', type: 'delete',
name: '删除', name: '删除'
}, }
], ],
addButtonShow: '新增', addButtonShow: '新增'
}; }
}, },
methods: { methods: {
init(id) { init(id) {
if (id) { if (id) {
this.isEdit = true; this.isEdit = true
this.form.id = id; this.form.id = id
getEnergyType(id).then((res) => { getEnergyType(id).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.form.name = res.data.name; this.form.name = res.data.name
this.form.code = res.data.code; this.form.code = res.data.code
this.form.unit = res.data.unit; this.form.unit = res.data.unit
this.form.pricingMethod = res.data.pricingMethod; this.form.pricingMethod = res.data.pricingMethod
this.form.description = res.data.description; this.form.push = res.data.push ? true : false
this.form.description = res.data.description
switch (this.form.pricingMethod) { switch (this.form.pricingMethod) {
case 0: case 0:
this.tableData1 = res.data.segPriceList || []; this.tableData1 = res.data.segPriceList || []
break; break;
case 1: case 1:
this.tableData2 = res.data.usedPriceList || []; this.tableData2 = res.data.usedPriceList || []
this.form.dim = res.data.dim; this.form.dim = res.data.dim
break; break;
default: default:
this.form.singlePrice = res.data.singlePrice || 0; this.form.singlePrice = res.data.singlePrice || 0
} }
} }
}); })
console.log(this.form); console.log(this.form)
} else { } else {
this.isEdit = false; this.isEdit = false
this.form.id = ''; this.form.id = ''
getEnergyTypeCode().then((res) => { getEnergyTypeCode().then((res) => {
this.form.code = res.data; this.form.code = res.data
}); })
} }
}, },
// //
inputChange1(val) { inputChange1(val) {
this.tableData1[val._pageIndex - 1][val.prop] = val[val.prop]; this.tableData1[val._pageIndex - 1][val.prop] = val[val.prop]
if (this.tableData1.length > val._pageIndex && val.prop === 'endTime') { if ((this.tableData1.length > val._pageIndex) && val.prop === 'endTime') {
this.tableData1[val._pageIndex].startTime = val[val.prop]; this.tableData1[val._pageIndex].startTime = val[val.prop]
} }
this.timeKye++; this.timeKye++
}, },
inputChange2(val) { inputChange2(val) {
// //
if (!!val.endUsed && val.endUsed <= val.startUsed) { if (!!val.endUsed && (val.endUsed <= val.startUsed)) {
this.$modal.msgError('上限值不能等于或者小于下限值'); this.$modal.msgError('上限值不能等于或者小于下限值')
return false; return false
} }
this.tableData2[val._pageIndex - 1][val.prop] = val[val.prop]; this.tableData2[val._pageIndex - 1][val.prop] = val[val.prop]
if (this.tableData2.length > val._pageIndex && val.prop === 'endUsed') { if ((this.tableData2.length > val._pageIndex) && val.prop === 'endUsed') {
this.tableData2[val._pageIndex].startUsed = val[val.prop]; this.tableData2[val._pageIndex].startUsed = val[val.prop]
} }
this.usedKye++; this.usedKye++
}, },
// //
emitButtonClick1() { emitButtonClick1() {
let n = this.tableData1.length; let n = this.tableData1.length
let obj = {}; let obj = {}
obj.startTime = n === 0 ? '' : this.tableData1[n - 1].endTime; obj.startTime = n === 0 ? '' : this.tableData1[n - 1].endTime
obj.endTime = ''; obj.endTime = ''
obj.price = 0; obj.price = 0
this.tableData1.push(obj); this.tableData1.push(obj)
}, },
emitButtonClick2() { emitButtonClick2() {
let n = this.tableData2.length; let n = this.tableData2.length
let obj = {}; let obj = {}
obj.startUsed = n === 0 ? 0 : this.tableData2[n - 1].endUsed; obj.startUsed = n === 0 ? 0 : this.tableData2[n - 1].endUsed
obj.endUsed = 0; obj.endUsed = 0
obj.price = 0; obj.price = 0
this.tableData2.push(obj); this.tableData2.push(obj)
}, },
// //
handleClick1(val) { handleClick1(val) {
this.tableData1.splice(val.data._pageIndex - 1, 1); this.tableData1.splice(val.data._pageIndex - 1, 1)
this.timeKye++; this.timeKye++
}, },
handleClick2(val) { handleClick2(val) {
this.tableData2.splice(val.data._pageIndex - 1, 1); this.tableData2.splice(val.data._pageIndex - 1, 1)
this.usedKye++; this.usedKye++
}, },
submitForm() { submitForm() {
this.$refs['form'].validate((valid) => { this.$refs['form'].validate((valid) => {
@ -329,37 +240,37 @@ export default {
switch (this.form.pricingMethod) { switch (this.form.pricingMethod) {
case 0:// case 0://
if (this.tableData1.length === 0) { if (this.tableData1.length === 0) {
this.$modal.msgError('时间段表格数据不能为空'); this.$modal.msgError('时间段表格数据不能为空')
return false; return false
} else { } else {
this.tableData1.map((item) => { this.tableData1.map(item => {
if (item.price <= 0) { if (item.price <= 0) {
this.$modal.msgError('单价有误请检查,请检查'); this.$modal.msgError('单价有误请检查,请检查')
return false; return false
} }
}); })
} }
break; break;
case 1:// 使 case 1:// 使
if (this.tableData2.length === 0) { if (this.tableData2.length === 0) {
this.$modal.msgError('使用量表格数据不能为空'); this.$modal.msgError('使用量表格数据不能为空')
return false; return false
} else { } else {
this.tableData1.map((item) => { this.tableData1.map(item => {
if (item.price <= 0) { if (item.price <= 0) {
this.$modal.msgError('单价有误请检查,请检查'); this.$modal.msgError('单价有误请检查,请检查')
return false; return false
} }
}); })
} }
break; break;
default:// default://
if (!this.form.singlePrice) { if (!this.form.singlePrice) {
this.$modal.msgError('单价有误请检查,请检查'); this.$modal.msgError('单价有误请检查,请检查')
return false; return false
} }
} }
console.log(this.form); console.log(this.form)
if (this.isEdit) { if (this.isEdit) {
// //
updateEnergyType({ updateEnergyType({
@ -370,18 +281,16 @@ export default {
pricingMethod: this.form.pricingMethod, pricingMethod: this.form.pricingMethod,
description: this.form.description, description: this.form.description,
dim: this.form.pricingMethod === 1 ? this.form.dim : '', dim: this.form.pricingMethod === 1 ? this.form.dim : '',
singlePrice: singlePrice: this.form.pricingMethod === 2 ? this.form.singlePrice : '',
this.form.pricingMethod === 2 ? this.form.singlePrice : '', segPriceList: this.form.pricingMethod === 0 ? this.tableData1 : [],
segPriceList: usedPriceList: this.form.pricingMethod === 1 ? this.tableData2 : [],
this.form.pricingMethod === 0 ? this.tableData1 : [], push: this.form.push ? 1 : 0
usedPriceList:
this.form.pricingMethod === 1 ? this.tableData2 : [],
}).then((res) => { }).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} else { } else {
createEnergyType({ createEnergyType({
code: this.form.code, code: this.form.code,
@ -390,33 +299,31 @@ export default {
pricingMethod: this.form.pricingMethod, pricingMethod: this.form.pricingMethod,
description: this.form.description, description: this.form.description,
dim: this.form.pricingMethod === 1 ? this.form.dim : '', dim: this.form.pricingMethod === 1 ? this.form.dim : '',
singlePrice: singlePrice: this.form.pricingMethod === 2 ? this.form.singlePrice : '',
this.form.pricingMethod === 2 ? this.form.singlePrice : '', segPriceList: this.form.pricingMethod === 0 ? this.tableData1 : [],
segPriceList: usedPriceList: this.form.pricingMethod === 1 ? this.tableData2 : [],
this.form.pricingMethod === 0 ? this.tableData1 : [], push: this.form.push ? 1 : 0
usedPriceList:
this.form.pricingMethod === 1 ? this.tableData2 : [],
}).then((res) => { }).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} }
} else { } else {
return false; return false
} }
}); })
}, },
formClear() { formClear() {
this.$refs.form.resetFields(); this.$refs.form.resetFields()
this.form.singlePrice = 0; this.form.singlePrice = 0
this.isEdit = false; this.isEdit = false
this.timeKye = 0; this.timeKye = 0
this.usedKye = 0; this.usedKye = 0
this.tableData1 = []; this.tableData1 = []
this.tableData2 = []; this.tableData2 = []
}, }
}, }
}; }
</script> </script>

View File

@ -1,195 +1,224 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-bar <search-bar
:formConfigs="formConfig" :formConfigs="formConfig"
ref="searchBarForm" ref="searchBarForm"
:removeBlue="true" @headBtnClick="buttonClick"
@headBtnClick="buttonClick" /> />
<!-- 列表 --> <!-- 列表 -->
<base-table <base-table
:page="queryParams.pageNo" :page="queryParams.pageNo"
:limit="queryParams.pageSize" :limit="queryParams.pageSize"
:table-props="tableProps" :table-props="tableProps"
:table-data="list" :table-data="list"
:max-height="tableH"> :max-height="tableH"
>
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:width="80" :width="80"
label="操作" label="操作"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick"
/>
</base-table> </base-table>
<pagination
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList"
/>
<!-- 新增 --> <!-- 新增 -->
<base-dialog <base-dialog
:dialogTitle="addOrEditTitle" :dialogTitle="addOrEditTitle"
:dialogVisible="centervisible" :dialogVisible="centervisible"
@cancel="handleCancel" @cancel="handleCancel"
@confirm="handleConfirm" @confirm="handleConfirm"
:before-close="handleCancel"> :before-close="handleCancel"
<energy-type-add >
ref="energyType" <energy-type-add ref="energyType" @successSubmit="successSubmit" />
@successSubmit="successSubmit" />
</base-dialog> </base-dialog>
</div> </div>
</template> </template>
<script> <script>
import { getEnergyTypePage, deleteEnergyType } from '@/api/base/energyType'; import { getEnergyTypePage, deleteEnergyType } from "@/api/base/energyType";
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict'
import InnerTable from './components/InnerTable'; import InnerTable from './components/InnerTable'
import EnergyTypeAdd from './components/energyTypeAdd'; import EnergyTypeAdd from './components/energyTypeAdd'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'code', prop: 'code',
label: '类型编码', label: '类型编码',
showOverflowtooltip: true, showOverflowtooltip: true,
minWidth: 150, minWidth: 150
}, },
{ {
prop: 'energyTypeLabel', prop: 'name',
label: '能源类型', label: '能源类型'
}, },
{ {
prop: 'unit', prop: 'unit',
label: '单位', label: '单位',
filter: publicFormatter('unit_dict'), filter: publicFormatter('energy_unit')
}, },
{ {
prop: 'pricingMethod', prop: 'pricingMethod',
label: '计价方式', label: '计价方式'
},
{
prop: 'push',
label: '是否推送',
filter: publicFormatter('push')
}, },
{ {
prop: 'price', prop: 'price',
label: '价格(元)', label: '价格(元)',
subcomponent: InnerTable, subcomponent: InnerTable
}, }
]; ]
export default { export default {
name: 'EnergyType', name: "EnergyType",
components: { EnergyTypeAdd }, components: { EnergyTypeAdd },
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
{
type: 'input',
label: '能源类型',
placeholder: '能源类型',
param: 'name'
},
{
type: 'button',
btnName: '查询',
name: 'search',
color: 'primary'
},
{
type: this.$auth.hasPermi('base:energy-type:create') ? 'separate' : '',
},
{ {
type: this.$auth.hasPermi('base:energy-type:create') ? 'button' : '', type: this.$auth.hasPermi('base:energy-type:create') ? 'button' : '',
btnName: '新增', btnName: '新增',
name: 'add', name: 'add',
color: 'success', color: 'success',
plain: true, plain: true
}, }
], ],
tableProps, tableProps,
tableBtn: [ tableBtn: [
this.$auth.hasPermi('base:energy-type:update') this.$auth.hasPermi('base:energy-type:update')
? { ? {
type: 'edit', type: 'edit',
btnName: '编辑', btnName: '编辑'
} }
: undefined, : undefined,
this.$auth.hasPermi('base:energy-type:delete') this.$auth.hasPermi('base:energy-type:delete')
? { ? {
type: 'delete', type: 'delete',
btnName: '删除', btnName: '删除'
} }
: undefined, : undefined
].filter((v) => v), ].filter((v) => v),
heightNum: 220, tableH: this.tableHeight(260),
pricingMethodList: [ pricingMethodList: [
{value: 0,label: '分时间段计价'}, {value: 0,label: '分时间段计价'},
{value: 1,label: '分使用量计价'}, {value: 1,label: '分使用量计价'},
{ value: 2, label: '单一计价' }, {value: 2,label: '单一计价'}
], ],
// //
total: 0, total: 0,
// //
list: [], list: [],
// //
addOrEditTitle: '', addOrEditTitle: "",
// //
centervisible: false, centervisible: false,
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 100, pageSize: 20,
}, name: null,
code: null
}
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
this.getList(); this.getList();
}, },
methods: { methods: {
buttonClick() { buttonClick(val) {
this.addOrEditTitle = '新增'; switch (val.btnName) {
this.centervisible = true; case 'search':
this.queryParams.pageNo = 1;
this.queryParams.name = val.name
this.queryParams.code = val.code
this.getList()
break
default:
this.addOrEditTitle = '新增'
this.centervisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyType.init(); this.$refs.energyType.init()
}); })
}
}, },
/** 查询列表 */ /** 查询列表 */
getList() { getList() {
getEnergyTypePage(this.queryParams).then((response) => { getEnergyTypePage(this.queryParams).then(response => {
let arr = response.data.list || []; let arr = response.data.list || [];
arr && arr&&arr.map(item => {
arr.map((item) => { this.pricingMethodList.map(i => {
this.pricingMethodList.map((i) => {
if (item.pricingMethod === i.value) { if (item.pricingMethod === i.value) {
item.pricingMethod = i.label; item.pricingMethod = i.label
} }
}); })
this.getDictDatas('energy_type').map((subItem) => { })
if (item.name === subItem.value) { this.list = arr
item.energyTypeLabel = subItem.label;
}
});
});
this.list = arr;
this.total = response.data.total; this.total = response.data.total;
}); });
}, },
handleClick(val) { handleClick(val) {
switch (val.type) { switch (val.type) {
case 'edit': case 'edit':
this.addOrEditTitle = '编辑'; this.addOrEditTitle = '编辑'
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyType.init(val.data.id); this.$refs.energyType.init(val.data.id)
}); })
this.centervisible = true; this.centervisible = true
break; break
default: default:
this.handleDelete(val.data); this.handleDelete(val.data)
} }
}, },
handleCancel() { handleCancel() {
this.$refs.energyType.formClear(); this.$refs.energyType.formClear()
this.centervisible = false; this.centervisible = false
this.addOrEditTitle = ''; this.addOrEditTitle = ''
}, },
handleConfirm() { handleConfirm() {
this.$refs.energyType.submitForm(); this.$refs.energyType.submitForm()
}, },
successSubmit() { successSubmit() {
this.handleCancel(); this.handleCancel()
this.getList(); this.getList()
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
console.log(row); this.$modal.confirm('是否确认删除能源类型为"' + row.name + '"的数据项?').then(function() {
this.$modal
.confirm('是否确认删除能源类型为"' + row.energyTypeLabel + '"的数据项?')
.then(function () {
return deleteEnergyType(row.id); return deleteEnergyType(row.id);
}) }).then(() => {
.then(() => {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.getList(); this.getList();
this.$modal.msgSuccess('删除成功'); this.$modal.msgSuccess("删除成功");
}) }).catch(() => {});
.catch(() => {}); }
}, }
},
}; };
</script> </script>

View File

@ -1,76 +0,0 @@
<template>
<el-form
ref="form"
label-width="100px"
:model="form">
<el-form-item
label="能源类型"
prop="energyType">
<el-input v-model="form.energyType"></el-input>
</el-form-item>
<el-form-item
label="能源表名"
prop="tableIds">
<el-select
v-model="form.tableIds"
placeholder="请选择"
style="width: 100%"
:multiple="true"
filterable>
<el-option
v-for="dict in getDictDatas('table_name')"
:key="dict.id"
:label="dict.label"
:value="dict.id" />
</el-select>
</el-form-item>
</el-form>
</template>
<script>
import {
energyTableGet,
energyTableUpdate,
} from '@/api/base/energyQuantityManual';
export default {
name: 'TableNameConfigUpdate',
data() {
return {
form: {
energyType: '',
energyTypeId: '',
tableIds: [],
},
};
},
methods: {
init(id) {
energyTableGet({ energyTypeId: id }).then((res) => {
this.form.energyType = res.data.energyType || '';
this.form.energyTypeId = res.data.energyTypeId || '';
this.form.tableIds =
res.data.tableObjs &&
res.data.tableObjs.map((item) => {
return item.id;
});
});
},
submitForm() {
this.$refs['form'].validate((valid) => {
//
energyTableUpdate({ ...this.form }).then((res) => {
if (res.code === 0) {
this.$modal.msgSuccess('操作成功');
this.$emit('successSubmit');
}
});
});
},
formClear() {
this.form.energyType = '';
this.form.energyTypeId = '';
this.form.tableIds = [];
this.isEdit = false;
},
},
};
</script>

View File

@ -1,111 +0,0 @@
<template>
<div class="app-container">
<!-- 列表 -->
<base-table
:page="queryParams.pageNo"
:limit="queryParams.pageSize"
:table-props="tableProps"
:table-data="list"
:max-height="tableH">
<method-btn
v-if="tableBtn.length"
slot="handleBtn"
:width="80"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick" />
</base-table>
<!-- 新增 -->
<base-dialog
dialogTitle="编辑"
:dialogVisible="centervisible"
@cancel="handleCancel"
@confirm="handleConfirm"
:before-close="handleCancel">
<table-name-config-update
ref="tableNameConfigU"
@successSubmit="successSubmit" />
</base-dialog>
</div>
</template>
<script>
import { energyTablePage } from '@/api/base/energyQuantityManual';
import { publicFormatter } from '@/utils/dict';
import tableNameConfigUpdate from './components/tableNameConfigUpdate.vue';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [
{
prop: 'energyType',
label: '能源类型',
width: 200,
filter: publicFormatter('energy_type'),
},
{
prop: 'tableName',
label: '能源表名',
},
];
export default {
name: 'TableNameConfig',
components: { tableNameConfigUpdate },
data() {
return {
tableProps,
tableBtn: [
this.$auth.hasPermiAnd([
'base:energy-table:query',
'base:energy-table:update',
])
? {
type: 'edit',
btnName: '编辑',
}
: undefined,
].filter((v) => v),
list: [],
queryParams: {
pageNo: 1,
pageSize: 100,
},
heightNum: 165,
centervisible: false,
};
},
mixins: [tableHeightMixin],
created() {
this.getList();
},
methods: {
getList() {
energyTablePage({ ...this.queryParams }).then((res) => {
let temp = res.data.list || [];
this.list = temp.map((item) => {
return {
energyType: item.energyType,
energyTypeId: item.energyTypeId,
tableName: item.tables.join('、'),
};
});
});
},
handleClick(val) {
console.log('编辑');
this.centervisible = true;
this.$nextTick(() => {
this.$refs.tableNameConfigU.init(val.data.energyTypeId);
});
},
handleCancel() {
this.$refs.tableNameConfigU.formClear();
this.centervisible = false;
},
handleConfirm() {
this.$refs.tableNameConfigU.submitForm();
},
successSubmit() {
this.handleCancel();
this.getList();
},
},
};
</script>

View File

@ -1,160 +1,97 @@
<template> <template>
<el-form <el-form ref="form" :rules="rules" label-width="110px" :model="form">
ref="form"
:rules="rules"
label-width="110px"
:model="form">
<el-row> <el-row>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="抄表方式" prop="method">
label="抄表方式" <el-select v-model="form.method" placeholder="请选择" style="width: 100%;" @change="changeMethod">
prop="method">
<el-select
v-model="form.method"
placeholder="请选择"
style="width: 100%"
@change="changeMethod">
<el-option <el-option
v-for="item in getDictDatas(DICT_TYPE.METHOD)" v-for="item in getDictDatas(DICT_TYPE.METHOD)"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value"></el-option> :value="item.value">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col <el-col :span="12" v-if='form.method == 1'>
:span="12" <el-form-item label="监控对象" prop="objectId">
v-if="form.method == 1">
<el-form-item
label="监控对象"
prop="objectId">
<el-cascader <el-cascader
style="width: 100%" style='width: 100%;'
v-model="objIds" v-model="objIds"
:options="objList" :options="objList"
:props="{ checkStrictly: true, value: 'id', label: 'name' }" :props="{ checkStrictly: true, value: 'id', label: 'name' }"
popper-class="cascaderParent"
@change="selectObj" @change="selectObj"
clearable></el-cascader> clearable></el-cascader>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12" v-if='form.method == 2'>
<el-form-item label="水/气表名" prop="tableName">
<el-select v-model="form.tableName" placeholder="请选择" style="width: 100%;">
<el-option
v-for="item in getDictDatas(DICT_TYPE.TABLE_NAME)"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="监控能源类型" prop="energyTypeId">
label="监控能源类型" <el-select v-model="form.energyTypeId" placeholder="请选择" style="width: 100%;" filterable @change="toggleType">
prop="energyTypeId">
<el-select
v-model="form.energyTypeId"
placeholder="请选择"
style="width: 100%"
filterable
@change="toggleType">
<el-option <el-option
v-for="item in this.energyTypeList" v-for="item in this.energyTypeList"
:key="item.id" :key="item.id"
:label="item.labelName" :label="item.name"
:value="item.id"></el-option> :value="item.id">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col <el-col :span="12" v-if='form.method == 1'>
:span="12" <el-form-item label="监控模式" prop="type">
v-if="form.method == 2"> <el-select v-model="form.type" placeholder="请选择" style="width: 100%;" @change="typeChange">
<el-form-item <el-option label="合并" :value= "1" ></el-option>
label="能源表名" <el-option label="详细" :value= "2" ></el-option>
prop="tableName">
<el-select
v-model="form.tableName"
placeholder="请选择"
style="width: 100%">
<el-option
v-for="item in tableNameList"
:key="item.value"
:label="item.label"
:value="item.value"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col <el-col :span="12" v-if='form.method == 1'>
:span="12" <el-form-item label="监控详细参数" prop="type" v-if="form.type === 2">
v-if="form.method == 1"> <el-select v-model="form.plcParamId" placeholder="请选择" style="width: 100%;" @change="selectDetail">
<el-form-item
label="监控模式"
prop="type">
<el-select
v-model="form.type"
placeholder="请选择"
style="width: 100%"
@change="typeChange">
<el-option
label="合并"
:value="1"></el-option>
<el-option
label="详细"
:value="2"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span="12"
v-if="form.method == 1">
<el-form-item
label="监控详细参数"
prop="type"
v-if="form.type === 2">
<el-select
v-model="form.plcParamId"
placeholder="请选择"
style="width: 100%"
@change="selectDetail">
<el-option <el-option
v-for="item in detailList" v-for="item in detailList"
:key="item.id" :key="item.id"
:label="item.name" :label="item.name"
:value="item.id"></el-option> :value="item.id">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item label="指标类型" prop="limitType">
label="指标类型" <el-select v-model="form.limitType" placeholder="请选择" style="width: 100%;" :disabled='form.method == 2'>
prop="limitType">
<el-select
v-model="form.limitType"
placeholder="请选择"
style="width: 100%"
:disabled="form.method == 2">
<el-option <el-option
v-for="item in getDictDatas(DICT_TYPE.MONITOR_INDEX_TYPE)" v-for="item in getDictDatas(DICT_TYPE.MONITOR_INDEX_TYPE)"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value"></el-option> :value="item.value">
</el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item label="消耗量阈值"> <el-form-item label="消耗量阈值">
<el-input-number <el-input-number v-model="form.minValue" placeholder="最小值" :max="9999999" style="width: 50%;"></el-input-number>
v-model="form.minValue" <el-input-number v-model="form.maxValue" placeholder="最大值" :max="9999999" style="width: 50%;"></el-input-number>
placeholder="最小值"
:max="9999999"
style="width: 50%"></el-input-number>
<el-input-number
v-model="form.maxValue"
placeholder="最大值"
:max="9999999"
style="width: 50%"></el-input-number>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
</template> </template>
<script> <script>
import { import { getEnergyLimit, updateEnergyLimit, createEnergyLimit, getEnergyParamList } from '@/api/monitoring/energyLimit'
getEnergyLimit,
updateEnergyLimit,
createEnergyLimit,
getEnergyParamList,
} from '@/api/monitoring/energyLimit';
import { energyTableGet } from '@/api/base/energyQuantityManual';
export default { export default {
name: 'energyLimitAdd', name: 'energyLimitAdd',
props: { props: {
@ -162,13 +99,13 @@ export default {
type: Array, type: Array,
required: true, required: true,
default: () => { default: () => {
return []; return []
}, }
}, },
objList: { objList: {
type: Array, type: Array,
default: () => [], default: () => []
}, }
}, },
data() { data() {
return { return {
@ -182,190 +119,164 @@ export default {
plcParamId: '', plcParamId: '',
limitType: '', limitType: '',
minValue: 0, minValue: 0,
maxValue: 0, maxValue: 0
tableName: '',
}, },
objIds: [],// objIds: [],//
isEdit: false, // isEdit: false, //
rules: { rules: {
method: [ method: [{ required: true, message: '抄表方式不能为空', trigger: 'change' }],
{ required: true, message: '抄表方式不能为空', trigger: 'change' }, objectId: [{ required: true, message: '监控对象不能为空', trigger: 'change' }],
], energyTypeId: [{ required: true, message: '能源类型不能为空', trigger: 'change' }],
objectId: [ type: [{ required: true, message: '监控模式不能为空', trigger: 'change' }],
{ required: true, message: '监控对象不能为空', trigger: 'change' }, limitType: [{ required: true, message: '指标类型不能为空', trigger: 'change' }]
],
energyTypeId: [
{ required: true, message: '能源类型不能为空', trigger: 'change' },
],
type: [
{ required: true, message: '监控模式不能为空', trigger: 'change' },
],
limitType: [
{ required: true, message: '指标类型不能为空', trigger: 'change' },
],
}, },
tableNameList: [], detailList: []
detailList: [], }
};
}, },
methods: { methods: {
init(id) { init(id) {
if (id) { if (id) {
this.isEdit = true; this.isEdit = true
this.form.id = id; this.form.id = id
getEnergyLimit( id ).then((res) => { getEnergyLimit( id ).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.form = res.data; this.form = res.data
this.form.plcParamId = res.data.plcParamId || ''; this.form.plcParamId = res.data.plcParamId || ''
this.form.tableName = this.form.tableName this.form.method = this.form.method ? this.form.method + '' : ''
? this.form.tableName + '' this.form.limitType = this.form.limitType ? this.form.limitType + '' : ''
: ''; this.objIds = this.changeDetSelect(this.form.objectId, this.objList)
this.form.method = this.form.method ? this.form.method + '' : '';
this.form.limitType = this.form.limitType
? this.form.limitType + ''
: '';
this.objIds = this.changeDetSelect(
this.form.objectId,
this.objList
);
if (this.form.type === 2) { if (this.form.type === 2) {
this.getDetailList(); this.getDetailList()
} }
} }
}); })
} else { } else {
this.isEdit = false; this.isEdit = false
this.form.id = ''; this.form.id = ''
} }
}, },
// //
changeMethod() { changeMethod() {
if(this.form.method === '2'){ if(this.form.method === '2'){
this.form.limitType = '2'; this.form.limitType = "2"
}else{ }else{
this.form.limitType = ''; this.form.limitType = ''
} }
}, },
// //
getDetailList() { getDetailList() {
getEnergyParamList({ getEnergyParamList({
objId: this.form.objectId, objId: this.form.objectId,
energyTypeId: this.form.energyTypeId, energyTypeId: this.form.energyTypeId
}).then((res) => { }).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.detailList = res.data; this.detailList = res.data
} else { } else {
this.detailList = []; this.detailList = []
} }
}); })
}, },
typeChange(val) { typeChange(val) {
console.log(this.form); console.log(this.form)
this.form.plcParamId = ''; this.form.plcParamId = ''
if (val === 2) { if (val === 2) {
if (this.form.objectId && this.form.energyTypeId) { if (this.form.objectId && this.form.energyTypeId) {
this.getDetailList(); this.getDetailList()
} }
} }
}, },
toggleType() { toggleType() {
if (this.form.energyTypeId && this.form.method == 2) { if (this.form.energyTypeId && this.form.type) {
this.form.tableName = ''; this.getDetailList()
this.getTableNameList(this.form.energyTypeId); this.form.plcParamId = ''
} }
}, },
// list
getTableNameList(id) {
energyTableGet({ energyTypeId: id }).then((res) => {
this.tableNameList = res.data.tableObjs || [];
if (this.tableNameList.length === 0) {
this.$modal.msgWarning(
'当前能源类型暂无配置表名,请先到《表名配置》页面配置'
);
}
});
},
// //
changeDetSelect(key, treeData) { changeDetSelect(key, treeData) {
let arr = []; // let arr = [] //
let returnArr = []; // let returnArr = [] //
let depth = 0; // let depth = 0 //
// //
function childrenEach(childrendData, depthN) { function childrenEach(childrendData, depthN) {
for (var j = 0; j < childrendData.length; j++) { for (var j = 0; j < childrendData.length; j++) {
depth = depthN; depth = depthN
arr[depthN] = childrendData[j].id; arr[depthN] = childrendData[j].id
if (childrendData[j].id == key) { if (childrendData[j].id == key) {
returnArr = arr.slice(0, depthN + 1); returnArr = arr.slice(0, depthN + 1)
break; break
} else { } else {
if (childrendData[j].children) { if (childrendData[j].children) {
depth++; depth++
childrenEach(childrendData[j].children, depth); childrenEach(childrendData[j].children, depth)
} }
} }
} }
return returnArr; return returnArr
} }
return childrenEach(treeData, depth); return childrenEach(treeData, depth)
}, },
selectObj(val) { selectObj(val) {
this.form.objectId = val[val.length - 1]; this.form.objectId = val[val.length-1]
this.form.objectType = val.length; this.form.objectType = val.length-1
if (this.form.energyTypeId && this.form.type) { if (this.form.energyTypeId && this.form.type) {
this.getDetailList(); this.getDetailList()
this.form.plcParamId = ''; this.form.plcParamId = ''
} }
}, },
selectDetail() { selectDetail() {
this.$forceUpdate(); this.$forceUpdate()
}, },
submitForm() { submitForm() {
this.$refs['form'].validate((valid) => { this.$refs['form'].validate((valid) => {
if (valid) { if (valid) {
if (this.form.type === 2 && !this.form.plcParamId) { if (this.form.type === 2 && !this.form.plcParamId) {
this.$modal.msgError('监控模式为详细时,详细参数为必填'); this.$modal.msgError("监控模式为详细时,详细参数为必填");
return false; return false
} }
if (this.form.minValue && this.form.maxValue) { if (this.form.minValue && this.form.maxValue) {
if (this.form.minValue > this.form.maxValue) { if (this.form.minValue > this.form.maxValue) {
this.$modal.msgError('消耗量阈值,最小值不能大于最大值'); this.$modal.msgError("消耗量阈值,最小值不能大于最大值");
return false; return false
} }
} }
this.form.minValue = this.form.minValue || 0; this.form.minValue = this.form.minValue || 0
this.form.maxValue = this.form.maxValue || 0; this.form.maxValue = this.form.maxValue || 0
if (this.isEdit) { if (this.isEdit) {
// //
updateEnergyLimit({...this.form}).then((res) => { updateEnergyLimit({...this.form}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} else { } else {
createEnergyLimit({...this.form}).then((res) => { createEnergyLimit({...this.form}).then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$modal.msgSuccess('操作成功'); this.$modal.msgSuccess("操作成功");
this.$emit('successSubmit'); this.$emit('successSubmit')
} }
}); })
} }
} else { } else {
return false; return false
} }
}); })
}, },
formClear() { formClear() {
this.$refs.form.resetFields(); this.$refs.form.resetFields()
this.form.type = ''; this.form.type = ''
this.form.plcParamId = ''; this.form.plcParamId = ''
this.form.minValue = null; this.form.minValue = null
this.form.maxValue = null; this.form.maxValue = null
this.objIds = ''; this.objIds = ''
this.detailList = []; this.detailList = []
this.isEdit = false; this.isEdit = false
}, }
}, }
}; }
</script> </script>
<style>
.cascaderParent .el-cascader-panel .el-scrollbar:first-child .el-radio {
display: none;
}
</style>

View File

@ -1,30 +1,35 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-bar <search-bar
:formConfigs="formConfig" :formConfigs="formConfig"
ref="searchBarForm" ref="searchBarForm"
@headBtnClick="buttonClick" /> @headBtnClick="buttonClick"
/>
<!-- 列表 --> <!-- 列表 -->
<base-table <base-table
:page="queryParams.pageNo" :page="queryParams.pageNo"
:limit="queryParams.pageSize" :limit="queryParams.pageSize"
:table-props="tableProps" :table-props="tableProps"
:table-data="list" :table-data="list"
:max-height="tableH"> :max-height="tableH"
>
<method-btn <method-btn
v-if="tableBtn.length" v-if="tableBtn.length"
slot="handleBtn" slot="handleBtn"
:width="80" :width="80"
label="操作" label="操作"
:method-list="tableBtn" :method-list="tableBtn"
@clickBtn="handleClick" /> @clickBtn="handleClick"
/>
</base-table> </base-table>
<pagination <pagination
:page.sync="queryParams.pageNo" :page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.pageSize"
:total="total" :total="total"
@pagination="getList" /> @pagination="getList"
/>
<!-- 新增 --> <!-- 新增 -->
<base-dialog <base-dialog
:dialogTitle="addOrEditTitle" :dialogTitle="addOrEditTitle"
@ -32,56 +37,41 @@
@cancel="handleCancel" @cancel="handleCancel"
@confirm="handleConfirm" @confirm="handleConfirm"
:before-close="handleCancel" :before-close="handleCancel"
width="50%"> width='50%'
<energy-limit-add >
ref="energyLimit" <energy-limit-add ref="energyLimit" @successSubmit="successSubmit" :energyTypeList="energyTypeList" :objList="objList"/>
@successSubmit="successSubmit"
:energyTypeList="energyTypeList"
:objList="objList" />
</base-dialog> </base-dialog>
</div> </div>
</template> </template>
<script> <script>
import { import { getEnergyLimitPage, deleteEnergyLimit } from "@/api/monitoring/energyLimit";
getEnergyLimitPage, import { getEnergyTypeListAll } from "@/api/base/energyType";
deleteEnergyLimit, import { getTree } from '@/api/base/factory'
} from '@/api/monitoring/energyLimit'; import { publicFormatter } from '@/utils/dict'
import { getEnergyTypeListAll } from '@/api/base/energyType'; import EnergyLimitAdd from './components/energyLimitAdd'
import { getTree } from '@/api/analysis/energyAnalysis';
import { publicFormatter } from '@/utils/dict';
import EnergyLimitAdd from './components/energyLimitAdd';
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'method', prop: 'method',
label: '抄表方式', label: '抄表方式',
filter: publicFormatter('method'), filter: publicFormatter('method')
}, },
{ {
prop: 'objName', prop: 'objName',
label: '监控对象', label: '监控对象'
minWidth: 100,
showOverflowtooltip: true,
}, },
{ {
prop: 'objCode', prop: 'objCode',
label: '对象编码', label: '对象编码'
minWidth: 140,
showOverflowtooltip: true,
}, },
{ {
prop: 'tableName', prop: 'tableName',
label: '能源表名', label: '水/气表名',
filter: publicFormatter('table_name'), filter: publicFormatter('table_name')
minWidth: 120,
showOverflowtooltip: true,
}, },
{ {
prop: 'energyType', prop: 'energyType',
label: '能源类型', label: '能源类型'
filter: publicFormatter('energy_type'),
showOverflowtooltip: true,
}, },
{ {
prop: 'type', prop: 'type',
@ -90,22 +80,21 @@ const tableProps = [
}, },
{ {
prop: 'plcParamName', prop: 'plcParamName',
label: '监控参数', label: '监控参数'
}, },
{ {
prop: 'limitType', prop: 'limitType',
label: '指标类型', label: '指标类型',
filter: publicFormatter('monitor_index_type'), filter: publicFormatter('monitor_index_type')
}, },
{ {
prop: 'limitValue', prop: 'limitValue',
label: '阈值', label: '阈值'
}, }
]; ]
export default { export default {
name: 'EnergyLimit', name: "EnergyLimit",
components: { EnergyLimitAdd }, components: { EnergyLimitAdd },
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
@ -113,8 +102,7 @@ export default {
type: 'select', type: 'select',
label: '能源类型', label: '能源类型',
selectOptions: [], selectOptions: [],
labelField: 'labelName', param: 'energyTypeId'
param: 'energyTypeId',
}, },
{ {
type: 'select', type: 'select',
@ -122,52 +110,47 @@ export default {
selectOptions: this.getDictDatas(this.DICT_TYPE.MONITOR_INDEX_TYPE), selectOptions: this.getDictDatas(this.DICT_TYPE.MONITOR_INDEX_TYPE),
labelField: 'label', labelField: 'label',
valueField: 'value', valueField: 'value',
param: 'limitType', param: 'limitType'
}, },
{ {
type: this.$auth.hasPermi('monitoring:energy-limit:query') type: 'button',
? 'button'
: '',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary'
}, },
{ {
type: this.$auth.hasPermi('monitoring:energy-limit:create') type: 'separate'
? 'separate'
: '',
}, },
{ {
type: this.$auth.hasPermi('monitoring:energy-limit:create') type: this.$auth.hasPermi('monitoring:energy-limit:create') ? 'button' : '',
? 'button'
: '',
btnName: '新增', btnName: '新增',
name: 'add', name: 'add',
color: 'success', color: 'success',
plain: true, plain: true
}, }
], ],
tableProps, tableProps,
tableBtn: [ tableBtn: [
this.$auth.hasPermi('monitoring:energy-limit:update') this.$auth.hasPermi('monitoring:energy-limit:update')
? { ? {
type: 'edit', type: 'edit',
btnName: '编辑', btnName: '编辑'
} }
: undefined, : undefined,
this.$auth.hasPermi('monitoring:energy-limit:delete') this.$auth.hasPermi('monitoring:energy-limit:delete')
? { ? {
type: 'delete', type: 'delete',
btnName: '删除', btnName: '删除'
} }
: undefined, : undefined
].filter((v) => v), ].filter((v) => v),
tableH: this.tableHeight(260),
// //
total: 0, total: 0,
// //
list: [], list: [],
// //
addOrEditTitle: '', addOrEditTitle: "",
// //
centervisible: false, centervisible: false,
// //
@ -175,115 +158,112 @@ export default {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 20,
energyTypeId: null, energyTypeId: null,
limitType: null, limitType: null
}, },
energyTypeList: [], energyTypeList: [],
typeList: [ typeList: [
{label: '合并', value: '1'}, {label: '合并', value: '1'},
{ label: '详细', value: '2' }, {label: '详细', value: '2'}
], ],
objList: [], objList: []
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
this.getList(); this.getList();
this.getTypeList(); this.getTypeList()
// //
this.getObjTree(); this.getObjTree()
}, },
methods: { methods: {
getTypeList() { getTypeList() {
getEnergyTypeListAll().then((res) => { getEnergyTypeListAll().then((res) => {
this.formConfig[0].selectOptions = res.data || []; this.formConfig[0].selectOptions = res.data || []
this.energyTypeList = res.data || []; this.energyTypeList = res.data || []
}); })
}, },
buttonClick(val) { buttonClick(val) {
switch (val.btnName) { switch (val.btnName) {
case 'search': case 'search':
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.queryParams.energyTypeId = val.energyTypeId; this.queryParams.energyTypeId = val.energyTypeId
this.queryParams.limitType = val.limitType; this.queryParams.limitType = val.limitType
this.getList(); this.getList()
break; break
default: default:
this.addOrEditTitle = '新增'; this.addOrEditTitle = '新增'
this.centervisible = true; this.centervisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyLimit.init(); this.$refs.energyLimit.init()
}); })
} }
}, },
/** 查询列表 */ /** 查询列表 */
getList() { getList() {
getEnergyLimitPage(this.queryParams).then((response) => { getEnergyLimitPage(this.queryParams).then(response => {
let arr = response.data.list || []; let arr = response.data.list || [];
arr && arr&&arr.map(item => {
arr.map((item) => { this.typeList.map(i => {
this.typeList.map((i) => {
if (item.type === i.value) { if (item.type === i.value) {
item.type = i.label; item.type = i.label
} }
}); })
if (item.minValue && item.maxValue) { if (item.minValue && item.maxValue) {
item.limitValue = item.minValue + '-' + item.maxValue; item.limitValue = item.minValue + '-' + item.maxValue
} else if(item.minValue){ } else if(item.minValue){
item.limitValue = '最小值' + item.minValue; item.limitValue = '最小值' + item.minValue
}else if(item.maxValue){ }else if(item.maxValue){
item.limitValue = '最大值' + item.maxValue; item.limitValue = '最大值' + item.maxValue
} else { } else {
item.limitValue = ''; item.limitValue = ''
} }
}); })
this.list = arr; this.list = arr
this.total = response.data.total; this.total = response.data.total;
}); });
}, },
handleClick(val) { handleClick(val) {
switch (val.type) { switch (val.type) {
case 'edit': case 'edit':
this.addOrEditTitle = '编辑'; this.addOrEditTitle = '编辑'
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.energyLimit.init(val.data.id); this.$refs.energyLimit.init(val.data.id)
}); })
this.centervisible = true; this.centervisible = true
break; break
default: default:
this.handleDelete(val.data); this.handleDelete(val.data)
} }
}, },
handleCancel() { handleCancel() {
this.$refs.energyLimit.formClear(); this.$refs.energyLimit.formClear()
this.centervisible = false; this.centervisible = false
this.addOrEditTitle = ''; this.addOrEditTitle = ''
}, },
handleConfirm() { handleConfirm() {
this.$refs.energyLimit.submitForm(); this.$refs.energyLimit.submitForm()
}, },
successSubmit() { successSubmit() {
this.handleCancel(); this.handleCancel()
this.getList(); this.getList()
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
console.log(row); this.$modal.confirm('是否确认删除监控对象为"' + row.objName + '"的数据项?').then(function() {
this.$modal
.confirm('是否确认删除第"' + row._pageIndex + '"条数据项?')
.then(function () {
return deleteEnergyLimit(row.id); return deleteEnergyLimit(row.id);
}) }).then(() => {
.then(() => {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.getList(); this.getList();
this.$modal.msgSuccess('删除成功'); this.$modal.msgSuccess("删除成功");
}) }).catch(() => {});
.catch(() => {});
}, },
getObjTree() { getObjTree() {
getTree().then((res) => { getTree().then(res => {
this.objList = res.data || []; this.objList = res.data || []
}); })
}, }
}, }
}; };
</script> </script>

View File

@ -1,139 +1,115 @@
<template> <template>
<div class="app-container energyOverlimitLog"> <div class="app-container energyOverlimitLog">
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<search-bar <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
:formConfigs="formConfig" <el-tabs v-model="activeName" @tab-click="toggleTab">
ref="searchBarForm" <el-tab-pane label="自动抄表" name="auto"></el-tab-pane>
@headBtnClick="buttonClick" /> <el-tab-pane label="手动抄表" name="manual"></el-tab-pane>
<el-tabs
v-model="activeName"
@tab-click="toggleTab">
<el-tab-pane
label="自动抄表"
name="auto"></el-tab-pane>
<el-tab-pane
label="手动抄表"
name="manual"></el-tab-pane>
</el-tabs> </el-tabs>
<!-- 列表 --> <!-- 列表 -->
<div v-if="activeName === 'auto'"> <div v-if="activeName === 'auto'">
<base-table <base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list"
:page="queryParams.pageNo"
:limit="queryParams.pageSize"
:table-props="tableProps"
:table-data="list"
:max-height="tableH" /> :max-height="tableH" />
</div> </div>
<div v-if="activeName === 'manual'"> <div v-if="activeName === 'manual'">
<base-table <base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps2"
:page="queryParams.pageNo" :table-data="list2" :max-height="tableH" />
:limit="queryParams.pageSize"
:table-props="tableProps2"
:table-data="list2"
:max-height="tableH" />
</div> </div>
<pagination <pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total"
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList" /> @pagination="getList" />
</div> </div>
</template> </template>
<script> <script>
import { getEnergyOverlimitLogPage } from '@/api/monitoring/energyOverlimitLog'; import { getEnergyOverlimitLogPage } from "@/api/monitoring/energyOverlimitLog";
import { getEnergyTypeListAll } from '@/api/base/energyType'; import { getEnergyTypeListAll } from "@/api/base/energyType";
import { publicFormatter } from '@/utils/dict'; import { publicFormatter } from '@/utils/dict'
import { parseTime } from '@/utils/ruoyi'; import { parseTime } from '@/utils/ruoyi'
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
const tableProps = [ const tableProps = [
{ {
prop: 'objName', prop: 'objName',
label: '监控对象', label: '监控对象'
}, },
{ {
prop: 'objCode', prop: 'objCode',
label: '对象编码', label: '对象编码'
}, },
{ {
prop: 'energyType', prop: 'energyType',
label: '能源类型', label: '能源类型'
filter: publicFormatter('energy_type'),
}, },
{ {
prop: 'type', prop: 'type',
label: '监控模式', label: '监控模式'
}, },
{ {
prop: 'paramName', prop: 'paramName',
label: '监控参数', label: '监控参数'
}, },
{ {
prop: 'limitType', prop: 'limitType',
label: '指标类型', label: '指标类型',
filter: publicFormatter('monitor_index_type'), filter: publicFormatter('monitor_index_type')
}, },
{ {
prop: 'realityValue', prop: 'realityValue',
label: '实际值', label: '实际值'
}, },
{ {
prop: 'limitValue', prop: 'limitValue',
label: '阈值', label: '阈值'
}, },
{ {
prop: 'overValue', prop: 'overValue',
label: '超出值', label: '超出值'
}, },
{ {
prop: 'time', prop: 'time',
label: '提醒时间', label: '提醒时间',
filter: parseTime, filter: parseTime,
minWidth: 160, minWidth: 160
}, }
]; ]
const tableProps2 = [ const tableProps2 = [
{ {
prop: 'energyType', prop: 'energyType',
label: '能源类型', label: '能源类型'
filter: publicFormatter('energy_type'),
}, },
{ {
prop: 'limitType', prop: 'limitType',
label: '指标类型', label: '指标类型',
filter: publicFormatter('monitor_index_type'), filter: publicFormatter('monitor_index_type')
}, },
{ {
prop: 'realityValue', prop: 'realityValue',
label: '实际值', label: '实际值'
}, },
{ {
prop: 'limitValue', prop: 'limitValue',
label: '阈值', label: '阈值'
}, },
{ {
prop: 'overValue', prop: 'overValue',
label: '超出值', label: '超出值'
}, },
{ {
prop: 'time', prop: 'time',
label: '提醒时间', label: '提醒时间',
filter: parseTime, filter: parseTime,
minWidth: 160, minWidth: 160
}, }
]; ]
export default { export default {
name: 'EnergyOverlimitLog', name: "EnergyOverlimitLog",
mixins: [tableHeightMixin],
data() { data() {
return { return {
formConfig: [ formConfig: [
{ {
type: 'select', type: 'select',
label: '能源类型', label: '能源类型',
labelField: 'labelName',
selectOptions: [], selectOptions: [],
param: 'energyTypeId', param: 'energyTypeId'
}, },
{ {
type: 'select', type: 'select',
@ -141,100 +117,102 @@ export default {
selectOptions: this.getDictDatas(this.DICT_TYPE.MONITOR_INDEX_TYPE), selectOptions: this.getDictDatas(this.DICT_TYPE.MONITOR_INDEX_TYPE),
labelField: 'label', labelField: 'label',
valueField: 'value', valueField: 'value',
param: 'indexType', param: 'indexType'
}, },
{ {
type: 'button', type: 'button',
btnName: '查询', btnName: '查询',
name: 'search', name: 'search',
color: 'primary', color: 'primary'
}, }
], ],
activeName: 'auto', activeName: 'auto',
tableProps, tableProps,
tableProps2, tableProps2,
tableH: this.tableHeight(260),
total: 0, total: 0,
list: [], list: [],
list2: [], list2: [],
heightNum: 300,
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
pageSize: 20, pageSize: 20,
energyTypeId: '', energyTypeId: '',
indexType: '', indexType: '',
method: '1', method: '1'
}, },
typeList: [ typeList: [
{ id: 1, name: '合并' }, { id: 1, name: '合并' },
{ id: 2, name: '详细' }, { id: 2, name: '详细' }
], ]
}; };
}, },
created() { created() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(260)
})
this.getList(); this.getList();
this.getTypeList(); this.getTypeList()
}, },
methods: { methods: {
buttonClick(val) { buttonClick(val) {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
this.queryParams.energyTypeId = val.energyTypeId; this.queryParams.energyTypeId = val.energyTypeId
this.queryParams.indexType = val.indexType; this.queryParams.indexType = val.indexType
this.getList(); this.getList()
}, },
/** 查询列表 */ /** 查询列表 */
getList() { getList() {
getEnergyOverlimitLogPage(this.queryParams).then((response) => { getEnergyOverlimitLogPage(this.queryParams).then(response => {
let arr = response.data.list || []; let arr = response.data.list || [];
arr && arr && arr.map((item) => {
arr.map((item) => {
this.typeList.map((i) => { this.typeList.map((i) => {
if (item.type === i.id) { if (item.type === i.id) {
item.type = i.name; item.type = i.name
} }
}); })
if (item.minValue && item.maxValue) { if (item.minValue && item.maxValue) {
item.limitValue = item.minValue + '-' + item.maxValue; item.limitValue = item.minValue + '-' + item.maxValue
} else if (item.minValue) { } else if (item.minValue) {
item.limitValue = '最小值' + item.minValue; item.limitValue = '最小值' + item.minValue
} else if (item.maxValue) { } else if (item.maxValue) {
item.limitValue = '最大值' + item.maxValue; item.limitValue = '最大值' + item.maxValue
} else { } else {
item.limitValue = ''; item.limitValue = ''
} }
}); })
if (this.queryParams.method === '1') { if (this.queryParams.method === '1') {
this.list = arr; this.list = arr
this.list2 = []; this.list2 = []
} else { } else {
this.list2 = arr; this.list2 = arr
this.list1 = []; this.list1 = []
} }
this.total = response.data.total; this.total = response.data.total;
}); });
}, },
getTypeList() { getTypeList() {
getEnergyTypeListAll().then((res) => { getEnergyTypeListAll().then((res) => {
console.log(res); console.log(res)
this.formConfig[0].selectOptions = res.data || []; this.formConfig[0].selectOptions = res.data || []
}); })
}, },
toggleTab() { toggleTab() {
if (this.activeName === 'auto') { if (this.activeName === 'auto') {
this.queryParams.method = '1'; this.queryParams.method = '1'
} else { } else {
this.queryParams.method = '2'; this.queryParams.method = '2'
}
this.queryParams.pageNo = 1
this.getList()
}
} }
this.queryParams.pageNo = 1;
this.getList();
},
},
}; };
</script> </script>
<style lang='scss'> <style lang='scss'>
.energyOverlimitLog { .energyOverlimitLog {
.el-tabs__nav::after { .el-tabs__nav::after {
content: ''; content: "";
position: absolute; position: absolute;
left: 0; left: 0;
bottom: 0; bottom: 0;

Some files were not shown because too many files have changed in this diff Show More