123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- <template>
- <div class="mod-role">
- <el-container>
- <!-- form表单 -->
- <el-header>
- <div class="rect rect-form">
- <el-form :inline="true" :model="form" @keyup.enter.native="getDataList()" size="mini" ref="form">
- <!-- <el-form-item style="width: 140px">
- <el-select placeholder="牧场" v-model="form.farmId" :disabled="farmId > 0">
- <el-option
- v-for="item in farmList"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item> -->
- <el-form-item style="width: 140px">
- <el-select placeholder="参数名称" v-model="form.thresholdType">
- <el-option
- v-for="item in thresholdTypes"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button @click="getDataList()" icon="el-icon-search">查 询</el-button>
- </el-form-item>
- <el-form-item>
- <el-button
- icon="el-icon-circle-close"
- @click="clearAll">清 空</el-button>
- </el-form-item>
- </el-form>
- </div>
- </el-header>
- <!-- role表格 -->
- <el-main>
- <div class="rect rect-table">
- <!-- 新增 删除按钮 -->
- <el-form inline size="mini">
- <el-form-item>
- <el-button
- icon="el-icon-plus"
- @click="addOrUpdateHandle()">
- 新 增
- </el-button>
- </el-form-item>
- <el-form-item>
- <el-button
- icon="el-icon-delete"
- type="danger"
- @click="deleteHandle()"
- :disabled="dataListSelections.length <= 0">
- 删 除
- </el-button>
- </el-form-item>
- <el-form-item>
- <el-button
- icon="el-icon-download"
- type="danger"
- @click="exportExcel()">
- 导出Excel
- </el-button>
- </el-form-item>
- </el-form>
-
- <el-table
- :data="dataList"
- border
- stripe
- v-loading="dataListLoading"
- @selection-change="selectionChangeHandle"
- style="width: 100%;"
- size="mini"
- height="540"
- :header-cell-style="{background:'rgb(245,245,245)',color:'#000',height: '45px',fontSize: '13px',fontWeight: 'normal',borderBottom: '1px solid #ccc'}"
- :cell-style="{color: '#888',fontSize: '13px'}">
- <el-table-column
- type="selection"
- header-align="center"
- align="center"
- width="50">
- </el-table-column>
- <!-- <el-table-column
- prop="farmName"
- header-align="center"
- align="center"
- label="牧场名称">
- <template slot-scope="scope">
- <span>{{thresholdTypes[scope.row.thresholdType - 1].label}}</span>
- </template>
- </el-table-column> -->
- <el-table-column
- header-align="center"
- align="center"
- label="参数名称">
- <template slot-scope="scope">
- <span>{{thresholdTypes[scope.row.thresholdType - 1].label}}</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="thresholdValue"
- header-align="center"
- align="center"
- label="阈值">
- </el-table-column>
- <el-table-column
- header-align="center"
- align="center"
- label="操作">
- <template slot-scope="scope">
- <el-button
- type="text"
- size="mini"
- style="color: rgb(24,144,255)"
- @click="addOrUpdateHandle(scope.row.id)">
- 编辑
- </el-button>
- <el-button
- type="text"
- size="mini"
- @click="deleteHandle(scope.row.id)"
- style="color: rgb(24,144,255)">
- 删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @size-change="sizeChangeHandle"
- @current-change="currentChangeHandle"
- :current-page="pageIndex"
- :page-sizes="[10, 20, 50, 100]"
- :page-size="pageSize"
- :total="totalPage"
- layout="total, sizes, prev, pager, next, jumper">
- </el-pagination>
- <!-- 弹窗, 新增 / 修改 -->
- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" :thresholdTypes="thresholdTypes"></add-or-update>
- </div>
- </el-main>
-
-
- </el-container>
- </div>
- </template>
- <script>
- import AddOrUpdate from './ealarm-add-or-update'
- export default {
- data () {
- return {
- form: {
- thresholdType: '',
- // farmId: ''
- },
- dataList: [],
- pageIndex: 1,
- pageSize: 10,
- totalPage: 0,
- dataListLoading: false,
- dataListSelections: [],
- addOrUpdateVisible: false,
- // farmId: undefined,
- // farmList: [], // 牧场List
- labelPosition: 'right',
- thresholdTypes: [
- {
- label: '室内高温',
- value: 1
- },
- {
- label: '室内低温',
- value: 2
- },
- {
- label: '室内空气污染',
- value: 3
- },
- {
- label: '饮用水污染',
- value: 4
- },
- {
- label: '室外高温',
- value: 5
- },
- {
- label: '室外低温',
- value: 6
- },
- {
- label: '室外空气污染',
- value: 7
- },
- {
- label: '体温高温',
- value: 8
- },
- {
- label: '体温低温',
- value: 9
- },
- {
- label: '耳标电量过低',
- value: 10
- }
- ]
- }
- },
- components: {
- AddOrUpdate
- },
- activated () {
- this.getDataList()
- },
- methods: {
- // 获取数据列表
- getDataList () {
- // this.farmId = this.$cookie.get('farmId') === 'null'? undefined: parseInt(this.$cookie.get('farmId'))
- this.dataListLoading = true
- this.$http({
- url: this.$http.adornUrl('/management/thresholdManagement/list'),
- method: 'get',
- params: this.$http.adornParams({
- 'page': this.pageIndex,
- 'limit': this.pageSize,
- 'thresholdType': this.form.thresholdType || undefined,
- 'farmId': parseInt(this.$cookie.get('formFarmId'))
- })
- }).then(async({data}) => {
- // 获取所有牧场
- // this.farmList = []
- // let farmList = []
- // let farmResult = await this.$http({
- // url: this.$http.adornUrl("/management/farm/findAll"),
- // method: "get",
- // params: this.$http.adornParams({})
- // })
- // farmResult.data.all && (farmList = farmResult.data.all)
- // farmList.forEach(farm => {
- // let item = {
- // label: farm.name,
- // value: farm.id
- // }
- // this.farmList.push(item)
- // })
- // 获取报警List
- if (data && data.code === 0) {
- this.dataList = data.page.list
- this.totalPage = data.page.totalCount
- } else {
- this.dataList = []
- this.totalPage = 0
- this.$message.error(data.msg)
- }
- // this.form.farmId = (this.form.farmId || this.farmId) || undefined
- this.dataListLoading = false
- })
- },
- // form表单清空,单元SelectedList 和 栏期SelectedList重置
- clearAll () {
- this.form.thresholdType = ''
- },
- // 每页数
- sizeChangeHandle (val) {
- this.pageSize = val
- this.pageIndex = 1
- this.getDataList()
- },
- // 当前页
- currentChangeHandle (val) {
- this.pageIndex = val
- this.getDataList()
- },
- // 多选
- selectionChangeHandle (val) {
- this.dataListSelections = val
- },
- // 新增 / 修改
- addOrUpdateHandle (id) {
- this.addOrUpdateVisible = true
- this.$nextTick(() => {
- this.$refs.addOrUpdate.init(id)
- })
- },
- // 导出Excel
- exportExcel () {
- // this.$http({
- // url: this.$http.adornUrl('/management/thresholdManagement/exportXls'),
- // method: 'get',
- // params: this.$http.adornParams({
- // 'thresholdType': this.form.thresholdType || undefined,
- // 'farmId': parseInt(this.$cookie.get('formFarmId'))
- // })
- // }).then()
- // window.open(`http://192.168.1.57:88/api/management/thresholdManagement/exportXls?thresholdType=${this.form.thresholdType}&farmId=${parseInt(this.$cookie.get('formFarmId'))}`);
- this.$http({
- url: this.$http.adornUrl('/management/thresholdManagement/exportXls'),
- method: 'get',
- params: this.$http.adornParams({
- 'thresholdType': this.form.thresholdType || undefined,
- 'farmId': parseInt(this.$cookie.get('formFarmId'))
- }),
- responseType: 'blob'
- }).then(({data}) => {
- if (!data) {
- this.$message.error('文件下载失败')
- return
- }
- let url = window.URL.createObjectURL(new Blob([data], {type: 'application/vnd.ms-excel'}))
- let link = document.createElement('a')
- link.style.display = 'none'
- link.href = url
- link.setAttribute('download', '阈值列表.xls')
- document.body.appendChild(link)
- link.click()
- document.body.removeChild(link)
- window.URL.revokeObjectURL(url)
- })
- },
- // 删除
- deleteHandle (id) {
- var ids = id ? [id] : this.dataListSelections.map(item => {
- return item.id
- })
- this.$confirm(`确定对[id=${ids.join(',')}]进行[${id ? '删除' : '批量删除'}]操作?`, '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.$http({
- url: this.$http.adornUrl('/management/thresholdManagement/delete'),
- method: 'post',
- data: this.$http.adornData(ids, false)
- }).then(({data}) => {
- if (data && data.code === 0) {
- this.getDataList()
- this.$message({
- message: '操作成功',
- type: 'success',
- duration: 1500
- })
- } else {
- this.$message.error(data.msg)
- }
- })
- }).catch(() => {})
- }
- }
- }
- </script>
- <style scoped>
- .rect {
- background-color: #fff;
- padding: 30px 15px;
- border-radius: 5px;
- border: 1px solid #e8e8e8;
- }
- .rect-form {
- padding-bottom: 10px;
- }
- .rect-table {
- margin-top: 20px;
- }
- .demo-table-expand {
- font-size: 0;
- margin-left: 40px;
- }
- .demo-table-expand label {
- width: 90px;
- color: #99a9bf;
- }
- .demo-table-expand .el-form-item {
- margin-right: 0;
- margin-bottom: 0;
- width: 80%;
- }
- .el-table .height {
- background: rgba(254, 254, 254, 0.5);
- }
- /deep/ .el-table--mini td, .el-table--mini th {
- padding: 3px 0 !important;
- height: 20px !important;
- }
- /deep/ .el-checkbox__input.is-checked+.el-checkbox__label {
- color: rgb(24,144,255);
- background-color: rgb(24,144,255);
- border-color: rgb(24,144,255);
- }
- /deep/.el-table .el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner {
- background-color: rgb(24,144,255);
- border-color: rgb(24,144,255);
- }
- /deep/.el-table .el-checkbox__inner:hover {
- border-color: rgb(24,144,255);
- }
- /deep/.el-table .el-checkbox__input.is-focus .el-checkbox__inner {
- border-color: rgb(24,144,255);
- }
- /deep/.el-table #select .cell .el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner {
- background-color: rgb(24,144,255);
- border-color: rgb(24,144,255);
- }
- </style>
|