tb-import-goods-list.html 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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.platSeqNo" width="100px"></sa-item>
  24. <sa-item type="text" name="商品名称" v-model="p.gName" width="100px"></sa-item>
  25. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  26. <el-button size="mini" type="info" @click="sa.f5()">重置</el-button>
  27. </el-form>
  28. <!-- ------------- 数据列表 ------------- -->
  29. <el-table class="data-table" ref="data-table" :data="dataList" >
  30. <sa-td type="index" width="30px"></sa-td>
  31. <sa-td name="业务编号" prop="platSeqNo" width="140px"></sa-td>
  32. <sa-td name="商品名称" prop="gName" ></sa-td>
  33. <sa-td name="申报数量" prop="gQty" ></sa-td>
  34. <sa-td name="商品毛重" prop="grossWt" ></sa-td>
  35. <sa-td name="商品净重" prop="netWt" ></sa-td>
  36. <sa-td name="计量单位" prop="gUnit" ></sa-td>
  37. <sa-td name="申报单价" prop="declPrice" ></sa-td>
  38. <sa-td name="申报总价" prop="declTotal" ></sa-td>
  39. <sa-td name="商铺名称" prop="shopName" ></sa-td>
  40. <el-table-column label="操作" fixed="right" width="100px">
  41. <template slot-scope="s">
  42. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(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. platSeqNo: '', // 业务编号
  60. gName: '', // 商品名称
  61. pageNo: 1, // 当前页
  62. pageSize: 10, // 页大小
  63. sortType: 0 // 排序方式
  64. },
  65. dataCount: 0,
  66. dataList: [], // 数据集合
  67. },
  68. methods: {
  69. // 刷新
  70. f5: function() {
  71. sa.ajax('/level-one-server/TbImportGoods/getList', sa.removeNull(this.p), function(res) {
  72. this.dataList = res.data; // 数据
  73. this.dataCount = res.dataCount; // 数据总数
  74. sa.f5TableHeight(); // 刷新表格高度
  75. }.bind(this));
  76. },
  77. // 查看
  78. get: function(data) {
  79. sa.showIframe('数据详情', 'tb-import-goods-info.html?id=' + data.id, '900px', '90%');
  80. },
  81. // 查看 - 根据选中的
  82. getBySelect: function(data) {
  83. var selection = this.$refs['data-table'].selection;
  84. if(selection.length == 0) {
  85. return sa.msg('请选择一条数据')
  86. }
  87. this.get(selection[0]);
  88. },
  89. // 修改
  90. update: function(data) {
  91. sa.showIframe('修改数据', 'tb-import-goods-add.html?id=' + data.id, '1000px', '90%');
  92. },
  93. // 新增
  94. add: function(data) {
  95. sa.showIframe('新增数据', 'tb-import-goods-add.html?id=-1', '1000px', '90%');
  96. },
  97. // 删除
  98. del: function(data) {
  99. sa.confirm('是否删除,此操作不可撤销', function() {
  100. sa.ajax('/level-one-server/TbImportGoods/delete?id=' + data.id, function(res) {
  101. sa.arrayDelete(this.dataList, data);
  102. sa.ok('删除成功');
  103. sa.f5TableHeight(); // 刷新表格高度
  104. }.bind(this))
  105. }.bind(this));
  106. },
  107. // 批量删除
  108. deleteByIds: function() {
  109. // 获取选中元素的id列表
  110. let selection = this.$refs['data-table'].selection;
  111. let ids = sa.getArrayField(selection, 'id');
  112. if(selection.length == 0) {
  113. return sa.msg('请至少选择一条数据')
  114. }
  115. // 提交删除
  116. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  117. sa.ajax('/level-one-server/TbImportGoods/deleteByIds', {ids: ids.join(',')}, function(res) {
  118. sa.arrayDelete(this.dataList, selection);
  119. sa.ok('删除成功');
  120. sa.f5TableHeight(); // 刷新表格高度
  121. }.bind(this))
  122. }.bind(this));
  123. },
  124. },
  125. created: function() {
  126. this.f5();
  127. sa.onInputEnter();
  128. }
  129. })
  130. </script>
  131. </body>
  132. </html>