Inspection.cshtml
1.02 KB
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
53
54
@{ Layout = "~/Views/Shared/_Layout.cshtml"; }
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@section header
{
<style type="text/css">
.layui-table-tool {
display:none
}
</style>
}
<div id="listForm" class="layui-tab-item layui-show">
<div class="layui-col-xs12">
<table id="mainList" lay-filter="mainList"></table>
</div>
</div>
<script type="text/html" id="toolbarTable">
</script>
<script type="text/html" id="toolbarTableDesc">
</script>
<script type="text/html" id="progressType">
{{# if(d.progressType==0){}}
<label>
开始
</label>
{{# } else { }}
<label>
完成
</label>
{{# } }}
</script>
<script type="text/html" id="sendStatus">
{{# if(d.sendStatus==true){}}
<label>
已报检
</label>
{{# } else { }}
<label>
未报检
</label>
{{# } }}
</script>
@section Scripts
{
<script type="text/javascript" src="/productjs/wo/Inspection.js" asp-append-version="true"></script>
}