23 lines
460 B
Plaintext
23 lines
460 B
Plaintext
@model NavigatorBarModel
|
|
@{
|
|
ViewBag.Title = "客户端测试";
|
|
Layout = "~/Views/Shared/_Admin.cshtml";
|
|
}
|
|
@section css {
|
|
<style type="text/css">
|
|
label {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.control-label {
|
|
width: 120px;
|
|
}
|
|
</style>
|
|
}
|
|
@section header {
|
|
@Html.Partial("Header", Model)
|
|
}
|
|
@section navigator {
|
|
@Html.Partial("Navigator", Model)
|
|
}
|
|
@Html.Partial("_Mobile") |