m0_70156489 1 month ago
parent
commit
40c68142e0
1 changed files with 3 additions and 3 deletions
  1. 3 3
      application/index/view/index/rfqadd.html

+ 3 - 3
application/index/view/index/rfqadd.html

@@ -276,7 +276,7 @@
 </head>
 <body class="layout-orders">
 <div class="bar">
-    <h1 id="barTitle">订单询价</h1>
+    <h1 id="barTitle"></h1>
     <a href="{:url('index/index/logout')}" class="bar-logout" id="barLogout">退出</a>
 </div>
 
@@ -546,13 +546,13 @@
                 document.body.className = 'layout-me';
                 if (paneOrders) paneOrders.style.display = 'none';
                 if (paneMe) paneMe.style.display = 'block';
-                if (barTitle) barTitle.textContent = '我的';
+                if (barTitle) barTitle.textContent = '';
                 if (barLogout) barLogout.style.display = '';
             } else {
                 document.body.className = 'layout-orders';
                 if (paneOrders) paneOrders.style.display = 'flex';
                 if (paneMe) paneMe.style.display = 'none';
-                if (barTitle) barTitle.textContent = '订单询价';
+                if (barTitle) barTitle.textContent = '';
                 if (barLogout) barLogout.style.display = 'none';
             }
         });