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