ComplianceServer/oldcode/WEB/Views/Level2/Leve2Order/OrderRevApply.cshtml

53 lines
1.2 KiB
Plaintext

@using WX.CRM.WebHelper;
@{
ViewBag.Title = "OrderRevApply";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
<script type="text/javascript">
$(function () {
$("#btnSave").click(function () {
var mark = $("#txt_applyReson").val();
$.r_ajax({
url: "/Soft/SoftOrder/cancleOrderApply",
type: "Post",
data: { status: '@ViewBag.status', OrderId: '@ViewBag.OrderId', Reson: mark },
dataType: "json",
loading: true,
success: function (data) {
if (data.type === 0) {
$.messageBox5s('提示', data.message);
}
else {
window.parent.currenttabclose();
}
}
});
});
});
</script>
<div class="mvctool bgb">
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
</div>
<div>
<table class="layui-table content_width">
<tr>
<th colspan="3">
撤销申请原因: &nbsp;&nbsp;
@Html.TextArea("txt_applyReson")
</th>
</tr>
</table>
</div>