bklLiudl
2024-07-23 277bbae216debe7e6c04e8cc6ee6e1ba9763e14b
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
 
@{
    Layout = null;
}
 
<!DOCTYPE html>
 
<html lang="zh">
<head>
    <meta charset="utf-8" />
    <meta content="width=device-width, initial-scale=1.0" name="viewport" />
 
    <link href="~/Theme/Boostrap/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
    <link href="~/Theme/Boostrap/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet" />
    <link href="~/Theme/Boostrap/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
    <link href="~/Theme/Customer/Index/style.css" rel="stylesheet" />
    @*<link href="~/Theme/Customer/Index/Style_responsive.css" rel="stylesheet" />
    <link href="~/Theme/Customer/Index/default.css" rel="stylesheet" />*@
    <link href="~/Theme/plugins/jbox-v2.3/jBox/Skins/Blue/jbox.css" rel="stylesheet" />
    <link href="~/Theme/plugins/mmgrid/mmPaginator.css" rel="stylesheet" />
    <link href="~/Theme/plugins/mmgrid/mmGrid.css" rel="stylesheet" />
 
    <script src="~/Theme/Js/jquery-1.8.3.min.js"></script>
    <script src="~/Theme/Boostrap/bootstrap/js/bootstrap.min.js"></script>
    <script src="~/Theme/plugins/jbox-v2.3/jBox/jquery.jBox-2.3.min.js"></script>
    <script src="~/Theme/plugins/jbox-v2.3/jBox/i18n/jquery.jBox-zh-CN.js"></script>
    <script src="~/Theme/Js/moment.js"></script>
    <script src="~/Theme/Js/Common.js"></script>
    <script src="~/Theme/Js/UICommon.js"></script>
    <script src="~/Theme/plugins/mmgrid/mmGrid.js"></script>
    <script src="~/Theme/plugins/mmgrid/mmPaginator.js"></script>
    <script src="~/Theme/Js/app.js"></script>
 
    <script src="~/Theme/Customer/BasicInfo/DepotsLocation.js"></script>
</head>
 
<body class="fixed-top">
 
    <div id="container" class="row-fluid @ViewBag.MenuStatus">
        <div id="body">
            <div class="container-fluid">
                <div class="row-fluid">
                    <div class="span12">
                        <div class="widget box light-grey">
                            <div class="widget-title">
                                <h5 name="titles" style="display:none">@ViewBag.Title</h5>
                                <h4><i class="icon-globe"></i></h4>
                                <div class="actions toolbar">
                                    @*<a class="btn btn-primary" href="javascript:void(0)" data-command="Add"><i class="icon-plus"></i>&nbsp;新增</a>*@
                                    <a class="btn btn-success @ViewBag.Btns.Edits" href="javascript:void(0)" data-command="Edits"><i class="icon-edit"></i>&nbsp;批量修改</a>
                                    @*<a class="btn btn-warning @ViewBag.Btns.Del" href="javascript:void(0)" data-command="Del"><i class="icon-trash"></i>&nbsp;删除</a>*@
                                </div>
                            </div>
 
                            <div class="widget-body">
                                <div class="row-fluid">
                                    <form class="form-horizontal" action="javascript:void(0)">
                                        <div class="control-group" style="margin-bottom:5px">
                                            <div data-condition="search">
                                                @*<div class="row-fluid control-group">*@
                                                    库&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;区:
                                                    <select id="DepotsArea" name="DepotsArea" style="width:165px;" class="input-medium">@Html.Raw(ViewBag.DepotsArea)</select>
                                                    库&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;排:
                                                    <select id="DepotsRow" name="DepotsRow" class="input-small">@Html.Raw(ViewBag.DepotsRow)</select>
                                                    库&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;列:
                                                    <select id="DepotsColumn" name="DepotsColumn" class="input-small">@Html.Raw(ViewBag.DepotsColumn)</select>
                                                    库&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;层:
                                                    <select id="DepotsLayer" name="DepotsLayer" class="input-small">@Html.Raw(ViewBag.DepotsLayer)</select>
 
                                                    <div></div>
                                                    <br />
                                                    库位编码:
                                                    <input name="LocationCode"  type="text" class="input-medium" placeholder="" />
                                                    库位属性:
                                                    <select name="Property" style="width:165px;" class="input-small">@Html.Raw(ViewBag.Property)</select>
                                                    库位状态:
                                                    <select name="TurnoverDemand" style="width:165px;" class="input-small">@Html.Raw(ViewBag.TurnoverDemand)</select>
                                                    库位类型:
                                                    <select name="Type" style="width:165px;" class="input-small">@Html.Raw(ViewBag.Type)</select>
 
                                                    <a class="btn btn-info" href="javascript:void(0)" data-command="search"><i class="icon-search"></i>&nbsp;搜索</a>
                                                @*</div>*@
                                            </div>
                                        </div>
 
                                    </form>
                                </div>
 
                                <div id="tabList" class="row-fluid"></div>
                                <div class="row-fluid" id="mypager" style="vertical-align:top;"></div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
 
    <script type="text/javascript">
        $(document).ready(function () {
            DepotsLocation.ToolBar();
        });
    </script>
</body>
</html>