From d5b3e5a413bcfccba294793ee093722f31b2448a Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期三, 16 八月 2023 17:02:13 +0800 Subject: [PATCH] 添加推单日志 --- management/guns-admin/src/main/webapp/static/modular/system/tDriver/tDriver.js | 714 ++++++++++++++++++++++++++++++++++++++++------------------ 1 files changed, 488 insertions(+), 226 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..603bcfe 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,68 @@ 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', 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>'] + if (null != row.idcardFront){ + return '<span>已上传</span>' }else{ - btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="-" onfocus="TUser.tooltip()">-</p>'] + return '<span>未上传</span>' } - return btn; - } - }, - {title: '所属加盟商', field: 'franchiseeName', visible: true, align: 'center', valign: 'middle', + }}, + {title: '所属代理商', field: 'agentName', visible: true, align: 'center', valign: 'middle'}, + {title: '所属分公司', field: 'branchName', visible: true, align: 'center', valign: 'middle'}, + {title: '钱包余额', field: 'balance', visible: true, align: 'center', valign: 'middle'}, + {title: '累计订单量', field: 'cumulativeOrderCount', visible: true, align: 'center', valign: 'middle'}, + {title: '当月订单量', field: 'monthOrderCount', visible: true, align: 'center', valign: 'middle'}, + {title: '积分', field: 'integral', visible: true, align: 'center', valign: 'middle'}, + {title: '拒单次数', field: 'refusalCount', visible: true, align: 'center', valign: 'middle'}, + {title: '状态', field: 'status', 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>'] + if (row.status === 1){ + return '<span>正常</span>' + }else if (row.status === 2){ + return '<span>冻结</span>' + }else if (row.status === 3){ + return '<span>已删除</span>' } - return btn; - } - }, - {title: '登录账号【手机号】', field: 'phone', visible: true, align: 'center', valign: 'middle', + }}, + {title: '审核状态', field: 'approvalStatus', 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>'] + if (row.approvalStatus === 1){ + return '<span>待审核</span>' + }else if (row.approvalStatus === 2){ + return '<span>审核通过</span>' + }else if (row.approvalStatus === 3){ + return '<span>审核不通过</span>' } - return btn; - } - }, - {title: '性别', field: 'sex', visible: true, align: 'center', valign: 'middle', + }}, + {title: '添加时间', field: 'createTime', visible: true, align: 'center', valign: 'middle'}, + {title: '操作', visible: true, align: 'center', valign: 'middle',width:'160px',fixed:'true', 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>'] - } + if (row.status === 1){ + return '<a href="#" onclick="TDriver.searchTDriverDetail('+row.id+')" style="color:green">详情</a>' +' ' + + '<a href="#" onclick="TDriver.stop('+row.id+','+row.status+')" style="color:red">冻结</a>' +' ' + + '<a href="#" onclick="TDriver.updateInfo('+row.id+')" style="color:green">编辑</a>' + }else if (row.status === 2 || row.approvalStatus === 2){ + return '<a href="#" onclick="TDriver.searchTDriverDetail('+row.id+')" style="color:green">详情</a>' +' ' + + '<a href="#" onclick="TDriver.start('+row.id+','+row.status+')" style="color:green">解冻</a>' } - 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 +96,474 @@ }; /** - * 立即审核 + * 点击添加 */ -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: ['100%', '100%'], //宽高 + 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: '查看详情', + title: '详情', area: ['100%', '100%'], //宽高 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.searchTDriverDetail = function (id) { + var index = layer.open({ + type: 2, + title: '详情', + area: ['100%', '100%'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tDriver/driverDetail?tDriverId=' + 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.stop = function (id) { + var index = layer.open({ + type: 2, + title: '冻结', + area: ['800px', '420px'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tDriver/tDriver_start_and_stop?id='+id + }); + this.layerIndex = index; +}; + +/** + * 启动页面 + */ +TDriver.start = function (id) { + var index = layer.open({ + type: 2, + title: '启用', + area: ['800px', '420px'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tDriver/tDriver_start_and_stop?id='+id + }); + this.layerIndex = index; +}; + +/** + * 提交启用冻结 + */ +TDriver.updateStatus = function () { + + var status = $("#status").val(); + console.log(status) + if(status == 1 && ($("#stopRemark").val() == '' || $("#stopRemark").val() == null)){ + Feng.info("请输入冻结理由!") + return; + } + if(status == 2 && ($("#startRemark").val() == '' || $("#startRemark").val() == null)){ + Feng.info("请输入解冻理由!") + return; + } + + var ajax = new $ax(Feng.ctxPath + "/tDriver/update-status", function (data) { + Feng.success("修改成功!"); + TDriverInfoDlg.close(); + parent.TDriver.table.refresh(); + }, function (data) { + Feng.error("修改失败!" + data.responseJSON.message + "!"); + }); + ajax.set("id",$("#id").val()); + ajax.set("status",$("#status").val()); + if($("#status").val() == 1){ + ajax.set("remark",$("#stopRemark").val()); + } + if($("#status").val() == 2){ + ajax.set("remark",$("#startRemark").val()); + } + ajax.start(); +}; + +/** + * 跳转充值余额页面 + * @param id + */ +TDriver.rechargeBalancePage = function () { + if (this.check()) { + var selected = $('#' + this.id).bootstrapTable('getSelections'); + var id = selected[0].id; + var index = layer.open({ + type: 2, + title: '充值余额', + area: ['800px', '220px'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tDriver/rechargeBalancePage?id=' + id + }); + this.layerIndex = index; + } +}; + +/** + * 提交充值 + */ +TDriver.rechargeBalance = function () { + var balance = $('#backgroundBalance').val().trim(); + var reg=/^[1-9]\d*$/;//由 1-9开头 的正则表达式 + //先判断是否为整数 在判断 是否在 1-总页 整数范围之内 + if(reg.test(balance)){ + if(parseInt(balance) <= 0){ + Feng.error("请输入大于0的正整数"); + return; + } + }else{ + Feng.error("请输入大于0的正整数"); + return; + } + var ajax = new $ax(Feng.ctxPath + "/tDriver/recharge-balance", function (data) { + Feng.success("修改成功!"); + TDriverInfoDlg.close(); + parent.TDriver.table.refresh(); + }, function (data) { + Feng.error("修改失败!" + data.responseJSON.message + "!"); + }); + ajax.set("id",$("#id").val()); + ajax.set("money",$("#backgroundBalance").val()); + ajax.start(); +}; + +/** + * 司机信息导出 + */ +TDriver.export=function(){ + var createTime=$("#createTime").val() + var phone=$("#phone").val() + var status=$("#status").val() + window.location.href=Feng.ctxPath + "/tDriver/export?createTime="+createTime + +"&status="+status + +"&phone="+phone + ; +} + +/** + * 跳转审核页面 + * @param id + */ +TDriver.auditPage = function () { + if (this.check()) { + var selected = $('#' + this.id).bootstrapTable('getSelections'); + var id = selected[0].id; + var approvalStatus = selected[0].approvalStatus; + if(approvalStatus != 1){ + Feng.info("该条数据已审核!"); + return false; + } + var index = layer.open({ + type: 2, + title: '审核详情', + area: ['100%', '100%'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tDriver/auditPage?id=' + id + }); + this.layerIndex = index; + } +}; + +/** + * 提交审核 + */ +TDriver.auditSubmit = function () { + + if($("#approvalStatus").val() == 3 && ($("#approvalNotes").val() == '' || $("#approvalNotes").val() == null)){ + Feng.info("请输入驳回原因!"); + return; + } + + var ajax = new $ax(Feng.ctxPath + "/tDriver/auditSubmit", function (data) { + Feng.success("修改成功!"); + TDriverInfoDlg.close(); + parent.TDriver.table.refresh(); + }, function (data) { + Feng.error("修改失败!" + data.responseJSON.message + "!"); + }); + ajax.set("id",$("#id").val()); + ajax.set("approvalStatus",$("#approvalStatus").val()); + ajax.set("approvalNotes",$("#approvalNotes").val()); + ajax.start(); +}; + +/** + * 打开区域选择页面编辑 + */ +TDriver.areaUpdate = function () { + + var area = $("#area").val(); + var areaId = $("#areaId").val(); + + var index = layer.open({ + type: 2, + title: '区域选择', + area: ['1000px', '270px'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tDriver/areaPageUpdate?area='+area+'&areaId='+areaId + }); + this.layerIndex = index; +} +/** + * 打开区域选择页面新增 + */ +TDriver.areaAdd = function () { + + var area = $("#area").val(); + var areaId = $("#areaId").val(); + var index = layer.open({ + type: 2, + title: '区域选择', + area: ['1000px', '270px'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tDriver/areaPageAdd?area='+area+'&areaId='+areaId + }); + this.layerIndex = index; +} + +/** + * 查询市 + */ +TDriver.areaCity = function () { + //监听第一个下拉菜单的变动操作 + $("#province").change(function(){ + //当第一级下拉列表没选择值时,将二级下拉列表和三级同时设置为空 + if(this.value==""){ + $("#city").empty();//二级联动设为空设为空 + $("#city").append('<option value="">请选择</option>'); + //region + $("#district").empty();//三级联动设为空设为空 + $("#district").append('<option value="">请选择</option>'); + + } + if(this.value!=""){//第一级下拉菜单选择了值 + $("#city").empty();//先行置空,防止上次选择留下的元素影响效果 + $("#city").append('<option value="">请选择</option>')//设置初始选项 + $("#district").empty();//三级联动设为空设为空 + $("#district").append('<option value="">请选择</option>'); + var province = document.getElementById('province'); + var index= province.selectedIndex ; + var id = province.options[index].id; + var ajax = new $ax(Feng.ctxPath + "/tDriver/areaCity?parentId="+id, function (data) { + for(var i=0,n=data.length;i<n;i++){//遍历 + $("#city").append('<option value="'+data[i].id+'">'+data[i].name+'</option>');//创造元素 + } + }, function (data) { + Feng.error("查询失败!" + data.responseJSON.message + "!"); + }); + ajax.start(); + } + }); + /*var province = document.getElementById('province'); + var index= province.selectedIndex ; + var id = province.options[index].id; + var ajax = new $ax(Feng.ctxPath + "/tDriver/areaCity?parentId="+id, function (data) { + var opts=document.getElementById('city').options; + opts.length=0;// 这一句是清空原有列表项 + for(var i=0,n=data.length;i<n;i++){ + var data1=data[i]; + var opt=new Option(data1.name,data1.id,true,true); + opts.add(opt); + } + }, function (data) { + Feng.error("查询失败!" + data.responseJSON.message + "!"); + }); + ajax.start();*/ +} + +/** + * 查询区 + */ +TDriver.areaDistrict = function () { + + //监听第二个下拉菜单的变动操作 + $("#city").change(function(){ + if(this.value==""){//第二级菜单为空,则将第三级菜单也置为空 + $("#district").empty(); + $("#district").append('<option value="">请选择</option>'); + } + if(this.value!=""){//第二级菜单不为空,则将第三级菜单动态生成 + $("#district").empty(); + $("#district").append('<option value="">请选择</option>'); + + var city = document.getElementById('city'); + var cityIndex= city.selectedIndex ; + var id = city.options[cityIndex].id; + if(id == ""){ + id = city.options[cityIndex].value; + } + var ajax = new $ax(Feng.ctxPath + "/tDriver/areaCity?parentId="+id, function (data) { + for(var i=0,n=data.length;i<n;i++){//对区数据进行遍历,动态生成 + $("#district").append('<option value="'+data[i].id+'">'+data[i].name+'</option>'); + } + }, function (data) { + Feng.error("查询失败!" + data.responseJSON.message + "!"); + }); + ajax.start(); + } + }) + + /*var city = document.getElementById('city'); + var cityIndex= city.selectedIndex ; + var id = city.options[cityIndex].value; + var ajax = new $ax(Feng.ctxPath + "/tDriver/areaCity?parentId="+id, function (data) { + var opts=document.getElementById('district').options; + opts.length=0;// 这一句是清空原有列表项 + for(var i=0,n=data.length;i<n;i++){ + var data1=data[i]; + var opt=new Option(data1.name,data1.id,true,true); + opts.add(opt); + } + }, function (data) { + Feng.error("查询失败!" + data.responseJSON.message + "!"); + }); + ajax.start();*/ +} + +/** + * 选择省市 + */ +TDriver.submitArea = function () { + var province = document.getElementById('province'); + var provinceIndex= province.selectedIndex ; + var provinceId = province.options[provinceIndex].value; + var provinceName = province.options[provinceIndex].innerText; + console.log(provinceId) + console.log(provinceName) + if(provinceName == null || provinceName == ''){ + Feng.error("请选择省份!") + return; + } + + var city = document.getElementById('city'); + var cityIndex= city.selectedIndex ; + var cityId = city.options[cityIndex].value; + var cityName = city.options[cityIndex].innerText; + console.log(cityId) + console.log(cityName) + if(cityName == null || cityName == '' || cityName =='请选择'){ + Feng.error("请选择市区!") + return; + } + + var district = document.getElementById('district'); + var districtIndex= district.selectedIndex ; + var districtId = district.options[districtIndex].value; + var districtName = district.options[districtIndex].innerText; + console.log(districtId) + console.log(districtName) + if(districtName == '' || districtName == null || districtName == '请选择'){ + parent.$("#area").val(provinceName+'/'+cityName) + parent.$("#areaId").val(provinceId+'/'+cityId) + }else { + parent.$("#area").val(provinceName+'/'+cityName+'/'+districtName) + parent.$("#areaId").val(provinceId+'/'+cityId+'/'+districtId) + } + TDriverInfoDlg.close(); +} + +/** + * 重置市区 + */ +TDriver.resetArea = function () { + + var city = document.getElementById('city'); + var cityIndex= city.selectedIndex ; + console.log(city.options[cityIndex].innerText) + city.options[cityIndex].innerText = "请选择市"; + + var district = document.getElementById('district'); + var districtIndex= district.selectedIndex ; + console.log(district.options[districtIndex].innerText) + district.options[districtIndex].innerText = "请选择区"; + +} + +/** + * 打开编辑页面 + */ +TDriver.updateInfo = function (id) { + var index = layer.open({ + type: 2, + title: '编辑', + area: ['100%', '100%'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tDriver/tDriver_update?tDriverId='+id + }); + this.layerIndex = index; +} + +/** + * 查询列表 */ 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