tb-driver-audit-list.html 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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="https://unpkg.com/element-ui@2.13.0/lib/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. <script src="../../static/kj/upload-util.js"></script>
  18. </head>
  19. <body>
  20. <div class="vue-box" style="display: none;" :style="'display: block;'">
  21. <div class="c-panel">
  22. <!-- ------------- 检索参数 ------------- -->
  23. <!-- <div class="c-title">检索参数</div> -->
  24. <el-form ref="form" :model='p' @submit.native.prevent>
  25. <sa-item type="text" name="姓名" v-model="p.name" width="50px"></sa-item>
  26. <sa-item type="text" name="手机号" v-model="p.phone"></sa-item>
  27. <sa-item type="text" name="身份证号" v-model="p.idCard" width="90px"></sa-item>
  28. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  29. <el-button icon="el-icon-refresh" type="info" @click="sa.f5()">重置</el-button>
  30. </el-form>
  31. <!--<div class="fast-btn">
  32. <el-button v-if="sa.isAuth('tb-driver-add')" size="mini" type="primary" @click="add()">新增</el-button>
  33. <el-button size="mini" type="success" @click="getBySelect()">查看</el-button>
  34. <el-button size="mini" type="danger" @click="deleteByIds()">批量删除</el-button>
  35. <el-button size="mini" type="primary" @click="importMsg()">导入</el-button>
  36. <el-button size="mini" type="success" @click="exportFile()">导出</el-button>
  37. </div> -->
  38. <!-- ------------- 数据列表 ------------- -->
  39. <el-table class="data-table" ref="data-table" :data="dataList">
  40. <sa-td type="selection"></sa-td>
  41. <sa-td name="姓名" prop="name"></sa-td>
  42. <sa-td name="性别" prop="sex" type="enum" :jv="{1: '男', 2: '女'}"></sa-td>
  43. <sa-td name="出生年月" prop="birthday" width="120px"></sa-td>
  44. <sa-td name="身份证号" width="170px" prop="idCard"></sa-td>
  45. <sa-td name="手机号" width="110px" prop="phone"></sa-td>
  46. <!--<sa-td name="联系地址" width="150px" prop="address"></sa-td>
  47. <sa-td name="身份证照片" prop="idCardImg" type="img-list"></sa-td>
  48. <sa-td name="驾驶证号" prop="drivingLicenseId"></sa-td>-->
  49. <sa-td name="驾照类型" prop="driverType" type="enum" :jv="{6: 'A2', 7: 'B2', 19: 'C1', 20:'C2'}"></sa-td>
  50. <sa-td name="驾驶证照片" prop="drivingLicenseImg" type="img-list"></sa-td>
  51. <!-- <sa-td name="车辆行驶证号" prop="vehicleDrivingId" width="120px"></sa-td>
  52. <sa-td name="车辆行驶证照片" prop="vehicleDrivingImg" type="img-list"></sa-td>
  53. <sa-td name="车辆前脸照" prop="vehicleImg" type="img-list"></sa-td>
  54. <sa-td name="状态" prop="isLock"></sa-td>-->
  55. <sa-td name="注册时间" prop="registerTime" width="150px"></sa-td>
  56. <sa-td name="审核状态" prop="auditStatus" type="enum" :jv="{0: '待审核', 3: '审核中', 1: '已审核', 2: '审核不通过'}"></sa-td>
  57. <!--<sa-td name="审核状态" prop="auditStatus"></sa-td>-->
  58. <sa-td name="审核时间" prop="auditTime" width="150px"></sa-td>
  59. <el-table-column label="操作" fixed="right" width="150px">
  60. <template slot-scope="s">
  61. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  62. <el-button class="c-btn" type="danger" icon="el-icon-lock" v-if="s.row.isLock" @click="unlock(s.row)">锁定</el-button>
  63. <el-button class="c-btn" type="primary" icon="el-icon-s-check" v-else @click="audit(s.row)">审核</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"
  69. @change="f5()"></sa-item>
  70. </div>
  71. <!-- 上传文件 -->
  72. <input ref="fileInput" type="file" style="display: none;" @click="handleFile(event)"></input>
  73. </div>
  74. <script>
  75. var app = new Vue({
  76. components: {
  77. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  78. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  79. },
  80. el: '.vue-box',
  81. data: {
  82. p: { // 查询参数
  83. name: '', // 姓名
  84. phone: '', // 手机号
  85. idCard: '', // 身份证号
  86. auditStatus: '', // 审核状态
  87. pageNo: 1, // 当前页
  88. pageSize: 10, // 页大小
  89. sortType: 0 // 排序方式
  90. },
  91. dataCount: 0,
  92. dataList: [], // 数据集合
  93. },
  94. methods: {
  95. handleTabClick(tab, event) {
  96. if(tab.name==='all')
  97. this.p.auditStatus =null;
  98. else
  99. this.p.auditStatus = tab.name;
  100. this.f5();
  101. },
  102. // 刷新
  103. f5: function () {
  104. sa.ajax('/transport-server/TbDriver/getWaitAuditList', sa.removeNull(this.p), function (res) {
  105. res.data.forEach(element => {
  106. element.idCard = element.idCard.toString().replace(/^(.{4})(?:\w+)(.{4})$/,'$1****$2')
  107. });
  108. this.dataList = res.data; // 数据
  109. this.dataCount = res.dataCount; // 数据总数
  110. sa.f5TableHeight(); // 刷新表格高度
  111. }.bind(this));
  112. },
  113. // 查看
  114. get: function (data) {
  115. sa.showIframe('司机详情', '../tb-driver/tb-driver-info.html?id=' + data.id, '1050px', '90%');
  116. },
  117. // 查看 - 根据选中的
  118. getBySelect: function (data) {
  119. var selection = this.$refs['data-table'].selection;
  120. if (selection.length == 0) {
  121. return sa.msg('请选择一条数据')
  122. }
  123. this.get(selection[0]);
  124. },
  125. // 修改
  126. update: function (data) {
  127. sa.showIframe('修改司机', 'tb-driver-add.html?id=' + data.id, '1000px', '90%');
  128. },
  129. // 新增
  130. add: function (data) {
  131. sa.showIframe('添加司机', 'tb-driver-add.html?id=-1', '1000px', '90%');
  132. },
  133. // 删除
  134. del: function (data) {
  135. sa.confirm('将要删除 ' + data.name + ' 这个司机信息,是否确认删除', function () {
  136. sa.ajax('/transport-server/TbDriver/delete?id=' + data.id, function (res) {
  137. sa.arrayDelete(this.dataList, data);
  138. sa.ok('删除成功');
  139. sa.f5TableHeight(); // 刷新表格高度
  140. }.bind(this))
  141. }.bind(this));
  142. },
  143. // 批量删除
  144. deleteByIds: function () {
  145. // 获取选中元素的id列表
  146. let selection = this.$refs['data-table'].selection;
  147. let ids = sa.getArrayField(selection, 'id');
  148. if (selection.length == 0) {
  149. return sa.msg('请至少选择一条数据')
  150. }
  151. // 提交删除
  152. sa.confirm('是否批量删除选中数据?此操作不可撤销', function () {
  153. sa.ajax('/transport-server/TbDriver/deleteByIds', { ids: ids.join(',') }, function (res) {
  154. sa.arrayDelete(this.dataList, selection);
  155. sa.ok('删除成功');
  156. sa.f5TableHeight(); // 刷新表格高度
  157. }.bind(this))
  158. }.bind(this));
  159. },
  160. unlock: function(data){
  161. sa.confirm('是否要解锁当前数据',function() {
  162. data.isLock=false
  163. sa.ok('解锁成功')
  164. sa.f5TableHeight(); // 刷新表格高度
  165. }.bind(this))
  166. },
  167. audit: function(data){
  168. sa.ajax('/transport-server/TbDriver/startAudit?id='+ data.id, function(res) {
  169. sa.showIframe('司机审核', 'tb-driver-audit.html?id=' + data.id, '1000px', '90%');
  170. }.bind(this))
  171. },
  172. exportFile() {
  173. sa.ajax('/transport-server/TbDriver/driverOutport', {
  174. // keyword: "",
  175. // filepath: ""
  176. }, function (res) {
  177. })
  178. },
  179. importMsg() {
  180. this.$refs.fileInput.click()
  181. console.log("导入")
  182. },
  183. handleFile(event) {
  184. console.log(event)
  185. const file = event.target.files[0]
  186. sa.ajax('/transport-server/TbDriver/driverImport', { file }, function (res) {
  187. // sa.ok('导入成功');
  188. // sa.f5TableHeight();
  189. })
  190. },
  191. },
  192. created: function () {
  193. this.f5();
  194. sa.onInputEnter();
  195. }
  196. })
  197. </script>
  198. </body>
  199. </html>