tb-person-black-list.html 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  25. <el-button type="primary" icon="el-icon-plus" @click="add" v-if="sa.isAuth('tb-person-black-add')">新增</el-button>
  26. <el-button type="info" icon="el-icon-refresh" @click="f5">重置</el-button>
  27. </el-form>
  28. <!-- ------------- 数据列表 ------------- -->
  29. <el-table class="data-table" ref="data-table" :data="dataList" >
  30. <sa-td name="序号" type="index"></sa-td>
  31. <sa-td name="所属组织" prop="deptName" ></sa-td>
  32. <sa-td name="名字" prop="name" ></sa-td>
  33. <sa-td name="身份证" prop="idCadStr" width="150"></sa-td>
  34. <sa-td name="禁行原因" prop="reason" ></sa-td>
  35. <sa-td name="禁行开始" prop="startTime" width="150"></sa-td>
  36. <sa-td name="禁行结束" prop="endTime" width="150"></sa-td>
  37. <sa-td name="创建时间" prop="createTime" width="140"></sa-td>
  38. <sa-td name="更新时间" prop="updateTime" width="140"></sa-td>
  39. <el-table-column label="操作" fixed="right" width="240px">
  40. <template slot-scope="s">
  41. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  42. <el-button v-if="sa.isAuth('tb-person-black-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  43. <el-button v-if="sa.isAuth('tb-person-black-del')" class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
  44. </template>
  45. </el-table-column>
  46. </el-table>
  47. <!-- ------------- 分页 ------------- -->
  48. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  49. </div>
  50. </div>
  51. <script>
  52. var app = new Vue({
  53. components: {
  54. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  55. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  56. },
  57. el: '.vue-box',
  58. data: {
  59. p: { // 查询参数
  60. id: '', // 主键
  61. name: '', // 名字
  62. idCard: '', // 身份证
  63. reason: '', // 禁行原因
  64. pageNo: 1, // 当前页
  65. pageSize: 10, // 页大小
  66. sortType: 0 // 排序方式
  67. },
  68. dataCount: 0,
  69. dataList: [], // 数据集合
  70. },
  71. methods: {
  72. // 刷新
  73. f5: function() {
  74. sa.ajax('/TbPersonBlack/getList', sa.removeNull(this.p), function(res) {
  75. this.dataList = res.data; // 数据
  76. this.dataCount = res.dataCount; // 数据总数
  77. sa.f5TableHeight(); // 刷新表格高度
  78. }.bind(this));
  79. },
  80. // 查看
  81. get: function(data) {
  82. sa.showIframe('数据详情', 'tb-person-black-info.html?id=' + data.id, '700px', '70%');
  83. },
  84. // 查看 - 根据选中的
  85. getBySelect: function(data) {
  86. var selection = this.$refs['data-table'].selection;
  87. if(selection.length == 0) {
  88. return sa.msg('请选择一条数据')
  89. }
  90. this.get(selection[0]);
  91. },
  92. // 修改
  93. update: function(data) {
  94. sa.showIframe('修改数据', 'tb-person-black-add.html?id=' + data.id, '700px', '70%');
  95. },
  96. // 新增
  97. add: function(data) {
  98. sa.showIframe('新增数据', 'tb-person-black-add.html?id=-1', '700px', '70%');
  99. },
  100. // 删除
  101. del: function(data) {
  102. sa.confirm('是否删除,此操作不可撤销', function() {
  103. sa.ajax('/TbPersonBlack/delete?id=' + data.id, function(res) {
  104. sa.arrayDelete(this.dataList, data);
  105. sa.ok('删除成功');
  106. sa.f5TableHeight(); // 刷新表格高度
  107. }.bind(this))
  108. }.bind(this));
  109. },
  110. // 批量删除
  111. deleteByIds: function() {
  112. // 获取选中元素的id列表
  113. let selection = this.$refs['data-table'].selection;
  114. let ids = sa.getArrayField(selection, 'id');
  115. if(selection.length == 0) {
  116. return sa.msg('请至少选择一条数据')
  117. }
  118. // 提交删除
  119. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  120. sa.ajax('/TbPersonBlack/deleteByIds', {ids: ids.join(',')}, function(res) {
  121. sa.arrayDelete(this.dataList, selection);
  122. sa.ok('删除成功');
  123. sa.f5TableHeight(); // 刷新表格高度
  124. }.bind(this))
  125. }.bind(this));
  126. },
  127. },
  128. created: function() {
  129. this.f5();
  130. sa.onInputEnter();
  131. }
  132. })
  133. </script>
  134. </body>
  135. </html>