1
duan
2024-08-21 f71a02229c1ba00fbecaead19256593ffb052753
提交 | 用户 | age
7d6280 1 
A 2 <style type="text/css">
3     .PartialTable {
4         width: 98%;
5         border-left: 1px solid black;
6         border-top: 1px solid black;
7         margin: 10px auto;
8     }
9
10         .PartialTable thead td {
11             background-color: deepskyblue;
12             color: white;
37756f 13             font-size: larger;
A 14             font-weight: bolder;
7d6280 15         }
A 16
17         .PartialTable tbody td {
37756f 18             font-size: inherit;
7d6280 19         }
A 20
21         .PartialTable td {
22             border-right: 1px solid black;
23             border-bottom: 1px solid black;
24             text-align: center;
25         }
26
27     .bgGray {
28         color: black;
29         background-color: gray;
30         font-weight: bolder;
31     }
32
33     .bgWhite {
34         color: black;
35         background-color: white;
918b8a 36         font-weight: bolder;
7d6280 37     }
A 38
39     .spanHidden {
40         display: block;
41         border: 0px;
42         width: 0px;
43         height: 0px;
44         overflow: hidden;
45     }
46 </style>
47 <script src="~/Scripts/Bill/PartialInspectFalseDetail.js"></script>
48 <input id="tbxInspectBookId" readonly="readonly" value='@ViewData["InspectBookId"]' style="overflow:hidden;width:0px;height:0px;border:none;display:block;" />
fb7589 49 <input id="RoleNameStringInspectFalseDetail" readonly="readonly" value='@ViewData["RoleNameString"]' style="overflow:hidden;width:0px;height:0px;border:none;display:block;" />
A 50 <input id="ShowBtnInspectFalseDetail" readonly="readonly" value='@ViewData["ShowBtn"]' style="overflow:hidden;width:0px;height:0px;border:none;display:block;" />
7d6280 51
A 52 <table id="tabPartialInspectFalseDetail"></table>