tb-manager-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="联系号码" v-model="p.phone"></sa-item>
  25. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  26. <br />
  27. </el-form>
  28. <!-- ------------- 快捷按钮 ------------- -->
  29. <el-button type="primary" icon="el-icon-plus" @click="add" v-if="sa.isAuth('tb-person-filing-add')">
  30. 新增</el-button>
  31. <el-button type="info" icon="el-icon-refresh" @click="f5">重置</el-button>
  32. <!-- ------------- 数据列表 ------------- -->
  33. <el-table class="data-table" ref="data-table" :data="dataList" >
  34. <sa-td name="序号" type="index"></sa-td>
  35. <sa-td name="姓名" prop="name" ></sa-td>
  36. <sa-td name="联系号码" prop="phone" ></sa-td>
  37. <sa-td name="职能" prop="position" ></sa-td>
  38. <sa-td name="值班地点" prop="venuesName" ></sa-td>
  39. <sa-td name="值班开始时间" prop="workStartTime" ></sa-td>
  40. <sa-td name="值班结束时间" prop="workEndTime" ></sa-td>
  41. <sa-td name="备注" prop="remark" ></sa-td>
  42. <el-table-column label="操作" fixed="right" width="240px">
  43. <template slot-scope="s">
  44. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  45. <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  46. <el-button class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
  47. </template>
  48. </el-table-column>
  49. </el-table>
  50. <!-- ------------- 分页 ------------- -->
  51. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  52. </div>
  53. </div>
  54. <script>
  55. var app = new Vue({
  56. components: {
  57. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  58. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  59. },
  60. el: '.vue-box',
  61. data: {
  62. p: { // 查询参数
  63. id: '', // 主键
  64. name: '', // 姓名
  65. phone: '', // 联系号码
  66. deptId: '', // 部门ID
  67. position: '', // 职能
  68. venuesId: '', // 场所ID
  69. venuesName: '', // 值班地点
  70. workStartTime: '', // 值班开始时间
  71. workEndTime: '', // 值班结束时间
  72. remark: '', // 备注
  73. createTime: '', // 创建时间
  74. createBy: '', // 创建人
  75. updateTime: '', // 更新时间
  76. updateBy: '', // 更新人
  77. pageNo: 1, // 当前页
  78. pageSize: 10, // 页大小
  79. sortType: 0 // 排序方式
  80. },
  81. dataCount: 0,
  82. dataList: [], // 数据集合
  83. deptList: [],
  84. },
  85. methods: {
  86. getDeptList() {
  87. sa.ajax('/TbDept/getList', function(resp) {
  88. this.deptList = resp.data;
  89. }.bind(this))
  90. },
  91. // 刷新
  92. f5: function() {
  93. sa.ajax('/TbManager/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-manager-info.html?id=' + data.id, '750px', '70%');
  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-manager-add.html?id=' + data.id, '550px', '90%');
  114. },
  115. // 新增
  116. add: function(data) {
  117. sa.showIframe('新增数据', 'tb-manager-add.html?id=-1', '850px', '60%');
  118. },
  119. // 删除
  120. del: function(data) {
  121. sa.confirm('是否删除,此操作不可撤销', function() {
  122. sa.ajax('/TbManager/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('/TbManager/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. this.getDeptList()
  150. sa.onInputEnter();
  151. }
  152. })
  153. </script>
  154. </body>
  155. </html>