tb-gate-terminal-list.html 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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="deptName" ></sa-td>
  34. <sa-td name="所在道闸" prop="venuesName" ></sa-td>
  35. <sa-td name="方向" prop="direction" type="enum" :jv="{1: '入场', 2: '离场'}"></sa-td>
  36. <sa-td name="序列号" prop="sn" ></sa-td>
  37. <sa-td name="IP地址" prop="ip" ></sa-td>
  38. <el-table-column label="通讯">
  39. <template slot-scope="s">
  40. <el-button class="c-btn" @click="checkFn(s.row)">检测
  41. </el-button>
  42. </template>
  43. </el-table-column>
  44. <sa-td name="创建时间" prop="createTime" ></sa-td>
  45. <sa-td name="更新时间" prop="updateTime" ></sa-td>
  46. <el-table-column label="操作" fixed="right" width="240px">
  47. <template slot-scope="s">
  48. <el-button class="c-btn" type="success" @click="open(s.row)">开闸</el-button>
  49. <el-button class="c-btn" type="primary" @click="update(s.row)">修改</el-button>
  50. <el-button class="c-btn" type="danger" @click="del(s.row)">删除</el-button>
  51. </template>
  52. </el-table-column>
  53. </el-table>
  54. <!-- ------------- 分页 ------------- -->
  55. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  56. </div>
  57. </div>
  58. <script>
  59. var app = new Vue({
  60. components: {
  61. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  62. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  63. },
  64. el: '.vue-box',
  65. data: {
  66. p: { // 查询参数
  67. id: '', // 主键
  68. name: '', // 名称
  69. deptId: '', // 部门id
  70. sn: '', // 序列号
  71. ip: '', // IP地址
  72. pageNo: 1, // 当前页
  73. pageSize: 10, // 页大小
  74. sortType: 0 // 排序方式
  75. },
  76. dataCount: 0,
  77. dataList: [], // 数据集合
  78. },
  79. methods: {
  80. open(data){
  81. sa.confirm('是否远程开闸?', function() {
  82. sa.ajax('/TbGateTerminal/open?id=' + data.id, function(res) {
  83. sa.ok('开闸成功');
  84. }.bind(this))
  85. }.bind(this));
  86. },
  87. checkFn(data){
  88. sa.ajax('/TbGateTerminal/check', data, function(res) {
  89. sa.ok('通讯正常');
  90. }.bind(this));
  91. },
  92. // 刷新
  93. f5: function() {
  94. sa.ajax('/TbGateTerminal/getList', sa.removeNull(this.p), function(res) {
  95. this.dataList = res.data; // 数据
  96. this.dataCount = res.dataCount; // 数据总数
  97. sa.f5TableHeight(); // 刷新表格高度
  98. }.bind(this));
  99. },
  100. // 查看
  101. get: function(data) {
  102. sa.showIframe('数据详情', 'tb-gate-terminal-info.html?id=' + data.id, '1050px', '90%');
  103. },
  104. // 查看 - 根据选中的
  105. getBySelect: function(data) {
  106. var selection = this.$refs['data-table'].selection;
  107. if(selection.length == 0) {
  108. return sa.msg('请选择一条数据')
  109. }
  110. this.get(selection[0]);
  111. },
  112. // 修改
  113. update: function(data) {
  114. sa.showIframe('修改数据', 'tb-gate-terminal-add.html?id=' + data.id, '1000px', '90%');
  115. },
  116. // 新增
  117. add: function(data) {
  118. sa.showIframe('新增数据', 'tb-gate-terminal-add.html?id=-1', '700px', '60%');
  119. },
  120. // 删除
  121. del: function(data) {
  122. sa.confirm('是否删除,此操作不可撤销', function() {
  123. sa.ajax('/TbGateTerminal/delete?id=' + data.id, function(res) {
  124. sa.arrayDelete(this.dataList, data);
  125. sa.ok('删除成功');
  126. sa.f5TableHeight(); // 刷新表格高度
  127. }.bind(this))
  128. }.bind(this));
  129. },
  130. // 批量删除
  131. deleteByIds: function() {
  132. // 获取选中元素的id列表
  133. let selection = this.$refs['data-table'].selection;
  134. let ids = sa.getArrayField(selection, 'id');
  135. if(selection.length == 0) {
  136. return sa.msg('请至少选择一条数据')
  137. }
  138. // 提交删除
  139. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  140. sa.ajax('/TbGateTerminal/deleteByIds', {ids: ids.join(',')}, function(res) {
  141. sa.arrayDelete(this.dataList, selection);
  142. sa.ok('删除成功');
  143. sa.f5TableHeight(); // 刷新表格高度
  144. }.bind(this))
  145. }.bind(this));
  146. },
  147. },
  148. created: function() {
  149. this.f5();
  150. sa.onInputEnter();
  151. }
  152. })
  153. </script>
  154. </body>
  155. </html>