app-role-list.html 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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.roleName" width="100px"></sa-item>
  24. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  25. <el-button type="info" icon="el-icon-refresh" @click="sa.f5()">重置</el-button>
  26. </el-form>
  27. <!-- ------------- 数据列表 ------------- -->
  28. <el-table class="data-table" ref="data-table" :data="dataList" >
  29. <sa-td type="index" name="序号"></sa-td>
  30. <sa-td name="角色名称" prop="roleName" ></sa-td>
  31. <sa-td type="switch" name="注册" prop="status" :jv="{1: '启用[green]', 0: '禁用[#ff4949]'}" @change="s => updateStatus(s.row)" width="120px"></sa-td>
  32. <sa-td name="类型" prop="userType" type="enum" :jv="{1: '普通边民', 2: '边民组长', 3: '收购商', 4: '司机', 5: '外籍商户', 6: '合作社'}"></sa-td>
  33. <el-table-column label="操作" fixed="right" width="120px">
  34. <template slot-scope="s">
  35. <el-button class="c-btn" type="success" icon="el-icon-set-up" @click="AssignAuth(s.row)">菜单权限</el-button>
  36. <!-- <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  37. <el-button v-if="sa.isAuth('app-role-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  38. <el-button v-if="sa.isAuth('app-role-del')" class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button> -->
  39. </template>
  40. </el-table-column>
  41. </el-table>
  42. <!-- ------------- 分页 ------------- -->
  43. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  44. </div>
  45. </div>
  46. <script>
  47. var app = new Vue({
  48. components: {
  49. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  50. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  51. },
  52. el: '.vue-box',
  53. data: {
  54. p: { // 查询参数
  55. roleName: '', // 角色名称
  56. createTime: '', // 创建时间
  57. userType: '', // 类型(1=边民,2=组长,3=商户,4=收购商,5=司机)
  58. pageNo: 1, // 当前页
  59. pageSize: 10, // 页大小
  60. sortType: 0 // 排序方式
  61. },
  62. dataCount: 0,
  63. dataList: [], // 数据集合
  64. },
  65. methods: {
  66. // 刷新
  67. f5: function() {
  68. sa.ajax('/sp-admin/AppRole/getList', sa.removeNull(this.p), function(res) {
  69. this.dataList = res.data; // 数据
  70. this.dataCount = res.dataCount; // 数据总数
  71. sa.f5TableHeight(); // 刷新表格高度
  72. }.bind(this));
  73. },
  74. // 查看
  75. get: function(data) {
  76. sa.showIframe('数据详情', 'app-role-info.html?id=' + data.id, '1050px', '90%');
  77. },
  78. // 查看 - 根据选中的
  79. getBySelect: function(data) {
  80. var selection = this.$refs['data-table'].selection;
  81. if(selection.length == 0) {
  82. return sa.msg('请选择一条数据')
  83. }
  84. this.get(selection[0]);
  85. },
  86. // 修改
  87. update: function(data) {
  88. sa.showIframe('修改数据', 'app-role-add.html?id=' + data.id, '600px', '500px');
  89. },
  90. // 新增
  91. add: function(data) {
  92. sa.showIframe('新增数据', 'app-role-add.html?id=-1', '1000px', '90%');
  93. },
  94. // 修改用户的状态
  95. updateStatus: function(data) {
  96. if(data.id == sa.$sys.getCurrUser().id) {
  97. data.status = 3 - data.status;
  98. return sa.alert('不能自己封禁自己');
  99. }
  100. var is_ok = false; // 记录是否成功
  101. var ajax = sa.ajax('/sp-admin/AppRole/updateStatus', {id: data.id, status: data.status}, function(res) {
  102. sa.msg('修改成功');
  103. is_ok = true;
  104. }.bind(this));
  105. // 如果未能修改成功, 则回滚
  106. $.when(ajax).done(function() {
  107. if(is_ok == false) {
  108. data.status = 3 - data.status;
  109. }
  110. })
  111. },
  112. // 删除
  113. del: function(data) {
  114. sa.confirm('是否删除,此操作不可撤销', function() {
  115. sa.ajax('/sp-admin/AppRole/delete?id=' + data.id, function(res) {
  116. sa.arrayDelete(this.dataList, data);
  117. sa.ok('删除成功');
  118. sa.f5TableHeight(); // 刷新表格高度
  119. }.bind(this))
  120. }.bind(this));
  121. },
  122. // 批量删除
  123. deleteByIds: function() {
  124. // 获取选中元素的id列表
  125. let selection = this.$refs['data-table'].selection;
  126. let ids = sa.getArrayField(selection, 'id');
  127. if(selection.length == 0) {
  128. return sa.msg('请至少选择一条数据')
  129. }
  130. // 提交删除
  131. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  132. sa.ajax('/sp-admin/AppRole/deleteByIds', {ids: ids.join(',')}, function(res) {
  133. sa.arrayDelete(this.dataList, selection);
  134. sa.ok('删除成功');
  135. sa.f5TableHeight(); // 刷新表格高度
  136. }.bind(this))
  137. }.bind(this));
  138. },
  139. AssignAuth: function(item) {
  140. sa.showIframe('角色菜单权限设置', 'app-role-menu-list.html?appRoleId=' + item.userType, '1000px', '90%');
  141. }
  142. },
  143. created: function() {
  144. this.f5();
  145. sa.onInputEnter();
  146. }
  147. })
  148. </script>
  149. </body>
  150. </html>