【if else美化】
// 前
if(newValue.length === 0){this.btn_disable = true
} else{this.btn_disable = false
}
// 后
this.btn_disable = newValue.length === 0
【五层数据联动】冗余待改善
<template><!-- 数据展示页面 --><div class="container"><!-- 头部 --><div class="head"><div class="title">{{ this.$route.meta.title }}</div><div class="top"><div class="left">场景:</div><!-- 展开/收起 --><div class="right"><a v-if="sceneList > 20" @click="fold = !fold" style="margin-right: 34px">{{ fold ? "收起" : "展开" }}<a-icon :type="fold ? 'up' : 'down'" /></a></div><!-- 场景列表 --><div class="center"><template v-for="(item, index) in sceneList"><a-checkable-tagv-if="index < 16 || fold":key="index":checked="selectedScene == item.id"@change="handleSelectScene(item)":class="selectedScene == item.id ? 'tag-disabled-checked' : ''"style="margin: 0 25px 0 0">{{ item.name }}</a-checkable-tag></template></div></div></div><div class="content"><a-card><!-- 下左侧 --><a-card-grid style="width: 28%; height: 650px"><!-- 动作 --><div style="width: 100%; height: 35%; padding: 0px"><div class="border_title">动作</div><div style="margin-top:13px;height: 135px; overflow: auto"><template v-for="item in actionList"><a-checkable-tag:key="item.id":checked="selectedAction == item.id"@change="handleSelectAction(item)":class="selectedAction == item.id ? 'tag-disabled-checked' : ''"style="margin-bottom: 20px">{{ item.name }}</a-checkable-tag></template></div></div><div style="margin: 0 -24px 0 -24px"><hr style="margin: 13px 0 22px; border: none; height: 1px; background: #ebebeb" /></div><!-- 设备 --><div style="width: 100%; height: 65%"><div class="border_title">设备</div><a-input-search placeholder="搜索设备" class="search_ic" @search="onSearch" /><div class="cla_equip"><template v-for="item in equipmentList"><a-checkable-tag:key="item.deviceId":checked="selectedEquipment == item.deviceId"@change="handleSelectEquipment(item)":class="selectedEquipment == item.deviceId ? 'ant-tag-checkable-checked' : ''"style="margin-bottom: 20px; display: block"><span>{{ item.deviceName }}</span></a-checkable-tag></template></div></div></a-card-grid><!-- 下右侧 --><a-card-grid style="width: 72%; height: 650px"><div><a-form layout="inline" style="height: 6%"><!-- 时间选择 --><a-form-item><a-select v-model="selectedTime" @change="onTimeChange" class="noboder"><a-icon slot="suffixIcon" type="caret-down" style="color: #0c6fe1; margin-left: 9px" /><a-select-option v-for="item in timeList" :key="item.id" :value="item.value">{{item.value}}</a-select-option></a-select></a-form-item><!-- 传感器属性选择 --><a-form-item class="min_wid" style="margin-left: 20px"><a-selectmode="multiple"placeholder="请选择传感器":default-value="selectedSensors"v-model="selectedSensors"style="max-width: 500px"maxSelected="4"@change="onCheckChange"><a-select-option v-for="i in sensorList" :value="i.propertyIdentifier" :key="i.id">{{ i.propertyName }}</a-select-option></a-select></a-form-item><!-- 三个按钮 --><a-form-item style="float: right"><a-buttonstyle="margin-right: 15px; border-radius: 4px"type="primary"icon="upload"@click="exportFile">导出数据</a-button><a-radio-group v-model="mode" @change="changeView"><a-radio-button value="chart" style="border-radius: 4px 0px 0px 4px">图表</a-radio-button><a-radio-button value="table" style="border-radius: 0px 4px 4px 0px">表格</a-radio-button></a-radio-group></a-form-item></a-form></div><div v-show="no_res" class="wait_cla"><img class="img_center" src="@/assets/nothing.png" alt="" /><div class="tips">很抱歉,当前条件下数据为空</div></div><divv-show="mode === 'chart'"id="linechart"class="hid":style="{ width: '100%', height: '580px', padding: '30px' }"></div><div class="table_cla" v-show="mode === 'table'"><a-table:rowKey="getId":dataSource="tableData":pagination="pagination":loading="loading"@change="handleTableChange"><a-table-column title="时间" :sorter="true" :sortOrder="sortOrder" dataIndex="time"><template slot-scope="value">{{ formatDate(value) }}</template></a-table-column><a-table-column title="标识符" dataIndex="attribute"><template slot-scope="value">{{ value }}</template></a-table-column><a-table-column title="原始值" dataIndex="value"><template slot-scope="value">{{ value }}</template></a-table-column></a-table></div></a-card-grid></a-card></div></div>
</template>
<script>
import * as echarts from 'echarts'
import download from '@/utils/download'
import {getAllScenes,getActions,searchEquipment,getTimeSlot,getProperty,getChart,exportData,getTable
} from '@/api/dataDisplay'
import uuidv1 from 'uuid/v1'
import moment from 'moment'export default {data () {return {sceneList: [],equipmentList: [],actionList: [],timeList: [],sensorList: [],selectedScene: undefined,selectedAction: undefined,selectedEquipment: undefined,selectedSensors: [],selectedTime: undefined,chartData: {x: [],series: []},tableData: [], // 表格绑定数据sortOrder: 'descend', // 排序loading: false, // 是否加载中pagination: {current: 1, // 当前页码pageSize: 7, // 每页条数total: 0, // 总数showTotal: total => `共${total}项`, // 显示总数pageSizeOptions: ['5', '10', '20', '50', '100'], // 分页选项showSizeChanger: true, // determine whether pageSize can be changedshowQuickJumper: true // determine whether you can jump to pages directly},fold: true, // 场景展开或收起up: false, // 传感器下拉控制mode: 'chart', // 控制表格/图表显示no_res: true // 空结果显示与否}},watch: {selectedSensors (newValue, oldValue) {if (this.mode === 'table') {this.tableData = []this.showTable()} else {this.no_res = truethis.handleChart()}}},mounted () {this.showScenes()setTimeout(() => {this.onCheckChange()}, 1000)},methods: {// 获取随机列表唯一码getId () {return uuidv1().replace(/-/g, '')},// 初始化时获取所有场景async showScenes () {try {const result = await getAllScenes()this.sceneList = result.dataif (this.sceneList.length !== 0) {this.selectedScene = this.sceneList[0].idthis.showActions()}if (this.sceneList.length === 0) {this.actionList = []this.equipmentList = []this.timeList = []this.sensorList = []this.selectedScene = undefinedthis.selectedAction = undefinedthis.selectedEquipment = undefinedthis.selectedSensors = undefinedthis.selectedTime = undefined}} catch (e) {console.log(e)}},// 获取动作列表,默认第一个场景async showActions () {try {const result = await getActions(this.selectedScene)this.actionList = result.dataif (this.actionList.length !== 0) {this.selectedAction = this.actionList[0].idthis.showEquipment()} else {this.equipmentList = []this.timeList = []this.sensorList = []this.selectedAction = undefinedthis.selectedEquipment = undefinedthis.selectedSensors = undefinedthis.selectedTime = undefined}} catch (e) {console.log(e)}},// 获取设备列表async showEquipment (value) {try {const prama = {sceneId: this.selectedScene,actionId: this.selectedAction,deviceName: value}const result = await searchEquipment(prama)this.equipmentList = result.dataif (this.equipmentList.length !== 0) {this.selectedEquipment = this.equipmentList[0].deviceIdthis.showTimeSlot()} else {this.timeList = []this.sensorList = []this.selectedEquipment = undefinedthis.selectedSensors = undefinedthis.selectedTime = undefined}} catch (e) {console.log(e)}},// 获取时间段async showTimeSlot () {this.timeList = []try {const prama = {sceneId: this.selectedScene,actionId: this.selectedAction,deviceId: this.selectedEquipment}const result = await getTimeSlot(prama)if (result.data.length !== 0) {result.data.forEach(item => {const i = item.startTime + '~' + item.endTime.slice(-8)this.timeList.push({id: item.id,value: i.replace(/-/g, '.')})})this.selectedTime = this.timeList[0].valuethis.showProperty()} else {this.sensorList = []this.selectedSensors = undefinedthis.selectedTime = undefined}} catch (e) {console.log(e)}},// 获取属性async showProperty () {try {this.selectedSensors = []const prama = {sceneId: this.selectedScene,actionId: this.selectedAction,deviceId: this.selectedEquipment,startTime: this.selectedTime ? this.selectedTime.slice(0, 19).replace(/\./g, '-') : '',endTime: this.selectedTime? this.selectedTime.slice(0, 11).replace(/\./g, '-') + this.selectedTime.slice(-8): ''}const result = await getProperty(prama)this.sensorList = result.dataif (this.sensorList[0]) {this.selectedSensors.push(this.sensorList[0].propertyIdentifier)} else {this.selectedSensors = undefined}} catch (e) {console.log(e)}},// 获取并整合图表原始数据async handleChart () {try {this.chartData = {x: [],series: []}const prama = {propertyIdentifierList: this.selectedSensors,deviceId: this.selectedEquipment,startTime: this.selectedTime.slice(0, 19).replace(/\./g, '-'),endTime: this.selectedTime.slice(0, 11).replace(/\./g, '-') + this.selectedTime.slice(-8)}const result = await getChart(prama)this.selectedSensors.forEach((item, index) => {const yData = []for (const i in result.data.chart_data) {// 控制x轴只push一次if (index === 0) {this.chartData.x.push(i)}yData.push(result.data.chart_data[i][index])}this.chartData.series.push({name: item,type: 'line',data: yData})})console.log(this.chartData)this.showChart()} catch (e) {console.log(e)this.no_res = true}},// 导出数据async exportFile () {try {const { data } = await exportData({propertyIdentifierList: this.selectedSensors,deviceId: this.selectedEquipment,startTime: this.selectedTime.slice(0, 19).replace(/\./g, '-'),endTime: this.selectedTime.slice(0, 11).replace(/\./g, '-') + this.selectedTime.slice(-8)})download(data)} catch (e) {console.log(e)}},// 表格展示async showTable () {try {this.loading = trueconst prama = {propertyIdentifierList: this.selectedSensors,sceneId: this.selectedScene,actionId: this.selectedAction,deviceId: this.selectedEquipment,startTime: this.selectedTime ? this.selectedTime.slice(0, 19).replace(/\./g, '-') : '',endTime: this.selectedTime? this.selectedTime.slice(0, 11).replace(/\./g, '-') + this.selectedTime.slice(-8): '',sortType: this.sortOrder === 'ascend' ? '1' : '-1',pageNum: this.pagination.current,pageSize: this.pagination.pageSize}const result = await getTable(prama)this.tableData = result.data.listif (result.data.count) {this.pagination.total = result.data.count}} catch (e) {console.log(e)} finally {this.loading = false}},// 切换场景handleSelectScene (e) {this.selectedScene = JSON.stringify(e.id)this.showActions()},// 切换动作handleSelectAction (e) {this.selectedAction = JSON.stringify(e.id)this.showEquipment()},// 切换设备handleSelectEquipment (e) {this.selectedEquipment = JSON.stringify(e.deviceId)this.showTimeSlot()},// 切换时间onTimeChange (item) {console.log('时间' + item)this.showProperty()this.onCheckChange()},// 切换传感器属性多选onCheckChange (values) {console.log('传感器属性' + values)if (values) {if (values.length > 4) {this.$message.warning('最多选择4个传感器')this.selectedSensors = []}}},// 切换表格、图表视图changeView () {console.log('当前页签: ' + this.mode)if (this.mode === 'table') {this.showTable()} else {this.handleChart()}},// 渲染折线图showChart () {try {// 基于准备好的dom,初始化echarts实例var chartDom = document.getElementById('linechart')var myChart = echarts.init(chartDom)var option// 指定图表的配置项和数据option = {title: {},legend: {data: this.selectedSensors},grid: {left: '3%',right: '4%',bottom: '50px',containLabel: true},dataZoom: [{type: 'inside',start: 0,end: 80},{start: 0,end: 80}],xAxis: {type: 'category',boundaryGap: false,data: this.chartData.x},yAxis: {type: 'value'},series: this.chartData.series}myChart.clear()// 使用刚指定的配置项和数据显示图表。myChart.setOption(option)this.no_res = false} catch (e) {console.log(e)this.no_res = true}},// 改变表格传参async handleTableChange (pagination, filters, sorter) {if (pagination !== undefined) {this.pagination.current = pagination.currentthis.pagination.pageSize = pagination.pageSizethis.sortOrder = sorter.order === 'descend' ? '-1' : '1'}// this.pagination.current = 1// this.pagination.pageSize = 10// this.sortOrder = '-1'await this.showTable()},// 时间格式化formatDate (value) {return moment(value).format('YYYY-MM-DD HH:mm:ss.SSS')},onOk (value) {console.log('onOk: ', value)},// 设备-搜索onSearch (value) {this.showEquipment(value)}}
}
</script>
<style lang="less" scoped>
.container {color: rgba(0, 0, 0, 0.85);width: 100%;overflow: hidden;.head {background-color: #fff;padding: 30px 32px 20px;.title {font-weight: 500;font-size: 20px;/deep/ .ant-select-selection {border-radius: 4px;}}.top {padding-top: 20px;.left {width: 75px;padding-left: 30px;float: left;}.right {width: 110px;float: right;}.center {margin: 0px 110px 0px 75px;width: 84%;}}}.content {margin: 32px;height: 650px;border-radius: 16px;overflow: hidden;.border_title {font-size: 16px;line-height: 16px;color: rgba(0, 0, 0, 0.85);border-left: 4px solid #188efc;padding-left: 10px;}.search_ic {width: 376px;height: 32px;margin: 20px 0;/deep/ .ant-input {border-radius: 5px;}}.cla_equip {height: 250px;overflow: auto;/deep/ .ant-tag-checkable {span {padding: 0 10px;}}/deep/ .ant-tag-checkable-checked {color: rgba(0, 0, 0, 0.65);background: #fff;span {background: #e6f0fc;border-radius: 4px;padding: 0 10px;}}}.noboder {min-width: 240px;/deep/ .ant-select-selection--single {border: none;box-shadow: 0 0px 0px #fff;}/deep/ .ant-select-open {border: none;box-shadow: 0 0px 0px #fff;}/deep/ .ant-select-enabled {border: none;box-shadow: 0 0px 0px #fff;}}.min_wid {/deep/ .ant-form-item-control-wrapper {min-width: 200px;}}.table_cla {padding: 10px 16px 10px 0;overflow: auto;height: 500px;}}
}
.wait_cla {display: flex;flex-direction: column;justify-content: center;min-height: 100%;align-items: center;
}
/deep/ .ant-tag {font-size: 14px;
}
/deep/ .ant-tag-checkable-checked {background: #e6f0fc;border-radius: 4px;color: #0c6fe1;
}
.hid {overflow: hidden;
}
</style>