tb-goods-list.html 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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="https://unpkg.com/element-ui@2.13.0/lib/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. <script src="../../static/kj/upload-util.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.typeNames"></sa-item>
  26. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  27. <el-button type="info" icon="el-icon-refresh" @click="sa.f5()">重置</el-button>
  28. </el-form>
  29. <div class="fast-btn">
  30. <el-button v-if="sa.isAuth('tb-goods-add')" size="mini" type="primary" @click="add()">新增</el-button>
  31. <el-button size="mini" type="success" @click="getBySelect()">查看</el-button>
  32. </div>
  33. <!-- ------------- 数据列表 ------------- -->
  34. <el-table class="data-table" ref="data-table" :data="dataList" >
  35. <sa-td type="selection"></sa-td>
  36. <sa-td name="名称" prop="name" ></sa-td>
  37. <sa-td name="主图" prop="avatar" type="img"></sa-td>
  38. <sa-td name="分类ID字符串(可多选)" prop="typeIds" ></sa-td>
  39. <sa-td name="分类名称" prop="typeNames" ></sa-td>
  40. <sa-td name="编号" prop="code" ></sa-td>
  41. <sa-td name="备注" prop="remark" ></sa-td>
  42. <sa-td name="原产地" prop="source" ></sa-td>
  43. <sa-td name="状态" prop="status" type="switch" :jv="{0: '禁用', 1: '启用'}" @change="s => updateStatus(s.row)"></sa-td>
  44. <!-- <sa-td name="" prop="unit" ></sa-td>
  45. <sa-td name="" prop="singlePrice" ></sa-td>
  46. <sa-td name="" prop="taxNo" ></sa-td> -->
  47. <el-table-column label="操作" fixed="right" width="240px">
  48. <template slot-scope="s">
  49. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  50. <el-button v-if="sa.isAuth('tb-goods-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  51. <el-button v-if="sa.isAuth('tb-goods-del')" class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</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()"></sa-item>
  57. </div>
  58. </div>
  59. <script>
  60. var app = new Vue({
  61. components: {
  62. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  63. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  64. },
  65. el: '.vue-box',
  66. data: {
  67. p: { // 查询参数
  68. id: '', // 主键
  69. name: '', // 名称
  70. typeIds: '', // 分类ID 字符串(可多选)
  71. typeNames: '', // 分类名称
  72. code: '', // 编号
  73. remark: '', // 备注
  74. source: '', // 原产地
  75. status: '', // 状态(0=禁用,1=启用)
  76. createTime: '', // 创建时间
  77. unit: '', //
  78. singlePrice: '', //
  79. taxNo: '', //
  80. pageNo: 1, // 当前页
  81. pageSize: 10, // 页大小
  82. sortType: 0 // 排序方式
  83. },
  84. dataCount: 0,
  85. dataList: [], // 数据集合
  86. },
  87. methods: {
  88. // 刷新
  89. f5: function() {
  90. sa.ajax('/level-one-server/TbGoods/getList', sa.removeNull(this.p), function(res) {
  91. this.dataList = res.data; // 数据
  92. this.dataCount = res.dataCount; // 数据总数
  93. sa.f5TableHeight(); // 刷新表格高度
  94. }.bind(this));
  95. },
  96. // 查看
  97. get: function(data) {
  98. sa.showIframe('数据详情', 'tb-goods-info.html?id=' + data.id, '1050px', '90%');
  99. },
  100. // 查看 - 根据选中的
  101. getBySelect: function(data) {
  102. var selection = this.$refs['data-table'].selection;
  103. if(selection.length == 0) {
  104. return sa.msg('请选择一条数据')
  105. }
  106. this.get(selection[0]);
  107. },
  108. // 修改
  109. update: function(data) {
  110. sa.showIframe('修改数据', 'tb-goods-add.html?id=' + data.id, '1000px', '90%');
  111. },
  112. // 新增
  113. add: function(data) {
  114. sa.showIframe('新增数据', 'tb-goods-add.html?id=-1', '1000px', '90%');
  115. },
  116. // 删除
  117. del: function(data) {
  118. sa.confirm('是否删除,此操作不可撤销', function() {
  119. sa.ajax('/level-one-server/TbGoods/delete?id=' + data.id, function(res) {
  120. sa.arrayDelete(this.dataList, data);
  121. sa.ok('删除成功');
  122. sa.f5TableHeight(); // 刷新表格高度
  123. }.bind(this))
  124. }.bind(this));
  125. },
  126. // 批量删除
  127. deleteByIds: function() {
  128. // 获取选中元素的id列表
  129. let selection = this.$refs['data-table'].selection;
  130. let ids = sa.getArrayField(selection, 'id');
  131. if(selection.length == 0) {
  132. return sa.msg('请至少选择一条数据')
  133. }
  134. // 提交删除
  135. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  136. sa.ajax('/level-one-server/TbGoods/deleteByIds', {ids: ids.join(',')}, 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('/level-one-server/TbGoods/updateStatus', {id: data.id, value: data.status}, function(res) {
  149. isOk = true;
  150. sa.msg('修改成功');
  151. }.bind(this));
  152. // 如果未能修改成功, 则回滚
  153. $.when(ajax).done(function() {
  154. if(isOk == false) {
  155. data.status = oldValue;
  156. }
  157. })
  158. },
  159. },
  160. created: function() {
  161. this.f5();
  162. sa.onInputEnter();
  163. }
  164. })
  165. </script>
  166. </body>
  167. </html>