tb-goods-units-list.html 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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="num" name="商品主键" v-model="p.id"></sa-item>
  25. <sa-item type="text" name="商品单位编号" v-model="p.unitsNo"></sa-item>
  26. <sa-item type="text" name="管理商品的单位,比如吨、kg、个、柜;主要字段,名称,编号" v-model="p.units"></sa-item>
  27. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  28. </el-form>
  29. <div class="fast-btn">
  30. <el-button v-if="sa.isAuth('tb-goods-units-add')" size="mini" type="primary" @click="add()">新增</el-button>
  31. <el-button size="mini" type="success" @click="getBySelect()">查看</el-button>
  32. <el-button size="mini" type="info" @click="sa.f5()">重置</el-button>
  33. </div>
  34. <!-- ------------- 数据列表 ------------- -->
  35. <el-table class="data-table" ref="data-table" :data="dataList" >
  36. <sa-td type="selection"></sa-td>
  37. <sa-td name="商品主键" prop="id" type="num"></sa-td>
  38. <sa-td name="商品单位编号" prop="unitsNo" ></sa-td>
  39. <sa-td name="管理商品的单位,比如吨、kg、个、柜;主要字段,名称,编号" prop="units" ></sa-td>
  40. <el-table-column label="操作" fixed="right" width="240px">
  41. <template slot-scope="s">
  42. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  43. <el-button v-if="sa.isAuth('tb-goods-units-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  44. <el-button v-if="sa.isAuth('tb-goods-units-del')" class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
  45. </template>
  46. </el-table-column>
  47. </el-table>
  48. <!-- ------------- 分页 ------------- -->
  49. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  50. </div>
  51. </div>
  52. <script>
  53. var app = new Vue({
  54. components: {
  55. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  56. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  57. },
  58. el: '.vue-box',
  59. data: {
  60. p: { // 查询参数
  61. id: '', // 商品主键
  62. unitsNo: '', // 商品单位编号
  63. units: '', // 管理商品的单位,比如吨、kg、个、柜;主要字段,名称,编号
  64. pageNo: 1, // 当前页
  65. pageSize: 10, // 页大小
  66. sortType: 0 // 排序方式
  67. },
  68. dataCount: 0,
  69. dataList: [], // 数据集合
  70. },
  71. methods: {
  72. // 刷新
  73. f5: function() {
  74. sa.ajax('/level-one-server/TbGoodsUnits/getList', sa.removeNull(this.p), function(res) {
  75. this.dataList = res.data; // 数据
  76. this.dataCount = res.dataCount; // 数据总数
  77. sa.f5TableHeight(); // 刷新表格高度
  78. }.bind(this));
  79. },
  80. // 查看
  81. get: function(data) {
  82. sa.showIframe('数据详情', 'tb-goods-units-info.html?id=' + data.id, '1050px', '90%');
  83. },
  84. // 查看 - 根据选中的
  85. getBySelect: function(data) {
  86. var selection = this.$refs['data-table'].selection;
  87. if(selection.length == 0) {
  88. return sa.msg('请选择一条数据')
  89. }
  90. this.get(selection[0]);
  91. },
  92. // 修改
  93. update: function(data) {
  94. sa.showIframe('修改数据', 'tb-goods-units-add.html?id=' + data.id, '1000px', '90%');
  95. },
  96. // 新增
  97. add: function(data) {
  98. sa.showIframe('新增数据', 'tb-goods-units-add.html?id=-1', '1000px', '90%');
  99. },
  100. // 删除
  101. del: function(data) {
  102. sa.confirm('是否删除,此操作不可撤销', function() {
  103. sa.ajax('/level-one-server/TbGoodsUnits/delete?id=' + data.id, function(res) {
  104. sa.arrayDelete(this.dataList, data);
  105. sa.ok('删除成功');
  106. sa.f5TableHeight(); // 刷新表格高度
  107. }.bind(this))
  108. }.bind(this));
  109. },
  110. // 批量删除
  111. deleteByIds: function() {
  112. // 获取选中元素的id列表
  113. let selection = this.$refs['data-table'].selection;
  114. let ids = sa.getArrayField(selection, 'id');
  115. if(selection.length == 0) {
  116. return sa.msg('请至少选择一条数据')
  117. }
  118. // 提交删除
  119. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  120. sa.ajax('/level-one-server/TbGoodsUnits/deleteByIds', {ids: ids.join(',')}, function(res) {
  121. sa.arrayDelete(this.dataList, selection);
  122. sa.ok('删除成功');
  123. sa.f5TableHeight(); // 刷新表格高度
  124. }.bind(this))
  125. }.bind(this));
  126. },
  127. },
  128. created: function() {
  129. this.f5();
  130. sa.onInputEnter();
  131. }
  132. })
  133. </script>
  134. </body>
  135. </html>