tabControlTest.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <template>
  2. <div id="controlTest">
  3. <div class="query-area" style="padding:10px;">
  4. <el-select v-model="originName" placeholder="请选择数据源" clearable @change="changeHandleSelect">
  5. <el-option
  6. v-for="(item,index) in selectAggregate.originList"
  7. :key="index"
  8. :label="item"
  9. :value="item">
  10. </el-option>
  11. </el-select>
  12. <el-select v-model="statusName" placeholder="请选择读写" clearable @change="changeHandleSelect">
  13. <el-option
  14. v-for="(item,index) in statusList"
  15. :key="index"
  16. :label="item"
  17. :value="index">
  18. </el-option>
  19. </el-select>
  20. <span style="float: right">
  21. <el-popover
  22. placement="bottom"
  23. style="padding: 0 20px 10px 20px;right: 10px"
  24. width="200"
  25. v-model="visible">
  26. <div>输入控制指令</div>
  27. <el-input type="textarea" :rows="2" v-model="instructions"/>
  28. <div style="text-align: right; margin-top: 10px">
  29. <el-button size="mini" type="text" @click="visible = false">取消</el-button>
  30. <el-button type="primary" size="mini" @click="implement">确定</el-button>
  31. </div>
  32. <el-button slot="reference">执行</el-button>
  33. </el-popover>
  34. <i class="el-icon-download" style="cursor: pointer" @click="downloads" title="下载"/>
  35. </span>
  36. </div>
  37. <!-- 数据表格 -->
  38. <div class="table-area">
  39. <el-table
  40. :data="tableDate"
  41. style="width: 100%"
  42. height="calc(100% - 32px)"
  43. v-loading="loading"
  44. :header-cell-style="headerStyle"
  45. @selection-change="handleSelectionChange"
  46. >
  47. <el-table-column type="selection"/>
  48. <el-table-column label="序号" type="index" align='center' width="55">
  49. <template slot-scope="scope">
  50. {{ scope.$index + (currentPage - 1) * pageSize + 1 }}
  51. </template>
  52. </el-table-column>
  53. <el-table-column prop='DatasourceName' label='数据源名称' show-overflow-tooltip align='center'/>
  54. <el-table-column prop='ReadWrite' label='读写' show-overflow-tooltip align='center'/>
  55. <el-table-column prop='Meterfunc' label='整合ID' show-overflow-tooltip align='center'/>
  56. <el-table-column prop='Description' label='点位描述' show-overflow-tooltip align='center'/>
  57. <el-table-column prop='Status' label='状态' show-overflow-tooltip align='center'/>
  58. <el-table-column prop='Data' label='反馈值' show-overflow-tooltip align='center'/>
  59. </el-table>
  60. <!-- 分页 -->
  61. <el-pagination
  62. @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage"
  63. :page-sizes="pageSizes"
  64. :page-size="pageSize" layout="total, sizes, prev, pager, next, jumper" :total="total"
  65. style="float:right;margin-top:10px;padding:2px 5px;">
  66. </el-pagination>
  67. </div>
  68. </div>
  69. </template>
  70. <script>
  71. import {pointTest, settingValue} from '@/api/scan/request'
  72. export default {
  73. name: "tabControlTest",
  74. props: ['selectAggregate'],
  75. data() {
  76. return {
  77. pageSizes: [10, 20, 50, 100],
  78. pageSize: 50,
  79. currentPage: 1,
  80. total: 0,
  81. tableDate: [],
  82. visible: false,
  83. //表格头样式
  84. headerStyle: {
  85. backgroundColor: '#e1e4e5',
  86. color: '#2b2b2b',
  87. lineHeight: '30px'
  88. },
  89. instructions: '',
  90. originName: "",
  91. statusName: '',//读写
  92. statusList: ['读', '写', '读写'], // 0:读 1:写 2:读写
  93. loading: false,//加载
  94. }
  95. },
  96. created() {
  97. this.getSettingValue()
  98. },
  99. methods: {
  100. //执行
  101. implement() {
  102. let list = this.multipleSelection.map(i => ({Data:this.instructions,...i}))
  103. this.visible = false
  104. this.getPointTest(list)
  105. },
  106. //当前设定值
  107. getSettingValue() {
  108. let _this = this
  109. _this.loading = true;
  110. let param = {
  111. PageNumber: this.currentPage,
  112. PageSize: this.pageSize
  113. }, Filters = ''
  114. if (_this.originName) {
  115. Filters += `DatasourceName='${_this.originName}';`
  116. }
  117. if (_this.statusName) {
  118. Filters += `ReadWrite='${_this.statusName}';`
  119. }
  120. let index = Filters.lastIndexOf(';')
  121. Filters = Filters.substring(0, index)
  122. param.Filters = Filters !== '' ? Filters : undefined
  123. settingValue(param, res => {
  124. this.tableDate = res.Content
  125. _this.total = res.Total
  126. _this.loading = false;
  127. })
  128. },
  129. //点位测试
  130. getPointTest(list) {
  131. pointTest(list, res => {
  132. this.tableDate = res.Content
  133. })
  134. },
  135. changeHandleSelect() {
  136. this.getSettingValue()
  137. },
  138. handleSelectionChange(val) {
  139. this.multipleSelection = val;
  140. },
  141. //分页更换size
  142. handleSizeChange(val) {
  143. this.currentPage = 1;
  144. this.pageSize = val;
  145. this.getSettingValue()
  146. },
  147. //分页更换页
  148. handleCurrentChange(val) {
  149. this.currentPage = val;
  150. this.getSettingValue()
  151. },
  152. //点击下载
  153. downloads() {
  154. let a = document.createElement('a')
  155. a.href = '/pointconfig/datasource/pointset-present-download'
  156. a.download = '控制测试'
  157. a.click()
  158. document.body.removeChild(a)
  159. },
  160. }
  161. }
  162. </script>
  163. <style lang="less" scoped>
  164. #controlTest {
  165. border-top: 5px solid #eee;
  166. height: calc(100% - 5px);
  167. width: 100%;
  168. overflow: hidden;
  169. }
  170. .table-area {
  171. height: calc(100% - 72px);
  172. padding: 0px 10px 10px 10px;
  173. }
  174. .table-area i {
  175. text-align: right;
  176. font-size: 12px;
  177. cursor: pointer;
  178. float: right;
  179. }
  180. .dialog-btn {
  181. display: none;
  182. height: 29px;
  183. }
  184. /deep/ .el-drawer__body {
  185. height: 90%;
  186. overflow-y: auto;
  187. }
  188. /deep/ .el-table__body-wrapper tr:hover {
  189. .dialog-btn {
  190. display: inline;
  191. }
  192. }
  193. /deep/ .el-dialog__body {
  194. padding-bottom: 20px;
  195. }
  196. /deep/ .el-drawer__header > :first-child:focus {
  197. outline: none;
  198. }
  199. </style>