From b7e08df5a07b3fa832a46ecc31983e16f2bccc8c Mon Sep 17 00:00:00 2001
From: whycq <10027870+whycq@user.noreply.gitee.com>
Date: 星期一, 24 七月 2023 14:56:01 +0800
Subject: [PATCH] # 出库作业,和库存明细管理 排序
---
src/main/webapp/views/pda/index.html | 88 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 87 insertions(+), 1 deletions(-)
diff --git a/src/main/webapp/views/pda/index.html b/src/main/webapp/views/pda/index.html
index ee9f937..c392e1c 100644
--- a/src/main/webapp/views/pda/index.html
+++ b/src/main/webapp/views/pda/index.html
@@ -2,9 +2,95 @@
<html lang="en">
<head>
<meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, target-densitydpi=high-dpi, initial-scale=1.0, user-scalable=no"/>
<title>PDA棣栭〉</title>
+ <script type="text/javascript" src="../../static/js/jquery/jquery-3.3.1.min.js"></script>
+ <style>
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ }
+ html {
+ height: 100%;
+ /*line-height: 1.5;*/
+ }
+ body {
+ height: 100%;
+ /*overflow: hidden;*/
+ }
+
+ /* 瀵艰埅 */
+ .nav {
+ background-color: #fff; /*todo*/
+ color: #000;
+ list-style-type: none;
+ position: fixed;
+ width: 100%;
+ overflow: hidden;
+ box-shadow: 0 1px 2px 0 rgba(0,0,0,.1)
+ }
+ .nav li {
+ float: left;
+ border-right: 1px solid #f1f1f1; /*todo*/
+ }
+ .nav li a {
+ font-size: 20px;
+ letter-spacing: 1px;
+ display: block;
+ text-decoration: none;
+ padding: 3px 10px;
+ text-align: center;
+ /*transform:scale(1.5);*/
+ /*-webkit-transform:scale(1.5);*/
+ /*-moz-transform:scale(1.5);*/
+ }
+ .nav li a:hover {
+ color: #000;
+ }
+ .nav-unselect {
+ color: #666;
+ }
+ .nav-select {
+ background-color: #f1f1f1; /*todo*/
+ color: #000;
+ }
+
+ /* 涓讳綋 */
+ #content {
+ padding-top: 32px;
+ width: 100%;
+ height: 100%;
+ }
+ iframe {
+ border-width: 0;
+ }
+ </style>
</head>
<body>
+<!-- 瀵艰埅鏍� -->
+<ul class="nav">
+<!-- <li><a id="combPro" onclick="nav(this.id)" class="nav-select" href="#">鍏ュ簱鍗曠粍鎵�</a></li> <!– 鏍规嵁鍏ュ簱鍗曠粍鎵� –>-->
+ <li><a id="comb" onclick="nav(this.id)" class="nav-unselect" href="#">缁勬墭</a></li> <!-- 鏍规嵁鐗╂枡浜у搧缁勬墭 -->
+<!-- <li><a id="stockIn" onclick="nav(this.id)" class="nav-unselect" href="#">鍏ュ簱</a></li>-->
+<!-- <li><a id="stockOut" onclick="nav(this.id)" class="nav-unselect" href="#">鍑哄簱</a></li>-->
+ <li><a id="stockCheck" onclick="nav(this.id)" class="nav-unselect" href="#">搴撳瓨鐩樼偣</a></li>
+ <li><a id="stockQuery" onclick="nav(this.id)" class="nav-unselect" href="#">搴撳瓨鏌ヨ</a></li>
+</ul>
+
+<!-- 涓讳綋鍐呭 -->
+<iframe id="content" src="comb.html"></iframe>
+
</body>
-</html>
\ No newline at end of file
+<script>
+ // 瀵艰埅鏍�
+ function nav(id) {
+ $('.nav-select').attr("class", "nav-unselect");
+ $('#'+id).attr("class", "nav-select");
+ $('#content').attr("src", id+".html");
+ }
+</script>
+</html>
--
Gitblit v1.9.1