From 651f8e426aa57ec5ebcdfddf840a21449dff4269 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期一, 20 二月 2023 18:06:43 +0800 Subject: [PATCH] 代理商管理,司机管理部分 --- management/guns-admin/src/main/webapp/static/modular/system/tDriver/tDriver.js | 309 ++++++++++++--------------------------------------- 1 files changed, 75 insertions(+), 234 deletions(-) diff --git a/management/guns-admin/src/main/webapp/static/modular/system/tDriver/tDriver.js b/management/guns-admin/src/main/webapp/static/modular/system/tDriver/tDriver.js index 9eab01e..47f89ba 100644 --- a/management/guns-admin/src/main/webapp/static/modular/system/tDriver/tDriver.js +++ b/management/guns-admin/src/main/webapp/static/modular/system/tDriver/tDriver.js @@ -1,5 +1,5 @@ /** - * 司机审核列表管理初始化 + * 管理初始化 */ var TDriver = { id: "TDriverTable", //表格id @@ -14,178 +14,44 @@ TDriver.initColumn = function () { return [ {field: 'selectItem', radio: true}, - {title: '主键ID', field: 'id', visible: false, align: 'center', valign: 'middle'}, - {title: '添加时间', field: 'insertTime', visible: true, align: 'center', valign: 'middle',width:'10%', - formatter: function (value, row) { - var btn = ""; - if(row.insertTime != '' && row.insertTime != null) { - var time = row.insertTime.replace(" ",'<br>'); - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.insertTime + '" onfocus="TUser.tooltip()">' + time + '</p>'] - } - return btn; - } - }, - {title: '司机姓名', field: 'name', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.name != '' && row.name != null) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.name + '" onfocus="TUser.tooltip()">' + row.name + '</p>'] - } - return btn; - } - }, - {title: '司机头像', field: 'headImgUrl', visible: true, align: 'center', valign: 'middle',width:'10%', - formatter: function (value, row) { - if (row.headImgUrl == null || row.headImgUrl == '') { - return '<a class = "view" href="javascript:void(0)"><img style="width: 50px;height:50px;" src="' + Feng.ctxPath + '/static/img/NoPIC.png" /></a>'; - } else { - return '<a class = "view" href="javascript:void(0)"><img style="width: 90px;height:50px;" src="' + row.headImgUrl + '" /></a>'; - } - }, - events: 'operateEvents' - }, - {title: '司机来源', field: 'addType', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.addType != '' && row.addType != null) { - if(row.addType == 1){ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="司机注册" onfocus="TUser.tooltip()">司机注册</p>'] - }else if (row.addType == 2){ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="平台添加" onfocus="TUser.tooltip()">平台添加</p>'] - }else if (row.addType == 3){ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="分公司添加" onfocus="TUser.tooltip()">分公司添加</p>'] - }else if (row.addType == 4){ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="加盟商添加" onfocus="TUser.tooltip()">加盟商添加</p>'] + {title: '主键', field: 'id', visible: true, align: 'center', valign: 'middle'}, + {title: '编号', field: 'code', visible: true, align: 'center', valign: 'middle'}, + {title: '姓名', field: 'name', visible: true, align: 'center', valign: 'middle'}, + {title: '手机号', field: 'phone', visible: true, align: 'center', valign: 'middle'}, + {title: '性别', field: 'sex', visible: true, align: 'center', valign: 'middle', + formatter: function (value, row) { + if (row.sex === 1){ + return '<span>男</span>' + }else if (row.sex === 2){ + return '<span>女</span>' + }else { + return '<span>未知</span>' } - } - return btn; - } - }, - {title: '企业id', field: 'companyId', visible: false, align: 'center', valign: 'middle'}, - {title: '所属分公司', field: 'companyName', visible: true, align: 'center', valign: 'middle', + }}, + {title: '驾驶证号码', field: 'driverLicenseNumber', visible: true, align: 'center', valign: 'middle'}, + {title: '身份证号码', field: 'idcard', visible: true, align: 'center', valign: 'middle'}, + {title: '身份证', field: 'source', visible: true, align: 'center', valign: 'middle'}, + {title: '所属代理商', field: 'agentId', visible: true, align: 'center', valign: 'middle'}, + {title: '所属分公司', field: 'branchOfficeId', visible: true, align: 'center', valign: 'middle'}, + {title: '钱包余额', field: 'balance', visible: true, align: 'center', valign: 'middle'}, + {title: '累计订单量', field: 'approvalStatus', visible: true, align: 'center', valign: 'middle'}, + {title: '当月订单量', field: 'approvalNotes', visible: true, align: 'center', valign: 'middle'}, + {title: '积分', field: 'integral', visible: true, align: 'center', valign: 'middle'}, + {title: '拒单次数', field: 'approvalUserId', visible: true, align: 'center', valign: 'middle'}, + {title: '状态', field: 'status', visible: true, align: 'center', valign: 'middle'}, + {title: '添加时间', field: 'createTime', visible: true, align: 'center', valign: 'middle'}, + {title: '操作', visible: true, align: 'center', valign: 'middle',width:150, formatter: function (value, row) { - var btn = ""; - if(row.companyName != '' && row.companyName != null) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.companyName + '" onfocus="TUser.tooltip()">' + row.companyName + '</p>'] - }else{ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="-" onfocus="TUser.tooltip()">-</p>'] + /*if(row.approvalStatus === 1){ + return '<a href="#" onclick="TDriver.stop('+row.id+','+row.status+')" style="color:red">驳回</a>' +' ' + + '<a href="#" onclick="TDriver.searchTAppUserDetail('+row.id+','+row.status+')" style="color:green">详情</a>' + }else */if (row.status === 1){ + return '<a href="#" onclick="TDriver.stop('+row.id+','+row.status+')" style="color:red">停用</a>' +' ' + + '<a href="#" onclick="TDriver.searchTAppUserDetail('+row.id+','+row.status+')" style="color:green">详情</a>' + }else if (row.status === 2){ + return '<a href="#" onclick="TDriver.start('+row.id+','+row.status+')" style="color:green">启用</a>' +' ' + + '<a href="#" onclick="TDriver.searchTAppUserDetail('+row.id+','+row.status+')" style="color:green">详情</a>' } - return btn; - } - }, - {title: '所属加盟商', field: 'franchiseeName', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.franchiseeName != '' && row.franchiseeName != null) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.franchiseeName + '" onfocus="TUser.tooltip()">' + row.franchiseeName + '</p>'] - }else{ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="-" onfocus="TUser.tooltip()">-</p>'] - } - return btn; - } - }, - {title: '登录账号【手机号】', field: 'phone', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.phone != '' && row.phone != null) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.phone + '" onfocus="TUser.tooltip()">' + row.phone + '</p>'] - } - return btn; - } - }, - {title: '性别', field: 'sex', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.sex != '' && row.sex != null) { - if (row.sex == 1) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="男" onfocus="TUser.tooltip()">男</p>'] - }else if (row.sex == 2){ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="女" onfocus="TUser.tooltip()">女</p>'] - } - } - return btn; - } - }, - {title: '驾驶证号码', field: 'driveCard', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.driveCard != '' && row.driveCard != null) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.driveCard + '" onfocus="TUser.tooltip()">' + row.driveCard + '</p>'] - } - return btn; - } - }, - {title: '驾龄', field: 'driverAge', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.driverAge != '' && row.driverAge != null) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.driverAge + '" onfocus="TUser.tooltip()">' + row.driverAge + '</p>'] - }else{ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="0" onfocus="TUser.tooltip()">0</p>'] - } - return btn; - } - }, - {title: '身份证号码', field: 'idCard', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.idCard != '' && row.idCard != null) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.idCard + '" onfocus="TUser.tooltip()">' + row.idCard + '</p>'] - } - return btn; - } - }, - {title: '服务模式', field: 'serverStr', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.serverStr != '' && row.serverStr != null) { - var labelStr = ""; - var labelStrs = ""; - var labelArray = row.serverStr.split(","); - for(var i=0;i<labelArray.length;i++){ - labelStr += labelArray[i] +"<br>"; - labelStrs += labelArray[i] + " "; - } - labelStr = labelStr.substring(0,labelStr.length-4); - labelStrs = labelStrs.substring(0,labelStrs.length-5); - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + labelStrs + '" onfocus="TUser.tooltip()">' + labelStr + '</p>'] - } - return btn; - } - }, - /*{title: '账号', field: 'phone', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.phone != '' && row.phone != null) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.phone + '" onfocus="TUser.tooltip()">' + row.phone + '</p>'] - } - return btn; - } - },*/ - /*{title: '备注', field: 'remark', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.remark != '' && row.remark != null){ - var str = row.remark; - if (row.remark.length > 10){ - str = row.remark.substring(0,10)+"..."; - } - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.remark + '" onfocus="TUser.tooltip()">' + str + '</p>'] - } - return btn; - } - },*/ - {title: '状态', field: 'authState', visible: true, align: 'center', valign: 'middle', - formatter: function (value, row) { - var btn = ""; - if(row.authState != '' && row.authState != null) { - if (row.authState == 1) { - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color: red;" title="待审核" onfocus="TUser.tooltip()">待审核</p>'] - }else if (row.authState == 4){ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="已拒绝" onfocus="TUser.tooltip()">已拒绝</p>'] - } - } - return btn; } } ]; @@ -206,102 +72,77 @@ }; /** - * 立即审核 + * 点击添加 */ -TDriver.immediately = function(){ - if (this.check()) { - var authState = TDriver.seItem.authState; - if(authState != 1){ - swal("操作失败", "待审核状态下才能执行此操作!", "warning"); - return; - } - var index = layer.open({ - type: 2, - title: '立即审核', - area: ['100%', '100%'], //宽高 - fix: false, //不固定 - maxmin: true, - content: Feng.ctxPath + '/tDriver/tDriver_immediately/' + TDriver.seItem.id - }); - this.layerIndex = index; - } -} +TDriver.openAddTDriver = function () { + var index = layer.open({ + type: 2, + title: '添加', + area: ['800px', '420px'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tDriver/tDriver_add' + }); + this.layerIndex = index; +}; /** - * 查看详情 + * 打开查看详情 */ -TDriver.look = function(){ +TDriver.openTDriverDetail = function () { if (this.check()) { var index = layer.open({ type: 2, - title: '查看详情', - area: ['100%', '100%'], //宽高 + title: '详情', + area: ['800px', '420px'], //宽高 fix: false, //不固定 maxmin: true, - content: Feng.ctxPath + '/tDriver/tDriver_look/' + TDriver.seItem.id + content: Feng.ctxPath + '/tDriver/tDriver_update/' + TDriver.seItem.id }); this.layerIndex = index; } -} +}; /** - * 删除司机审核列表 + * 删除 */ TDriver.delete = function () { if (this.check()) { - var nickname = TDriver.seItem.name; - if (nickname == "" || nickname == null || nickname == undefined) { - nickname = "该司机"; - } else { - nickname = "【" + nickname + "】"; - } - swal({ - title: "您是否确认删除" + nickname + "?", - text: "请谨慎操作,删除后数据无法恢复!", - type: "warning", - showCancelButton: true, - confirmButtonColor: "#DD6B55", - confirmButtonText: "删除", - closeOnConfirm: false - }, function () { - var ajax = new $ax(Feng.ctxPath + "/tDriver/delete", function (data) { - swal("删除成功", "您已经删除了" + nickname + "。", "success"); - AppMachineInfo.table.refresh(); - }, function (data) { - swal("删除失败", data.responseJSON.message + "!", "warning"); - }); - ajax.set("tDriverId", TDriver.seItem.id); - ajax.start(); + var ajax = new $ax(Feng.ctxPath + "/tDriver/delete", function (data) { + Feng.success("删除成功!"); + TDriver.table.refresh(); + }, function (data) { + Feng.error("删除失败!" + data.responseJSON.message + "!"); }); + ajax.set("tDriverId",this.seItem.id); + ajax.start(); } }; /** - * 查询司机审核列表列表 + * 查询列表 */ TDriver.search = function () { var queryData = {}; - queryData['insertTime'] = $("#insertTime").val(); - queryData['companyName'] = $("#companyName").val(); + queryData['createTime'] = $("#createTime").val(); queryData['phone'] = $("#phone").val(); - queryData['account'] = $("#account").val(); - queryData['addType'] = $("#addType").val(); - queryData['authState'] = $("#authState").val(); + queryData['status'] = $("#status").val(); TDriver.table.refresh({query: queryData}); }; -TDriver.resetSearch = function () { - $("#insertTime").val(""); - $("#companyName").val(""); - $("#phone").val(""); - $("#account").val(""); - $("#addType").val(""); - $("#authState").val(""); + +/** + * 重置 + */ +TDriver.resetSearch = function (){ + $("#createTime").val(''); + $("#phone").val(''); + $("#status").val(''); TDriver.search(); -}; +} $(function () { var defaultColunms = TDriver.initColumn(); var table = new BSTable(TDriver.id, "/tDriver/list", defaultColunms); - table.setPaginationType("server"); + table.setPaginationType("client"); TDriver.table = table.init(); }); -- Gitblit v1.7.1