| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- <template>
- <div>
- <el-breadcrumb separator-class="el-icon-arrow-right">
- <el-breadcrumb-item>防治系统</el-breadcrumb-item>
- <el-breadcrumb-item :to="{ path: '/index/scd' }"
- >杀虫灯</el-breadcrumb-item
- >
- <el-breadcrumb-item>害虫统计</el-breadcrumb-item>
- </el-breadcrumb>
- <el-button type="success" size="small" @click="goBackPage()"
- ><i class="el-icon--left el-icon-d-arrow-left"></i>返回</el-button
- >
- <div class="equipInfo">
- <div class="equipMsg">
- <span>设备ID:{{ id }}</span>
- <span>设备名称:{{ equipStatus.equip_name || '无' }}</span>
- <span>位置:{{ equipStatus.lng }}</span>
- </div>
- <DateSearch @dateChange="dateChange"></DateSearch>
- </div>
- <div class="ctrl-check">
- <el-button type="primary" size="mini" @click="refresh">刷新</el-button>
- </div>
- <!-- 统计图 -->
- <div v-if="viewSwitch">
- <div>
- <el-row :gutter="10">
- <el-col :md="24" :lg="14">
- <el-card class="box-card">
- <div class="charts">
- <highcharts :options="options"></highcharts>
- </div>
- </el-card>
- </el-col>
- <el-col :md="24" :lg="10">
- <el-card class="box-card">
- <div class="pie">
- <highcharts :options="options2"></highcharts>
- </div>
- </el-card>
- </el-col>
- </el-row>
- <div class="dataTableSearch">
- <div>
- <el-button type="primary" size="mini">导出</el-button>
- </div>
- </div>
- </div>
- <el-card class="box-card">
- <el-table :data="tableData" stripe style="width: 100%">
- <el-table-column
- v-for="(item, index) in tableHeadTxt"
- :key="index"
- :prop="item[1]"
- :label="item[0]"
- :width="setWidth(item)"
- >
- <template slot-scope="scope">{{
- scope.row[scope.column.property]
- }}</template>
- </el-table-column>
- </el-table>
- <el-pagination
- background
- layout="prev, pager, next"
- :total="total"
- :current-page="queryInfo.page"
- @current-change="changePage"
- ></el-pagination>
- </el-card>
- </div>
- </div>
- </template>
- <script>
- import DateSearch from '@/components/DateSearch'
- export default {
- data() {
- return {
- id: this.$route.params.e_id,
- lineTime: '',
- dataTime: '',
- options: {},
- worms: [
- {
- value: 1,
- label: '蛾子'
- },
- {
- value: 2,
- label: '蚊子'
- }
- ],
- options2: {},
- // 状态信息
- equipStatus: {},
- // 统计图表信息
- equipChartData: [],
- //总数据条数
- total: 0,
- // 动态表头
- tableHeadTxt: [
- ['设备开关', 'ds'],
- ['工作状态', 'ws'],
- ['灯管状态', 'tbs'],
- ['雨控状态', 'rps'],
- ['温控状态', 'tps'],
- ['倾倒状态', 'dps'],
- ['定时(h)', 'tt'],
- ['电击次数', 'ct'],
- ['温度(°C)', 'at'],
- ['湿度(%)', 'ah'],
- ['充电电压(v)', 'cv'],
- ['电池电压(v)', 'bv'],
- ['上报时间', 'addtime']
- ],
- // 表格数据
- tableData: [],
- timeRange: '',
- queryInfo: {
- begin: '',
- end: '',
- e_id: this.$route.params.e_id,
- d_id: this.$route.params.d_id,
- page: 1
- },
- viewSwitch: 1,
- viewSwitch2: 1,
- //图表实时否有数据
- isEchartData: true,
- //表格和图表按钮样式切换参数
- display: '0', //0代表表格、1代表图表
- displayView: true,
- // 表格和图表显示切换控制
- showControl: true,
- //echarts图表参数
- echartOptions: [],
- // 动态表头
- tableHead: [],
- // 表格数据
- hisData: []
- }
- },
- methods: {
- //获取折线数据
- getChartDataList() {
- this.$axios({
- method: 'POST',
- url: '/api/api_gateway?method=forecast.worm_lamp.device_polyline_data',
- data: this.qs.stringify({
- device_type_id: 2,
- d_id: this.queryInfo.d_id,
- start_time: this.queryInfo.begin,
- end_time: this.queryInfo.end
- })
- }).then((res) => {
- if (res.data.message == '') {
- var ChartData = [
- {
- name: '温度(°C)',
- dat: []
- },
- {
- name: '湿度(%)',
- dat: []
- },
- {
- name: '击虫次数',
- dat: []
- }
- ]
- var data = res.data.data
- this.options = {}
- this.options2 = {}
- if (data.length > 0) {
- for (let item of data) {
- ChartData[0].dat.unshift([
- item.addtime * 1000 + 8 * 3600000,
- item.temperature
- ])
- ChartData[1].dat.unshift([
- item.addtime * 1000 + 8 * 3600000,
- item.humidity
- ])
- ChartData[2].dat.unshift([
- item.addtime * 1000 + 8 * 3600000,
- item.others
- ])
- }
- this.options = {
- title: {
- text: '环境温湿度',
- align: 'left'
- },
- subtitle: {
- text: ''
- },
- xAxis: {
- crosshair: true, //十字基准线
- type: 'datetime',
- dateTimeLabelFormats: {
- //根据时间间距X轴自动显示哪种格式
- millisecond: '%H:%M:%S.%L',
- second: '%H:%M:%S',
- minute: '%H:%M',
- hour: '%H:%M',
- day: '%m-%d',
- week: '%m-%d',
- month: '%Y-%m',
- year: '%Y'
- }
- },
- yAxis: {
- title: {
- text: ''
- }
- },
- legend: {
- // layout: 'vertical',
- align: 'right',
- verticalAlign: 'top'
- },
- plotOptions: {
- series: {
- label: {
- connectorAllowed: false
- },
- pointStart: 2010
- }
- },
- series: [
- {
- name: ChartData[0].name,
- data: ChartData[0].dat
- },
- {
- name: ChartData[1].name,
- data: ChartData[1].dat
- }
- ],
- colors: ['#00e29d', '#6cbbff', '#ff3f3f'],
- credits: {
- //去掉默认的highcharts.com
- enabled: false
- },
- tooltip: {
- // crosshairs: true,
- shared: true, //折线共享
- headerFormat: '<b>{point.x:%Y-%m-%e %H:%M:%S}</b><br>'
- },
- responsive: {
- rules: [
- {
- condition: {
- maxWidth: 500
- },
- chartOptions: {
- legend: {
- layout: 'horizontal',
- align: 'center',
- verticalAlign: 'bottom'
- }
- }
- }
- ]
- }
- }
- this.options2 = {
- title: {
- text: '击虫次数',
- align: 'left'
- },
- subtitle: {
- text: ''
- },
- xAxis: {
- crosshair: true, //十字基准线
- type: 'datetime',
- dateTimeLabelFormats: {
- //根据时间间距X轴自动显示哪种格式
- millisecond: '%H:%M:%S.%L',
- second: '%H:%M:%S',
- minute: '%H:%M',
- hour: '%H:%M',
- day: '%m-%d',
- week: '%m-%d',
- month: '%Y-%m',
- year: '%Y'
- }
- },
- yAxis: {
- title: {
- text: ''
- }
- },
- legend: {
- // layout: 'vertical',
- align: 'right',
- verticalAlign: 'top'
- },
- plotOptions: {
- series: {
- label: {
- connectorAllowed: false
- },
- pointStart: 2010
- }
- },
- series: [
- {
- name: ChartData[2].name,
- data: ChartData[2].dat
- }
- ],
- colors: ['#00e29d', '#6cbbff', '#ff3f3f'],
- credits: {
- //去掉默认的highcharts.com
- enabled: false
- },
- tooltip: {
- // crosshairs: true,
- shared: true, //折线共享
- headerFormat: '<b>{point.x:%Y-%m-%e %H:%M:%S}</b><br>'
- },
- responsive: {
- rules: [
- {
- condition: {
- maxWidth: 500
- },
- chartOptions: {
- legend: {
- layout: 'horizontal',
- align: 'center',
- verticalAlign: 'bottom'
- }
- }
- }
- ]
- }
- }
- }
- }
- })
- },
- //获取表格数据
- getHisDataList() {
- this.$axios({
- method: 'POST',
- url: '/api/api_gateway?method=forecast.worm_lamp.device_history_data',
- data: this.qs.stringify({
- device_type_id: 2,
- device_id: this.queryInfo.e_id,
- start_time: this.queryInfo.begin,
- end_time: this.queryInfo.end,
- page: this.queryInfo.page
- })
- }).then((res) => {
- if (res.data.message == '') {
- this.total = res.data.data.counts
- var data = res.data.data.data
- this.tableData = []
- if (data.length > 0) {
- for (var i = 0; i < data.length; i++) {
- var dht = data[i].d_h_t
- dht.addtime = this.formatTime(dht.addtime * 1000)
- dht.ds = dht.ds == 0 ? '关' : '开'
- dht.rps = dht.rps == 0 ? '正常' : '雨控'
- dht.tps = dht.tps == 0 ? '正常' : '保护'
- dht.tbs = dht.tbs == 0 ? '正常' : '保护'
- dht.dps = dht.dps == 0 ? '正常' : '保护'
- dht.cv=dht.cv/1000
- dht.bv=dht.bv/1000
- switch (dht.ws) {
- case 0:
- dht.ws = '待机'
- break
- case 1:
- dht.ws = '工作'
- break
- case 2:
- dht.ws = '充电'
- break
- }
- this.tableData.push(dht)
- }
- }
- }
- })
- },
- dateChange(data) {
- this.queryInfo.page = 1
- this.queryInfo.begin = data.begin
- this.queryInfo.end = data.end
- this.getHisDataList()
- this.getChartDataList()
- },
- //改变page
- changePage(val) {
- this.queryInfo.page = val
- this.getHisDataList()
- },
- setWidth(item) {
- if (item[1] == 'addtime') {
- return 180 + 'px'
- }
- },
- refresh() {
- this.$axios({
- method: 'POST',
- url: '/api/api_gateway?method=forecast.send_control.get_device_config',
- data: this.qs.stringify({
- device_type_id: 2,
- d_id: this.queryInfo.d_id,
- control_type: 'data'
- })
- }).then((res) => {
- if (res.data.message==''){
- this.$message.success('刷新成功')
- } else {
- this.$message.err('刷新失败')
- }
- })
- },
- //返回上一页
- goBackPage() {
- this.$router.go(-1)
- }
- },
- components: {
- DateSearch
- }
- }
- </script>
- <style lang='less' scoped>
- .box-card {
- position: relative;
- }
- .equipInfo {
- .equipMsg {
- font-size: 14px;
- color: #3d3d3d;
- span {
- margin-left: 5px;
- }
- }
- display: flex;
- justify-content: space-between;
- margin-top:10px;
- margin-bottom: 8px;
- }
- .time-check {
- display: flex;
- justify-content: space-between;
- .el-input__inner {
- margin-left: 10px;
- width: 222px;
- }
- .viewSwitch {
- margin-left: 10px;
- }
- }
- .chartsSelect {
- text-align: right;
- position: absolute;
- z-index: 999;
- left: 0;
- right: 21px;
- }
- .charts,
- .pie {
- height: 423px;
- }
- .equipStatus {
- display: flex;
- justify-content: center;
- margin: 10px 0;
- .equipIcon {
- margin-right: 14%;
- }
- .equipParams {
- min-width: 80px;
- line-height: 27px;
- p {
- color: #a6a6a6;
- }
- }
- }
- .dataTableSearch {
- display: flex;
- justify-content: space-between;
- margin: 20px 0;
- .el-input__inner {
- width: 222px;
- }
- }
- .echarts {
- width: 100%;
- height: 300px;
- }
- .ctrl-check {
- margin-bottom: 20px;
- }
- </style>
|