tb-gate-terminal-list.html 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>车辆道闸-列表</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  7. <!-- 所有的 css & js 资源 -->
  8. <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
  9. <link rel="stylesheet" href="../../static/sa.css">
  10. <script src="../../static/kj/vue.min.js"></script>
  11. <script src="../../static/kj/element-ui/index.js"></script>
  12. <script src="../../static/kj/httpVueLoader.js"></script>
  13. <script src="../../static/kj/jquery.min.js"></script>
  14. <script src="../../static/kj/layer/layer.js"></script>
  15. <script src="../../static/sa.js"></script>
  16. </head>
  17. <body>
  18. <div class="vue-box" style="display: none;" :style="'display: block;'">
  19. <div class="c-panel">
  20. <!-- ------------- 检索参数 ------------- -->
  21. <div class="c-title">检索参数</div>
  22. <el-form ref="form" :model='p' @submit.native.prevent>
  23. <sa-item type="text" name="名称" v-model="p.name"></sa-item>
  24. <sa-item type="text" name="IP地址" v-model="p.ip"></sa-item>
  25. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  26. <el-button type="primary" icon="el-icon-plus" @click="add" v-if="sa.isAuth('tb-gate-terminal-add')">新增</el-button>
  27. <el-button type="info" icon="el-icon-refresh" @click="p.name='',p.ip='',f5()">重置</el-button>
  28. </el-form>
  29. <!-- ------------- 数据列表 ------------- -->
  30. <el-table class="data-table" ref="data-table" :data="dataList" >
  31. <sa-td name="序号" type="index"></sa-td>
  32. <sa-td name="名称" prop="name" ></sa-td>
  33. <sa-td name="所在道闸" prop="venuesName" ></sa-td>
  34. <sa-td name="方向" prop="direction" type="enum" :jv="{1: '入场', 2: '离场'}"></sa-td>
  35. <sa-td name="IP地址" prop="ip" ></sa-td>
  36. <sa-td name="状态" prop="state"></sa-td>
  37. <el-table-column label="通讯">
  38. <template slot-scope="s">
  39. <el-button class="c-btn" @click="checkFn(s.row)">检测
  40. </el-button>
  41. </template>
  42. </el-table-column>
  43. <sa-td name="创建时间" prop="createTime" ></sa-td>
  44. <sa-td name="更新时间" prop="updateTime" ></sa-td>
  45. <el-table-column label="操作" fixed="right" width="240px">
  46. <template slot-scope="s">
  47. <el-button class="c-btn" type="success" @click="open(s.row)">开闸</el-button>
  48. <el-button class="c-btn" type="primary" @click="update(s.row)">修改</el-button>
  49. <el-button class="c-btn" type="danger" @click="del(s.row)">删除</el-button>
  50. </template>
  51. </el-table-column>
  52. </el-table>
  53. <!-- ------------- 分页 ------------- -->
  54. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  55. </div>
  56. </div>
  57. <script>
  58. var app = new Vue({
  59. components: {
  60. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  61. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  62. },
  63. el: '.vue-box',
  64. data: {
  65. p: { // 查询参数
  66. id: '', // 主键
  67. name: '', // 名称
  68. deptId: '', // 部门id
  69. sn: '', // 序列号
  70. ip: '', // IP地址
  71. pageNo: 1, // 当前页
  72. pageSize: 10, // 页大小
  73. sortType: 0 // 排序方式
  74. },
  75. dataCount: 0,
  76. dataList: [], // 数据集合
  77. },
  78. methods: {
  79. open(data){
  80. sa.confirm('是否远程开闸?', function() {
  81. sa.ajax('/TbGateTerminal/open?id=' + data.id, function(res) {
  82. sa.ok('开闸成功');
  83. }.bind(this))
  84. }.bind(this));
  85. },
  86. checkFn(data){
  87. sa.ajax('/TbGateTerminal/check', data, function(res) {
  88. sa.ok('通讯正常');
  89. }.bind(this));
  90. },
  91. // 刷新
  92. f5: function() {
  93. sa.ajax('/TbGateTerminal/getList', sa.removeNull(this.p), function(res) {
  94. this.dataList = res.data; // 数据
  95. this.dataCount = res.dataCount; // 数据总数
  96. sa.f5TableHeight(); // 刷新表格高度
  97. }.bind(this));
  98. },
  99. // 查看
  100. get: function(data) {
  101. sa.showIframe('数据详情', 'tb-gate-terminal-info.html?id=' + data.id, '1050px', '90%');
  102. },
  103. // 查看 - 根据选中的
  104. getBySelect: function(data) {
  105. var selection = this.$refs['data-table'].selection;
  106. if(selection.length == 0) {
  107. return sa.msg('请选择一条数据')
  108. }
  109. this.get(selection[0]);
  110. },
  111. // 修改
  112. update: function(data) {
  113. sa.showIframe('修改数据', 'tb-gate-terminal-add.html?id=' + data.id, '600px', '60%');
  114. },
  115. // 新增
  116. add: function(data) {
  117. sa.showIframe('新增数据', 'tb-gate-terminal-add.html?id=-1', '700px', '60%');
  118. },
  119. // 删除
  120. del: function(data) {
  121. sa.confirm('是否删除,此操作不可撤销', function() {
  122. sa.ajax('/TbGateTerminal/delete?id=' + data.id, function(res) {
  123. sa.arrayDelete(this.dataList, data);
  124. sa.ok('删除成功');
  125. sa.f5TableHeight(); // 刷新表格高度
  126. }.bind(this))
  127. }.bind(this));
  128. },
  129. // 批量删除
  130. deleteByIds: function() {
  131. // 获取选中元素的id列表
  132. let selection = this.$refs['data-table'].selection;
  133. let ids = sa.getArrayField(selection, 'id');
  134. if(selection.length == 0) {
  135. return sa.msg('请至少选择一条数据')
  136. }
  137. // 提交删除
  138. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  139. sa.ajax('/TbGateTerminal/deleteByIds', {ids: ids.join(',')}, function(res) {
  140. sa.arrayDelete(this.dataList, selection);
  141. sa.ok('删除成功');
  142. sa.f5TableHeight(); // 刷新表格高度
  143. }.bind(this))
  144. }.bind(this));
  145. },
  146. },
  147. created: function() {
  148. this.f5();
  149. sa.onInputEnter();
  150. }
  151. })
  152. </script>
  153. </body>
  154. </html>