tb-department-list.html 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>客户管理-列表</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport"
  7. content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  8. <!-- 所有的 css & js 资源 -->
  9. <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
  10. <link rel="stylesheet" href="../../static/sa.css">
  11. <script src="../../static/kj/vue.min.js"></script>
  12. <script src="../../static/kj/element-ui/index.js"></script>
  13. <script src="../../static/kj/httpVueLoader.js"></script>
  14. <script src="../../static/kj/jquery.min.js"></script>
  15. <script src="../../static/kj/layer/layer.js"></script>
  16. <script src="../../static/sa.js"></script>
  17. </head>
  18. <body>
  19. <div class="vue-box" style="display: none;" :style="'display: block;'">
  20. <div class="c-panel">
  21. <!-- ------------- 检索参数 ------------- -->
  22. <div class="c-title">检索参数</div>
  23. <el-form ref="form" :model='p' @submit.native.prevent>
  24. <sa-item type="text" name="名称" v-model="p.name"></sa-item>
  25. <sa-item type="text" name="联系号码" v-model="p.phone"></sa-item>
  26. <sa-item type="text" name="负责人" v-model="p.dutyPeople"></sa-item>
  27. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  28. <el-button type="primary" icon="el-icon-plus" @click="add" v-if="sa.isAuth('tb-department-add')">新增
  29. </el-button>
  30. <el-button type="info" icon="el-icon-refresh" @click="f5()">重置</el-button>
  31. </el-form>
  32. <!-- ------------- 数据列表 ------------- -->
  33. <el-table class="data-table" ref="data-table" :data="dataList">
  34. <sa-td type="index" name="序号"></sa-td>
  35. <sa-td name="部门名称" prop="name"></sa-td>
  36. <sa-td name="负责人" prop="dutyPeople"></sa-td>
  37. <sa-td name="联系号码" prop="phone"></sa-td>
  38. <el-table-column label="是否锁定" title="锁定的部门为系统维持正常运行的重要部门,不可删除">
  39. <template slot-scope="s">
  40. <el-tag v-if="s.row.status == 1">已锁定</el-tag>
  41. <el-tag v-else type="success">未锁定</el-tag>
  42. </template>
  43. </el-table-column>
  44. <sa-td name="创建时间" prop="createTime" width="140"></sa-td>
  45. <sa-td name="更新时间" prop="updateTime" width="140"></sa-td>
  46. <el-table-column label="操作" fixed="right" width="280px">
  47. <template slot-scope="s">
  48. <el-button v-if="sa.isAuth('tb-department-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改
  49. </el-button>
  50. <el-button v-if="sa.isAuth('tb-department-del')" class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除
  51. </el-button>
  52. </template>
  53. </el-table-column>
  54. </el-table>
  55. <!-- ------------- 分页 ------------- -->
  56. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()">
  57. </sa-item>
  58. </div>
  59. </div>
  60. <script>
  61. var app = new Vue({
  62. components: {
  63. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  64. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  65. },
  66. el: '.vue-box',
  67. data: {
  68. p: { // 查询参数
  69. name: '', // 名称
  70. phone: '', // 联系号码
  71. dutyPeople: '', // 负责人
  72. pageNo: 1, // 当前页
  73. pageSize: 10, // 页大小
  74. sortType: 0 // 排序方式
  75. },
  76. dataCount: 0,
  77. dataList: [], // 数据集合
  78. },
  79. methods: {
  80. // 刷新
  81. f5: function() {
  82. sa.ajax('/TbDepartment/getList', sa.removeNull(this.p), function(res) {
  83. this.dataList = res.data; // 数据
  84. this.dataCount = res.dataCount; // 数据总数
  85. sa.f5TableHeight(); // 刷新表格高度
  86. }.bind(this));
  87. },
  88. adminFn(data){
  89. sa.showIframe('管理员', 'admin-list.html?customerId=' + data.id, '1080px', '80%');
  90. },
  91. // 查看
  92. get: function(data) {
  93. sa.showIframe('数据详情', 'tb-department-info.html?id=' + data.id, '550px', '60%');
  94. },
  95. // 查看 - 根据选中的
  96. getBySelect: function(data) {
  97. var selection = this.$refs['data-table'].selection;
  98. if (selection.length == 0) {
  99. return sa.msg('请选择一条数据')
  100. }
  101. this.get(selection[0]);
  102. },
  103. // 修改
  104. update: function(data) {
  105. sa.showIframe('修改数据', 'tb-department-add.html?id=' + data.id, '500px', '60%');
  106. },
  107. // 新增
  108. add: function(data) {
  109. sa.showIframe('新增数据', 'tb-department-add.html?id=-1', '500px', '60%');
  110. },
  111. // 删除
  112. del: function(data) {
  113. if(data.status == 1){
  114. return layer.alert('锁定的部门为系统维持正常运行的重要部门,不可删除');
  115. };
  116. sa.confirm('是否删除,此操作不可撤销', function() {
  117. sa.ajax('/TbDepartment/delete?id=' + data.id, function(res) {
  118. sa.arrayDelete(this.dataList, data);
  119. sa.ok('删除成功');
  120. sa.f5TableHeight(); // 刷新表格高度
  121. }.bind(this))
  122. }.bind(this));
  123. },
  124. // 批量删除
  125. deleteByIds: function() {
  126. // 获取选中元素的id列表
  127. let selection = this.$refs['data-table'].selection;
  128. let ids = sa.getArrayField(selection, 'id');
  129. if (selection.length == 0) {
  130. return sa.msg('请至少选择一条数据')
  131. }
  132. // 提交删除
  133. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  134. sa.ajax('/TbDepartment/deleteByIds', {
  135. ids: ids.join(',')
  136. }, function(res) {
  137. sa.arrayDelete(this.dataList, selection);
  138. sa.ok('删除成功');
  139. sa.f5TableHeight(); // 刷新表格高度
  140. }.bind(this))
  141. }.bind(this));
  142. },
  143. // 改 - 状态(0=否,1=是)
  144. updateStatus: function(data) {
  145. // 声明变量记录是否成功
  146. var isOk = false;
  147. var oldValue = data.status;
  148. var ajax = sa.ajax('/TbDepartment/updateStatus', {
  149. id: data.id,
  150. value: data.status
  151. }, function(res) {
  152. isOk = true;
  153. sa.msg('修改成功');
  154. }.bind(this));
  155. // 如果未能修改成功, 则回滚
  156. $.when(ajax).done(function() {
  157. if (isOk == false) {
  158. data.status = oldValue;
  159. }
  160. })
  161. },
  162. },
  163. created: function() {
  164. this.f5();
  165. sa.onInputEnter();
  166. }
  167. })
  168. </script>
  169. </body>
  170. </html>