32 lines
709 B
Plaintext
32 lines
709 B
Plaintext
@model ShowErrorModel
|
|
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>发生错误</title>
|
|
<link rel="stylesheet" href="~/statics/bundles/bundle.min.css?v=1.11">
|
|
</head>
|
|
<body>
|
|
<div class="row m-5">
|
|
<div class="col-md-6 offset-md-3">
|
|
<div class="alert alert-danger">
|
|
<h4 class="alert-heading">发生错误!</h4>
|
|
<hr>
|
|
<p> @Model.ErrorMsg</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
if (window.opener) {
|
|
window.opener.main.alert('@Model.ErrorMsg');
|
|
window.close();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |