123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <template>
- <div id="controlTest">
- <div class="query-area" style="padding:10px;">
- <el-select v-model="originName" placeholder="请选择数据源" clearable @change="changeHandleSelect">
- <el-option
- v-for="(item,index) in selectAggregate.originList"
- :key="index"
- :label="item"
- :value="item">
- </el-option>
- </el-select>
- <el-select v-model="statusName" placeholder="请选择读写" clearable @change="changeHandleSelect">
- <el-option
- v-for="(item,index) in statusList"
- :key="index"
- :label="item"
- :value="index">
- </el-option>
- </el-select>
- <span style="float: right">
- <el-popover
- placement="bottom"
- style="padding: 0 20px 10px 20px;right: 10px"
- width="200"
- v-model="visible">
- <div>输入控制指令</div>
- <el-input type="textarea" :rows="2" v-model="instructions"/>
- <div style="text-align: right; margin-top: 10px">
- <el-button size="mini" type="text" @click="visible = false">取消</el-button>
- <el-button type="primary" size="mini" @click="implement">确定</el-button>
- </div>
- <el-button slot="reference">执行</el-button>
- </el-popover>
- <i class="el-icon-download" style="cursor: pointer" @click="downloads" title="下载"/>
- </span>
- </div>
- <!-- 数据表格 -->
- <div class="table-area">
- <el-table
- :data="tableDate"
- style="width: 100%"
- height="calc(100% - 32px)"
- v-loading="loading"
- :header-cell-style="headerStyle"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection"/>
- <el-table-column label="序号" type="index" align='center' width="55">
- <template slot-scope="scope">
- {{ scope.$index + (currentPage - 1) * pageSize + 1 }}
- </template>
- </el-table-column>
- <el-table-column prop='DatasourceName' label='数据源名称' show-overflow-tooltip align='center'/>
- <el-table-column prop='ReadWrite' label='读写' show-overflow-tooltip align='center'/>
- <el-table-column prop='Meterfunc' label='整合ID' show-overflow-tooltip align='center'/>
- <el-table-column prop='Description' label='点位描述' show-overflow-tooltip align='center'/>
- <el-table-column prop='Status' label='状态' show-overflow-tooltip align='center'/>
- <el-table-column prop='Data' label='反馈值' show-overflow-tooltip align='center'/>
- </el-table>
- <!-- 分页 -->
- <el-pagination
- @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage"
- :page-sizes="pageSizes"
- :page-size="pageSize" layout="total, sizes, prev, pager, next, jumper" :total="total"
- style="float:right;margin-top:10px;padding:2px 5px;">
- </el-pagination>
- </div>
- </div>
- </template>
- <script>
- import {pointTest, settingValue} from '@/api/scan/request'
- export default {
- name: "tabControlTest",
- props: ['selectAggregate'],
- data() {
- return {
- pageSizes: [10, 20, 50, 100],
- pageSize: 50,
- currentPage: 1,
- total: 0,
- tableDate: [],
- visible: false,
- //表格头样式
- headerStyle: {
- backgroundColor: '#e1e4e5',
- color: '#2b2b2b',
- lineHeight: '30px'
- },
- instructions: '',
- originName: "",
- statusName: '',//读写
- statusList: ['读', '写', '读写'], // 0:读 1:写 2:读写
- loading: false,//加载
- }
- },
- created() {
- this.getSettingValue()
- },
- methods: {
- //执行
- implement() {
- let list = this.multipleSelection.map(i => ({Data:this.instructions,...i}))
- this.visible = false
- this.getPointTest(list)
- },
- //当前设定值
- getSettingValue() {
- let _this = this
- _this.loading = true;
- let param = {
- PageNumber: this.currentPage,
- PageSize: this.pageSize
- }, Filters = ''
- if (_this.originName) {
- Filters += `DatasourceName='${_this.originName}';`
- }
- if (_this.statusName) {
- Filters += `ReadWrite='${_this.statusName}';`
- }
- let index = Filters.lastIndexOf(';')
- Filters = Filters.substring(0, index)
- param.Filters = Filters !== '' ? Filters : undefined
- settingValue(param, res => {
- this.tableDate = res.Content
- _this.total = res.Total
- _this.loading = false;
- })
- },
- //点位测试
- getPointTest(list) {
- pointTest(list, res => {
- this.tableDate = res.Content
- })
- },
- changeHandleSelect() {
- this.getSettingValue()
- },
- handleSelectionChange(val) {
- this.multipleSelection = val;
- },
- //分页更换size
- handleSizeChange(val) {
- this.currentPage = 1;
- this.pageSize = val;
- this.getSettingValue()
- },
- //分页更换页
- handleCurrentChange(val) {
- this.currentPage = val;
- this.getSettingValue()
- },
- //点击下载
- downloads() {
- let a = document.createElement('a')
- a.href = '/pointconfig/datasource/pointset-present-download'
- a.download = '控制测试'
- a.click()
- document.body.removeChild(a)
- },
- }
- }
- </script>
- <style lang="less" scoped>
- #controlTest {
- border-top: 5px solid #eee;
- height: calc(100% - 5px);
- width: 100%;
- overflow: hidden;
- }
- .table-area {
- height: calc(100% - 72px);
- padding: 0px 10px 10px 10px;
- }
- .table-area i {
- text-align: right;
- font-size: 12px;
- cursor: pointer;
- float: right;
- }
- .dialog-btn {
- display: none;
- height: 29px;
- }
- /deep/ .el-drawer__body {
- height: 90%;
- overflow-y: auto;
- }
- /deep/ .el-table__body-wrapper tr:hover {
- .dialog-btn {
- display: inline;
- }
- }
- /deep/ .el-dialog__body {
- padding-bottom: 20px;
- }
- /deep/ .el-drawer__header > :first-child:focus {
- outline: none;
- }
- </style>
|