tb-import-goods-list.html 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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="selection"></sa-td>
  31. <sa-td name="业务编号" prop="platSeqNo" width="200"></sa-td>
  32. <sa-td name="商品序号" prop="gNo" width="160"></sa-td>
  33. <sa-td name="商品编码" prop="codeTs" width="120"></sa-td>
  34. <sa-td name="商品名称" prop="gName" width="120"></sa-td>
  35. <sa-td name="规格型号" prop="gModel" ></sa-td>
  36. <sa-td name="申报数量" prop="gQty" ></sa-td>
  37. <sa-td name="毛重(kg)" prop="grossWt" ></sa-td>
  38. <sa-td name="净重(kg)" prop="netWt" ></sa-td>
  39. <sa-td name="产销国" prop="originCountry" ></sa-td>
  40. <sa-td name="申报单价" prop="declPrice" ></sa-td>
  41. <sa-td name="申报总价" prop="declTotal" ></sa-td>
  42. <sa-td name="储存条件" prop="storageEnvm" ></sa-td>
  43. <sa-td name="商品用途" prop="useTo" ></sa-td>
  44. <sa-td name="商铺编码" prop="shopNo" ></sa-td>
  45. <sa-td name="商铺名称" prop="shopName" ></sa-td>
  46. <sa-td name="包装类型" prop="wrapType" ></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. </template>
  51. </el-table-column>
  52. </el-table>
  53. <!-- ------------- 分页 ------------- -->
  54. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  55. </div>
  56. </div>
  57. <script>
  58. var app = new Vue({
  59. components: {
  60. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  61. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  62. },
  63. el: '.vue-box',
  64. data: {
  65. p: { // 查询参数
  66. platSeqNo: '', // 业务编号
  67. gName: '', // 商品名称
  68. pageNo: 1, // 当前页
  69. pageSize: 10, // 页大小
  70. sortType: 0 // 排序方式
  71. },
  72. dataCount: 0,
  73. dataList: [], // 数据集合
  74. },
  75. methods: {
  76. // 刷新
  77. f5: function() {
  78. sa.ajax('/level-one-server/TbImportGoods/getList', sa.removeNull(this.p), function(res) {
  79. this.dataList = res.data; // 数据
  80. this.dataCount = res.dataCount; // 数据总数
  81. sa.f5TableHeight(); // 刷新表格高度
  82. }.bind(this));
  83. },
  84. // 查看
  85. get: function(data) {
  86. sa.showIframe('数据详情', 'tb-import-goods-info.html?id=' + data.id, '1050px', '90%');
  87. },
  88. // 查看 - 根据选中的
  89. getBySelect: function(data) {
  90. var selection = this.$refs['data-table'].selection;
  91. if(selection.length == 0) {
  92. return sa.msg('请选择一条数据')
  93. }
  94. this.get(selection[0]);
  95. },
  96. // 修改
  97. update: function(data) {
  98. sa.showIframe('修改数据', 'tb-import-goods-add.html?id=' + data.id, '1000px', '90%');
  99. },
  100. // 新增
  101. add: function(data) {
  102. sa.showIframe('新增数据', 'tb-import-goods-add.html?id=-1', '1000px', '90%');
  103. },
  104. // 删除
  105. del: function(data) {
  106. sa.confirm('是否删除,此操作不可撤销', function() {
  107. sa.ajax('/level-one-server/TbImportGoods/delete?id=' + data.id, function(res) {
  108. sa.arrayDelete(this.dataList, data);
  109. sa.ok('删除成功');
  110. sa.f5TableHeight(); // 刷新表格高度
  111. }.bind(this))
  112. }.bind(this));
  113. },
  114. // 批量删除
  115. deleteByIds: function() {
  116. // 获取选中元素的id列表
  117. let selection = this.$refs['data-table'].selection;
  118. let ids = sa.getArrayField(selection, 'id');
  119. if(selection.length == 0) {
  120. return sa.msg('请至少选择一条数据')
  121. }
  122. // 提交删除
  123. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  124. sa.ajax('/level-one-server/TbImportGoods/deleteByIds', {ids: ids.join(',')}, function(res) {
  125. sa.arrayDelete(this.dataList, selection);
  126. sa.ok('删除成功');
  127. sa.f5TableHeight(); // 刷新表格高度
  128. }.bind(this))
  129. }.bind(this));
  130. },
  131. },
  132. created: function() {
  133. this.f5();
  134. sa.onInputEnter();
  135. }
  136. })
  137. </script>
  138. </body>
  139. </html>