Index.cshtml
3.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@section header
{
<style type="text/css">
.layui-layer-content {
overflow-y: hidden !important;
}
.endPoint-div {
display:flex;
flex-wrap: wrap;
}
.element-title {
border-bottom: 1px solid white;
padding-bottom: 2px;
margin-bottom: 2px;
font-size: 12pt;
}
.element-item-disable {
border: 1px solid #ddd;
width: 100px;
height: 100px;
margin: 8px 8px auto;
border-radius: 10px;
padding: 5px;
margin-top: 15px;
}
.element-item {
border: 1px solid #ddd;
width: 100px;
height: 100px;
margin: 8px 8px auto;
box-shadow: 5px 10px 6px rgb(0 0 0 / 80%);
cursor: pointer;
border-radius: 10px;
padding: 5px;
}
.element-item:active {
opacity:0.5;
box-shadow: 0px 0px 0px rgb(0 0 0 / 0%);
margin-top: 15px;
}
.green {
background-color: green;
color: white;
border: 1px dashed black;
}
.gray {
background-color: gray;
color: white;
border: 1px dashed black;
}
.darkgray {
background-color: silver;
color: white;
border: 1px dashed black;
}
.description {
margin-left: 20px;
margin-top: 10px;
font-size: 14pt;
height: 40px;
line-height:40px;
width: 90%;
border-bottom: 1px solid gray;
}
</style>
}
<div id="listForm" class="layui-tab-item layui-show">
<form class="layui-form layui-form-pane" action="" lay-filter="listForm">
<div class="layui-col-xs12">
<div class="layui-tab layui-tab-brief" lay-filter="tableTabBody">
<ul id="startPointEle" class="layui-tab-title">
</ul>
@*<div class="description">
颜色说明:
<b>1.</b> 颜色为“<span style="color:white;background-color:green">绿色</span>”是可以点击叫料
<b>2.</b> 颜色为“<span style="color:white;background-color:gray">深灰</span>”是已经叫料,可以取消叫料
<b>3.</b> 颜色为“<span style="color:white;background-color:silver">浅灰</span>”是已经装料,不能点击
<b>4.</b> 状态有“未叫料”、“已叫料”、“已装料”、“已送料”
</div>*@
<div id="endPointEle" class="layui-tab-content">
</div>
</div>
</div>
</form>
</div>
@section Scripts
{
<script type="text/javascript" src="/productjs/distribution/ManualMaterialRequest.js" asp-append-version="true"></script>
}