tb-goods-list.html 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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.code"></sa-item>
  24. <sa-item type="text" name="名称" v-model="p.name"></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. <sa-item type="fast-btn" show="add,delete,reset"></sa-item>
  30. <!-- ------------- 数据列表 ------------- -->
  31. <el-table class="data-table" ref="data-table" :data="dataList" >
  32. <sa-td type="selection"></sa-td>
  33. <sa-td name="编号" prop="code" ></sa-td>
  34. <sa-td name="名称" prop="name" ></sa-td>
  35. <sa-td name="状态" prop="status" type="switch" :jv="{1: '否[#ff0000]', 2: '是[#005500]'}" @change="s => updateStatus(s.row)"></sa-td>
  36. <sa-td name="创建时间" prop="createTime" ></sa-td>
  37. <el-table-column label="操作" fixed="right" width="240px">
  38. <template slot-scope="s">
  39. <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  40. <el-button class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
  41. </template>
  42. </el-table-column>
  43. </el-table>
  44. <!-- ------------- 分页 ------------- -->
  45. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  46. </div>
  47. </div>
  48. <script>
  49. var app = new Vue({
  50. components: {
  51. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  52. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  53. },
  54. el: '.vue-box',
  55. data: {
  56. p: { // 查询参数
  57. id: '', // 主键
  58. code: '', // 编号
  59. name: '', // 名称
  60. status: '', // 状态(1=禁用,2=启用)
  61. createTime: '', // 创建时间
  62. pageNo: 1, // 当前页
  63. pageSize: 10, // 页大小
  64. sortType: 0 // 排序方式
  65. },
  66. dataCount: 0,
  67. dataList: [], // 数据集合
  68. },
  69. methods: {
  70. // 刷新
  71. f5: function() {
  72. sa.ajax('/TbGoods/getList', sa.removeNull(this.p), function(res) {
  73. this.dataList = res.data; // 数据
  74. this.dataCount = res.dataCount; // 数据总数
  75. sa.f5TableHeight(); // 刷新表格高度
  76. }.bind(this));
  77. },
  78. // 查看
  79. get: function(data) {
  80. sa.showIframe('数据详情', 'tb-goods-info.html?id=' + data.id, '1050px', '90%');
  81. },
  82. // 查看 - 根据选中的
  83. getBySelect: function(data) {
  84. var selection = this.$refs['data-table'].selection;
  85. if(selection.length == 0) {
  86. return sa.msg('请选择一条数据')
  87. }
  88. this.get(selection[0]);
  89. },
  90. // 修改
  91. update: function(data) {
  92. sa.showIframe('修改数据', 'tb-goods-add.html?id=' + data.id, '1000px', '90%');
  93. },
  94. // 新增
  95. add: function(data) {
  96. sa.showIframe('新增数据', 'tb-goods-add.html?id=-1', '1000px', '90%');
  97. },
  98. // 删除
  99. del: function(data) {
  100. sa.confirm('是否删除,此操作不可撤销', function() {
  101. sa.ajax('/TbGoods/delete?id=' + data.id, function(res) {
  102. sa.arrayDelete(this.dataList, data);
  103. sa.ok('删除成功');
  104. sa.f5TableHeight(); // 刷新表格高度
  105. }.bind(this))
  106. }.bind(this));
  107. },
  108. // 批量删除
  109. deleteByIds: function() {
  110. // 获取选中元素的id列表
  111. let selection = this.$refs['data-table'].selection;
  112. let ids = sa.getArrayField(selection, 'id');
  113. if(selection.length == 0) {
  114. return sa.msg('请至少选择一条数据')
  115. }
  116. // 提交删除
  117. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  118. sa.ajax('/TbGoods/deleteByIds', {ids: ids.join(',')}, function(res) {
  119. sa.arrayDelete(this.dataList, selection);
  120. sa.ok('删除成功');
  121. sa.f5TableHeight(); // 刷新表格高度
  122. }.bind(this))
  123. }.bind(this));
  124. },
  125. // 改 - 状态(1=禁用,2=启用)
  126. updateStatus: function(data) {
  127. // 声明变量记录是否成功
  128. var isOk = false;
  129. var oldValue = data.status;
  130. var ajax = sa.ajax('/TbGoods/updateStatus', {id: data.id, value: data.status}, function(res) {
  131. isOk = true;
  132. sa.msg('修改成功');
  133. }.bind(this));
  134. // 如果未能修改成功, 则回滚
  135. $.when(ajax).done(function() {
  136. if(isOk == false) {
  137. data.status = oldValue;
  138. }
  139. })
  140. },
  141. },
  142. created: function() {
  143. this.f5();
  144. sa.onInputEnter();
  145. }
  146. })
  147. </script>
  148. </body>
  149. </html>