| | |
| | | ); |
| | | element.init();form.render(); |
| | | layer.close(loadIndex); |
| | | |
| | | // 确认规划单类型 |
| | | form.on('submit(planTypeSubmit)', function (data) { |
| | | // var loadIndex = layer.load(2); |
| | | // $.ajax({ |
| | | // url: baseUrl+"/plan/"+(mData?'update':'add')+"/auth", |
| | | // headers: {'token': localStorage.getItem('token')}, |
| | | // data: data.field, |
| | | // method: 'POST', |
| | | // success: function (res) { |
| | | // layer.close(loadIndex); |
| | | // if (res.code === 200){ |
| | | // layer.close(dIndex); |
| | | // layer.msg(res.msg, {icon: 1}); |
| | | // tableReload(); |
| | | // } else if (res.code === 403){ |
| | | // top.location.href = baseUrl+"/"; |
| | | // }else { |
| | | // layer.msg(res.msg, {icon: 2}); |
| | | // } |
| | | // } |
| | | // }) |
| | | alert(data.field.planType); |
| | | layer.close(dIndex); |
| | | let planTypeId = data.field.planType; |
| | | let loadIndex0 = layer.load(2); |
| | | $.ajax({ |
| | | url: baseUrl + "/planType/" + planTypeId + "/auth", |
| | | headers: {'token': localStorage.getItem('token')}, |
| | | method: 'GET', |
| | | success: function (res0) { |
| | | let planType = res0.data; |
| | | if (res0.code === 200) { |
| | | admin.open({ |
| | | type: 1, |
| | | area: '1500px', |
| | | title: '添加售前规划申请单' + ' - ' + planType.name, |
| | | content: $('#editDialog').html(), |
| | | success: function (layero0, dIndex0) { |
| | | layer.close(loadIndex0); |
| | | let orderSel = loadOrderSel(); |
| | | let cstmrSel = loadCstmrSel(); |
| | | let userSel = loadUserSel(); |
| | | let planNeedSel = loadPlanNeedSel(); |
| | | form.val('detail', { |
| | | planTypeName: planType.name |
| | | }); |
| | | layDateRender(); |
| | | form.on('submit(editSubmit)', function (data) { |
| | | console.log(data.field); |
| | | data.field.planType = planType.id; |
| | | data.field.orderId = orderSel.getValue()[0] ? orderSel.getValue()[0].value : null; |
| | | data.field.cstmrId = cstmrSel.getValue()[0] ? cstmrSel.getValue()[0].value : null; |
| | | data.field.userId = userSel.getValue()[0] ? userSel.getValue()[0].value : null; |
| | | data.field.planNeed = planNeedSel.getValue()[0] ? planNeedSel.getValue()[0].value : null; |
| | | if (!data.field.orderId) { |
| | | layer.msg("跟踪项目不能为空", {icon: 2}); |
| | | top.requireTip($('#orderXmlSel')); |
| | | return false; |
| | | } |
| | | if (!data.field.cstmrId) { |
| | | layer.msg("客户名称不能为空", {icon: 2}); |
| | | top.requireTip($('#cstmrXmlSel')); |
| | | return false; |
| | | } |
| | | var loadIndex = layer.load(2); |
| | | $.ajax({ |
| | | url: baseUrl+"/plan/add/auth", |
| | | headers: {'token': localStorage.getItem('token')}, |
| | | data: data.field, |
| | | method: 'POST', |
| | | success: function (res) { |
| | | layer.close(loadIndex); |
| | | if (res.code === 200){ |
| | | layer.close(dIndex0); |
| | | layer.msg(res.msg, {icon: 1}); |
| | | tableReload(); |
| | | } else if (res.code === 403){ |
| | | top.location.href = baseUrl+"/"; |
| | | } else { |
| | | layer.msg(res.msg, {icon: 2}); |
| | | } |
| | | } |
| | | }) |
| | | return false; |
| | | }); |
| | | $(layero).children('.layui-layer-content').css('overflow', 'visible'); |
| | | layui.form.render('select'); |
| | | } |
| | | }); |
| | | } else if (res0.code === 403) { |
| | | top.location.href = baseUrl + "/"; |
| | | } else { |
| | | layer.msg(res0.msg, {icon: 2}); |
| | | } |
| | | } |
| | | }) |
| | | return false; |
| | | }); |
| | | } |
| | | }) |
| | | } else if (res.code === 403){ |
| | | top.location.href = baseUrl+"/"; |
| | | }else { |
| | | } else { |
| | | layer.msg(res.msg, {icon: 2}); |
| | | } |
| | | } |
| | |
| | | }); |
| | | layDate.render({ |
| | | elem: '#appleTime\\$', |
| | | type: 'datetime', |
| | | type: 'date', |
| | | value: data!==undefined?data['appleTime\\$']:null |
| | | }); |
| | | layDate.render({ |
| | | elem: '#finishTime\\$', |
| | | type: 'datetime', |
| | | type: 'date', |
| | | value: data!==undefined?data['finishTime\\$']:null |
| | | }); |
| | | layDate.render({ |
| | |
| | | }, 300); |
| | | } |
| | | layDateRender(); |
| | | |
| | | window.loadDeptSel = function () { |
| | | return xmSelect.render({ |
| | | el: '#deptXmlSel', |
| | | autoRow: true, |
| | | filterable: true, |
| | | remoteSearch: true, |
| | | radio: true, |
| | | remoteMethod: function (val, cb, show) { |
| | | $.ajax({ |
| | | url: baseUrl + "/dept/all/get/kv", |
| | | headers: {'token': localStorage.getItem('token')}, |
| | | data: { |
| | | condition: val |
| | | }, |
| | | method: 'POST', |
| | | success: function (res) { |
| | | if (res.code === 200) { |
| | | cb(res.data) |
| | | } else { |
| | | cb([]); |
| | | layer.msg(res.msg, {icon: 2}); |
| | | } |
| | | } |
| | | }); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | window.loadPlanTypeSel = function () { |
| | | return xmSelect.render({ |