tb-car-filing-list.html 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>车辆备案-列表</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport"
  7. content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  8. <!-- 所有的 css & js 资源 -->
  9. <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
  10. <link rel="stylesheet" href="../../static/sa.css">
  11. <script src="../../static/kj/vue.min.js"></script>
  12. <script src="../../static/kj/element-ui/index.js"></script>
  13. <script src="../../static/kj/httpVueLoader.js"></script>
  14. <script src="../../static/kj/jquery.min.js"></script>
  15. <script src="../../static/kj/layer/layer.js"></script>
  16. <script src="../../static/sa.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.carNo"></sa-item>
  25. <sa-item type="enum" name="类型" v-model="p.type" :jv="{1: '临时', 2: '内部'}" jtype="2" def="不限">
  26. </sa-item>
  27. <sa-item type="text" name="联系人" v-model="p.driverName"></sa-item>
  28. <sa-item type="text" name="联系电话" v-model="p.driverContact"></sa-item>
  29. <sa-item type="enum" name="审核状态" v-model="p.judgeState" :jv="{0: '未审核', 1: '通过',2:'不通过'}" jtype="4"
  30. def="全部">
  31. </sa-item>
  32. <div>
  33. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  34. <el-button type="info" icon="el-icon-refresh"
  35. @click="p.carNo='',p.type='',p.driverName='',p.driverContact='',p.judgeState='',f5()">重置</el-button>
  36. <el-button type="primary" icon="el-icon-plus" @click="add"
  37. v-if="sa.isAuth('tb-car-filing-add')">新增</el-button>
  38. </div>
  39. </el-form>
  40. <!-- ------------- 数据列表 ------------- -->
  41. <el-table class="data-table" ref="data-table" :data="dataList" style="margin-top: 5px;">
  42. <sa-td name="序号" type="index"></sa-td>
  43. <sa-td name="所属组织" prop="deptName" width="200"></sa-td>
  44. <sa-td name="车牌号" prop="carNo"></sa-td>
  45. <sa-td name="类型" prop="type" type="enum" :jv="{1: '临时', 2: '内部'}"></sa-td>
  46. <sa-td name="联系人" prop="driverName"></sa-td>
  47. <sa-td name="联系电话" prop="driverContact" width="120"></sa-td>
  48. <sa-td name="审核状态" prop="judgeState" type="enum" :jv="{0: '未审核', 1: '通过', 2: '不通过'}"></sa-td>
  49. <sa-td name="审核时间" prop="judgeTime" not="-" width="140"></sa-td>
  50. <sa-td name="创建时间" prop="createTime" width="140"></sa-td>
  51. <sa-td name="更新时间" prop="updateTime" width="140"></sa-td>
  52. <el-table-column label="操作" fixed="right" width="240px">
  53. <template slot-scope="s">
  54. <el-button v-if="sa.isAuth('tb-car-filing-judge')&&s.row.judgeState==0" class="c-btn" type="success" @click="judgeFn(s.row)">审核
  55. </el-button>
  56. <el-button class="c-btn" type="success" @click="get(s.row)">查看
  57. </el-button>
  58. <el-button v-if="sa.isAuth('tb-car-filing-edit')" class="c-btn" type="primary"
  59. @click="update(s.row)">修改
  60. </el-button>
  61. <el-button v-if="sa.isAuth('tb-car-filing-del')" class="c-btn" type="danger"
  62. @click="del(s.row)">删除
  63. </el-button>
  64. </template>
  65. </el-table-column>
  66. </el-table>
  67. <!-- ------------- 分页 ------------- -->
  68. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()">
  69. </sa-item>
  70. </div>
  71. </div>
  72. <script>
  73. var app = new Vue({
  74. components: {
  75. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  76. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  77. },
  78. el: '.vue-box',
  79. data: {
  80. p: { // 查询参数
  81. carNo: '', // 车牌号
  82. type: '', // 类型(1=临时,2=内部)
  83. driverName: '', // 联系人
  84. driverContact: '', // 联系电话
  85. driverIdCard: '', // 联系人身份证
  86. visit: '', // 状态
  87. judgeState: '', // 备注
  88. pageNo: 1, // 当前页
  89. pageSize: 10, // 页大小
  90. sortType: 0 // 排序方式
  91. },
  92. dataCount: 0,
  93. dataList: [], // 数据集合
  94. },
  95. methods: {
  96. judgeFn(data){
  97. sa.showIframe('审核', 'tb-car-filing-judge.html?id=' + data.id, '700px', '70%');
  98. },
  99. // 刷新
  100. f5: function() {
  101. sa.ajax('/TbCarFiling/getList', sa.removeNull(this.p), function(res) {
  102. this.dataList = res.data; // 数据
  103. this.dataCount = res.dataCount; // 数据总数
  104. sa.f5TableHeight(); // 刷新表格高度
  105. }.bind(this));
  106. },
  107. // 查看
  108. get: function(data) {
  109. sa.showIframe('数据详情', 'tb-car-filing-info.html?id=' + data.id, '700px', '90%');
  110. },
  111. // 查看 - 根据选中的
  112. getBySelect: function(data) {
  113. var selection = this.$refs['data-table'].selection;
  114. if (selection.length == 0) {
  115. return sa.msg('请选择一条数据')
  116. }
  117. this.get(selection[0]);
  118. },
  119. // 修改
  120. update: function(data) {
  121. sa.showIframe('修改数据', 'tb-car-filing-add.html?id=' + data.id, '700px', '90%');
  122. },
  123. // 新增
  124. add: function(data) {
  125. sa.showIframe('新增数据', 'tb-car-filing-add.html?id=-1', '700px', '80%');
  126. },
  127. // 删除
  128. del: function(data) {
  129. sa.confirm('是否删除,此操作不可撤销', function() {
  130. sa.ajax('/TbCarFiling/delete?id=' + data.id, function(res) {
  131. sa.arrayDelete(this.dataList, data);
  132. sa.ok('删除成功');
  133. sa.f5TableHeight(); // 刷新表格高度
  134. }.bind(this))
  135. }.bind(this));
  136. },
  137. // 批量删除
  138. deleteByIds: function() {
  139. // 获取选中元素的id列表
  140. let selection = this.$refs['data-table'].selection;
  141. let ids = sa.getArrayField(selection, 'id');
  142. if (selection.length == 0) {
  143. return sa.msg('请至少选择一条数据')
  144. }
  145. // 提交删除
  146. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  147. sa.ajax('/TbCarFiling/deleteByIds', {
  148. ids: ids.join(',')
  149. }, function(res) {
  150. sa.arrayDelete(this.dataList, selection);
  151. sa.ok('删除成功');
  152. sa.f5TableHeight(); // 刷新表格高度
  153. }.bind(this))
  154. }.bind(this));
  155. },
  156. },
  157. created: function() {
  158. this.f5();
  159. sa.onInputEnter();
  160. }
  161. })
  162. </script>
  163. </body>
  164. </html>