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/Dispatch/Views/Stock/Declare.aspx

35 lines
1.7 KiB
Plaintext

2 years ago
<%@ Page Title="" Language="C#" MasterPageFile="~/Areas/Dispatch/Views/Shared/MP.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="Body" runat="server">
<link type="text/css" rel="stylesheet" href="/Areas/Dispatch/Content/MP/css/declare.css" />
<div class="container">
<div class="page form_page js_show">
<header class='demos-header'>
<h2 class="demos-title">声明</h2>
</header>
<div class="content">我司已对系统数据进行安全加密,所有企业(除监管单位外)都只能调取企业自身名下的库存数据信息,由于企业自身操作不当造成的商业机密外泄,责任和损失均由企业自身承担。</div>
<div class="checkbox">
<input class="weui-agree__checkbox" type="checkbox" id="chkAgree" />我已阅读并同意上述条款
</div>
<a class="next-step" href="javascript:void(0)" id="btnNext">下一步<img src="/Areas/Dispatch/Content/MP/img/arrow_bottom.png" /></a>
</div>
</div>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="FooterScript" runat="server">
<script>
$("#btnNext").click(function () {
var chk = $("#chkAgree").prop("checked");
if (chk) {
location.href = "/Dispatch/Stock/Regist?openid=<%=ViewData["openid"]%>&agree=true"
} else {
$.toptip('请阅读并同意声明条款');
}
})
$(function () {
$(document).attr("title", "青岛东胜软件");
2 years ago
})
</script>
</asp:Content>