You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/Mobile/Views/Approval/FFSP.aspx

152 lines
5.8 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FFSP.aspx.cs" Inherits="DSWeb.Areas.Mobile.Views.Approval.FFSP" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>审批列表</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
<script>
var billnos = '';
$(document).ready(function () {
$('#search').val($('#hdkeyword').val());
$('#search').keypress(function (event) {
if (event.keyCode == '13') {
var currurl = window.location.href;
var currsplit = currurl.split('?');
if (currsplit.length > 0) {
currurl = currsplit[0];
}
currurl += '?search=' + $(this).val();
window.location.href = currurl;
}
});
$("#btnBack").click(function () {
wx.closeWindow();
});
$("#btnCallBack").click(function () {
wx.closeWindow();
});
$(".ckbBill").click(function () {
if ($(this).is(':checked')) {
billnos += $(this).val() + ',';
} else {
billnos = billnos.replace($(this).val() + ',', "");
}
});
$("#btnOK").click(function () {
var billnostr = billnos.substring(0, billnos.length - 1);
if (billnostr.length == 0) {
alert('请选择要审批的数据!');
return;
}
var uid = $("#hduid").val();
$.getJSON("/Mobile/Approval/DoFFSPWithBillNoAndUid",
{ billno: billnostr,
uid: uid
},
function (data) {
if (data.Success) {
$("#infop").html("操作成功!");
setTimeout(function () {
window.location.reload();
}, 20);
} else {
$("#infop").html(data.Message);
}
})
});
$("#btnOKALL").click(function () {
billnos = '';
//遍历所有checkbox
$(".ckbBill").each(function () {
billnos += $(this).val() + ',';
});
//访问接口
var billnostr = billnos.substring(0, billnos.length - 1);
var uid = $("#hduid").val();
$.getJSON("/Mobile/Approval/DoFFSPWithBillNoAndUid",
{ billno: billnostr,
uid: uid
},
function (data) {
if (data.Success) {
$("#infop").html("操作成功!");
setTimeout(function () {
window.location.reload();
}, 20);
} else {
$("#infop").html(data.Message);
}
})
});
$("#btnNO").click(function () {
var billnostr = billnos.substring(0, billnos.length - 1);
if (billnostr.length == 0) {
alert('请选择要审批的数据!');
return;
}
var uid = $("#hduid").val();
$.getJSON("/Mobile/Approval/RejectFFSPWithBillNoAndUid",
{ billno: billnostr,
uid: uid
},
function (data) {
if (data.Success) {
$("#infop").html("操作成功!");
setTimeout(function () {
window.location.reload();
}, 20);
} else {
$("#infop").html(data.Message);
}
})
});
});
</script>
</head>
<body>
<div data-role="page" id="pageone">
<div data-role="content">
<div data-role="fieldcontain">
<input type="search" name="search" id="search" placeholder="提单号或票号">
</div>
<ul data-role="listview" style="margin-top: 20px">
<%=model.content %>
</ul>
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar" id="navbar">
<ul id="ulfoot">
<%=model.footer %>
</ul>
</div>
</div>
</div>
<div data-role="page" id="pagethree">
<div data-role="header">
<h1>
操作结果</h1>
</div>
<div data-role="content">
<p id="infop" style="color: Red; font-size: 12px">
</p>
</div>
<div data-role="footer">
<ul id="ul2">
<li><a href="#pagethree" id="btnCallBack" data-icon="check">确认</a></li>
</ul>
</div>
</div>
<input id="hduid" type="hidden" runat="server">
<input id="hdkeyword" type="hidden" runat="server">
</body>
</html>