tb-car-list.html 5.3 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.cardNo"></sa-item>
  24. <sa-item type="text" name="规格" v-model="p.cardSize"></sa-item>
  25. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  26. </el-form>
  27. <!-- ------------- 快捷按钮 ------------- -->
  28. <sa-item type="fast-btn" show="add,delete,reset"></sa-item>
  29. <!-- ------------- 数据列表 ------------- -->
  30. <el-table class="data-table" ref="data-table" :data="dataList" >
  31. <sa-td type="selection"></sa-td>
  32. <sa-td name="车牌号" prop="cardNo" ></sa-td>
  33. <sa-td name="规格" prop="cardSize" ></sa-td>
  34. <sa-td name="上次运输商品" prop="lastGoodsName" ></sa-td>
  35. <sa-td name="上次载重" prop="lastNetWeight" ></sa-td>
  36. <sa-td name="上次入境时间" prop="lastInTime" ></sa-td>
  37. <sa-td name="上次出境时间" prop="lastOutTime" ></sa-td>
  38. <sa-td name="当前状态" prop="status" type="enum" :jv="{1: '境外', 2: '境内'}"></sa-td>
  39. <el-table-column label="操作" fixed="right" width="240px">
  40. <template slot-scope="s">
  41. <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  42. <el-button class="c-btn" type="danger" icon="el-icon-delete" @click="del(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. id: '', // 主键
  60. cardNo: '', // 名称
  61. cardSize: '', // 规格
  62. lastGoodsName: '', // 最后一次运输商品
  63. lastGoodsCode: '', // 最后一次运输商品编号
  64. lastNetWeight: '', // 最后一次载重
  65. lastInTime: '', // 最后一次入境时间
  66. lastOutTime: '', // 最后一次出境时间
  67. status: '', // 当前状态(1=境外,2=境内)
  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('/TbCar/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-car-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-car-add.html?id=' + data.id, '500px', '60%');
  99. },
  100. // 新增
  101. add: function(data) {
  102. sa.showIframe('新增数据', 'tb-car-add.html?id=-1', '500px', '60%');
  103. },
  104. // 删除
  105. del: function(data) {
  106. sa.confirm('是否删除,此操作不可撤销', function() {
  107. sa.ajax('/TbCar/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('/TbCar/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>