sys-dict-list.html 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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="https://unpkg.com/element-ui@2.13.0/lib/theme-chalk/index.css">
  10. <link rel="stylesheet" href="../../static/sa.css">
  11. <script src="https://unpkg.com/vue@2.6.10/dist/vue.js"></script>
  12. <script src="https://unpkg.com/element-ui@2.13.0/lib/index.js"></script>
  13. <script src="https://unpkg.com/http-vue-loader@1.4.2/src/httpVueLoader.js"></script>
  14. <script src="https://unpkg.com/jquery@3.4.1/dist/jquery.js"></script>
  15. <script src="https://www.layuicdn.com/layer-v3.1.1/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.code"></sa-item>
  26. <sa-item type="text" name="描述" v-model="p.des"></sa-item>
  27. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  28. <br/>
  29. </el-form>
  30. <!-- ------------- 快捷按钮 ------------- -->
  31. <sa-item type="fast-btn" show="add,reset"></sa-item>
  32. <!-- ------------- 数据列表 ------------- -->
  33. <el-table class="data-table" ref="data-table" :data="dataList">
  34. <sa-td type="selection"></sa-td>
  35. <sa-td name="字典名称" prop="name"></sa-td>
  36. <sa-td name="编号" prop="code"></sa-td>
  37. <sa-td name="描述" prop="des"></sa-td>
  38. <el-table-column label="操作" fixed="right" width="240px">
  39. <template slot-scope="s">
  40. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">字典表项</el-button>
  41. <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  42. <el-button class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
  43. </template>
  44. </el-table-column>
  45. </el-table>
  46. <!-- ------------- 分页 ------------- -->
  47. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  48. </div>
  49. </div>
  50. <script>
  51. var app = new Vue({
  52. components: {
  53. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  54. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  55. },
  56. el: '.vue-box',
  57. data: {
  58. p: { // 查询参数
  59. id: '', // 主键
  60. name: '', // 字典名称
  61. code: '', // 编号
  62. des: '', // 描述
  63. pageNo: 1, // 当前页
  64. pageSize: 10, // 页大小
  65. sortType: 0 // 排序方式
  66. },
  67. dataCount: 0,
  68. dataList: [], // 数据集合
  69. },
  70. methods: {
  71. // 刷新
  72. f5: function () {
  73. sa.ajax('/SysDict/getList', sa.removeNull(this.p), function (res) {
  74. this.dataList = res.data; // 数据
  75. this.dataCount = res.dataCount; // 数据总数
  76. sa.f5TableHeight(); // 刷新表格高度
  77. }.bind(this));
  78. },
  79. // 查看
  80. get: function (data) {
  81. sa.showIframe('字典项', '../sys-dict-item/sys-dict-item-list.html?dictId=' + data.id, '950px', '90%');
  82. },
  83. // 查看 - 根据选中的
  84. getBySelect: function (data) {
  85. var selection = this.$refs['data-table'].selection;
  86. if (selection.length == 0) {
  87. return sa.msg('请选择一条数据')
  88. }
  89. this.get(selection[0]);
  90. },
  91. // 修改
  92. update: function (data) {
  93. sa.showIframe('修改数据', 'sys-dict-add.html?id=' + data.id, '450px', '70%');
  94. },
  95. // 新增
  96. add: function (data) {
  97. sa.showIframe('新增数据', 'sys-dict-add.html?id=-1', '450px', '70%');
  98. },
  99. // 删除
  100. del: function (data) {
  101. sa.confirm('是否删除,此操作不可撤销', function () {
  102. sa.ajax('/SysDict/delete?id=' + data.id, function (res) {
  103. sa.arrayDelete(this.dataList, data);
  104. sa.ok('删除成功');
  105. sa.f5TableHeight(); // 刷新表格高度
  106. }.bind(this))
  107. }.bind(this));
  108. },
  109. // 批量删除
  110. deleteByIds: function () {
  111. // 获取选中元素的id列表
  112. let selection = this.$refs['data-table'].selection;
  113. let ids = sa.getArrayField(selection, 'id');
  114. if (selection.length == 0) {
  115. return sa.msg('请至少选择一条数据')
  116. }
  117. // 提交删除
  118. sa.confirm('是否批量删除选中数据?此操作不可撤销', function () {
  119. sa.ajax('/SysDict/deleteByIds', {ids: ids.join(',')}, function (res) {
  120. sa.arrayDelete(this.dataList, selection);
  121. sa.ok('删除成功');
  122. sa.f5TableHeight(); // 刷新表格高度
  123. }.bind(this))
  124. }.bind(this));
  125. },
  126. },
  127. created: function () {
  128. this.f5();
  129. sa.onInputEnter();
  130. }
  131. })
  132. </script>
  133. </body>
  134. </html>