You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
202 lines
7.0 KiB
202 lines
7.0 KiB
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>分步表单</title>
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="stylesheet" href="/static/lib/layui-v2.6.3/css/layui.css" media="all">
|
|
<link rel="stylesheet" href="/static/css/public.css" media="all">
|
|
<link rel="stylesheet" href="/static/js/lay-module/step-lay/step.css" media="all">
|
|
</head>
|
|
<body>
|
|
<div class="layuimini-container">
|
|
<div class="layuimini-main">
|
|
<script id="toolbarDemo" type="text/html">
|
|
<div class="layui-btn-container">
|
|
<button class="layui-btn layui-btn-normal layui-btn-sm data-add-btn" lay-event="add">添加</button>
|
|
|
|
</div>
|
|
</script>
|
|
|
|
<table class="layui-hide" id="currentTableId" lay-filter="currentTableFilter"></table>
|
|
|
|
<script id="currentTableBar" type="text/html">
|
|
<a class="layui-btn layui-btn-normal layui-btn-xs data-count-subclass" lay-event="applicationIn">入库申请</a>
|
|
<a class="layui-btn layui-btn-xs data-count-edit" lay-event="applicationOut" >出库申请</a>
|
|
</script>
|
|
|
|
</div>
|
|
</div>
|
|
<script src="/static/lib/layui-v2.6.3/layui.js" charset="utf-8"></script>
|
|
<script src="/static/js/lay-config.js?v=1.0.4" charset="utf-8"></script>
|
|
<script>
|
|
layui.use(['form', 'step'], function () {
|
|
var $ = layui.$,
|
|
form = layui.form,
|
|
step = layui.step;
|
|
|
|
|
|
$("#code").blur(function () {
|
|
var code = $(this).val();
|
|
$.ajax({
|
|
url: "/material/findMatrialByCode?code=" + code,
|
|
type: "get",
|
|
dataType: 'json',
|
|
contentType: "application/json;charset=utf-8",
|
|
success: function (d) {
|
|
var d = d.data;
|
|
if(d == null){
|
|
layer.msg("没有该编码,请确认是否输入正确");
|
|
$("#openSonByMaterial").val("");
|
|
$("#mid").val("");
|
|
$("#code").val("");
|
|
}else{
|
|
$("#openSonByMaterial").val(d.mname);
|
|
$("#mid").val(d.id);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
$("#openSonByMaterial").blur(function () {
|
|
var data = $(this).val();
|
|
var req = {};
|
|
req.mname = data;
|
|
$.ajax({
|
|
url: "/material/findMaterialByCondition",
|
|
type: "post",
|
|
dataType: 'json',
|
|
data:JSON.stringify(req),
|
|
contentType: "application/json;charset=utf-8",
|
|
success: function (d) {
|
|
if(d.count > 1){
|
|
layer.msg("请点击右侧搜索确定物品");
|
|
$("#mid").val("");
|
|
$("#code").val("");
|
|
return false;
|
|
}else if(d.count === 0){
|
|
layer.msg("没有该物品,请确认输入是否正确");
|
|
$("#mid").val("");
|
|
$("#code").val("");
|
|
$("#openSonByMaterial").val("");
|
|
return false;
|
|
}
|
|
else{
|
|
var material = d.data[0];
|
|
$("#openSonByMaterial").val(material.mname)
|
|
$("#mid").val(material.id);
|
|
$("#code").val(material.code);
|
|
}
|
|
}
|
|
});
|
|
})
|
|
|
|
$('#openSonByDepository').on('click', function () {
|
|
layer.open({
|
|
type: 2,
|
|
title: '弹窗内容',
|
|
skin: 'layui-layer-rim',
|
|
maxmin: true,
|
|
shadeClose: true, //点击遮罩关闭层
|
|
area: ['800px', '500px'],
|
|
content: '/selectDepository?type=1',
|
|
});
|
|
});
|
|
|
|
|
|
$('#selectMaterial').on('click', function () {
|
|
var mname = $("#openSonByMaterial").val();
|
|
layer.open({
|
|
type: 2,
|
|
title: '弹窗内容',
|
|
skin: 'layui-layer-rim',
|
|
maxmin: true,
|
|
shadeClose: true, //点击遮罩关闭层
|
|
area: ['800px', '500px'],
|
|
content: '/selectMaterial?mname='+mname+'&type=1',
|
|
end: function () {
|
|
var mid = $("#mid").val();
|
|
$.ajax({
|
|
url: "/material/findMatrialById?mid=" + mid,
|
|
type: "get",
|
|
dataType: 'json',
|
|
contentType: "application/json;charset=utf-8",
|
|
success: function (d) {
|
|
var code = d.data.code
|
|
$("#code").val(code)
|
|
|
|
}
|
|
});
|
|
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
step.render({
|
|
elem: '#stepForm',
|
|
filter: 'stepForm',
|
|
width: '100%', //设置容器宽度
|
|
stepWidth: '750px',
|
|
height: '600px',
|
|
stepItems: [{
|
|
title: '填写信息'
|
|
}, {
|
|
title: '提交成功'
|
|
}]
|
|
});
|
|
|
|
|
|
form.on('submit(formStep)', function (data) {
|
|
data = data.field;
|
|
data.type = 1;
|
|
$.ajax({
|
|
url: "/depositoryRecord/applicationIn",
|
|
type: 'post',
|
|
dataType: 'json',
|
|
contentType: "application/json;charset=utf-8",
|
|
data: JSON.stringify(data),
|
|
beforeSend: function () {
|
|
this.layerIndex = layer.load(0, {shade: [0.5, '#393D49']});
|
|
},
|
|
success: function (data) {
|
|
layer.close(this.layerIndex);
|
|
if (data.status >= 300) {
|
|
layer.msg(data.statusInfo.detail);//失败的表情
|
|
return;
|
|
} else {
|
|
layer.msg("申请提交成功", {
|
|
icon: 6,//成功的表情
|
|
time: 500 //1秒关闭(如果不配置,默认是3秒)
|
|
}, function () {
|
|
step.next('#stepForm');
|
|
});
|
|
}
|
|
},
|
|
complete: function () {
|
|
layer.close(this.layerIndex);
|
|
}
|
|
})
|
|
return false;
|
|
});
|
|
|
|
form.on('submit(formStep2)', function (data) {
|
|
step.next('#stepForm');
|
|
return false;
|
|
});
|
|
|
|
|
|
$('.pre').click(function () {
|
|
step.pre('#stepForm');
|
|
});
|
|
|
|
$('.next').click(function () {
|
|
step.next('#stepForm');
|
|
});
|
|
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|