18 lines
362 B
Plaintext
18 lines
362 B
Plaintext
|
@{
|
||
|
ViewBag.Title = "客户端测试";
|
||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||
|
}
|
||
|
@section css {
|
||
|
<style type="text/css">
|
||
|
label {
|
||
|
word-break: break-all;
|
||
|
}
|
||
|
|
||
|
section {
|
||
|
padding-top: 15px;
|
||
|
}
|
||
|
</style>
|
||
|
}
|
||
|
<section class="container-fluid">
|
||
|
@Html.Partial("_Mobile")
|
||
|
</section>
|