瀏覽代碼

隐藏供求功能

li.shaoyi 2 年之前
父節點
當前提交
caa97c193e

+ 7 - 7
src/packages/mobile/views/credit/signin/index.vue

@@ -86,7 +86,7 @@
                         <Button type="primary" round @click="toPurchase">去完成</Button>
                     </div>
                 </dd>
-                <dd class="list-item">
+                <!-- <dd class="list-item">
                     <div class="list-item__title">
                         <div class="title-icon">
                             <img src="@mobile/assets/icons/goods.png" />
@@ -99,7 +99,7 @@
                     <div class="list-item__button">
                         <Button type="primary" round @click="toSupplyDemand">去完成</Button>
                     </div>
-                </dd>
+                </dd> -->
             </dl>
         </div>
         <app-register-code v-model:show="showQRCode" :text="userAccount.refernum" />
@@ -143,11 +143,11 @@ const toPurchase = () => {
 }
 
 // 跳转到供求
-const toSupplyDemand = () => {
-    routerBack({
-        tabName: 'supplyDemand'
-    })
-}
+// const toSupplyDemand = () => {
+//     routerBack({
+//         tabName: 'supplyDemand'
+//     })
+// }
 
 const userSignin = () => {
     fullloading(() => {

+ 6 - 6
src/packages/mobile/views/home/index.vue

@@ -46,12 +46,12 @@ const tabList: Tabbar[] = [
     icon: 'icon-purchase',
     activeIcon: 'icon-purchase-active',
   },
-  {
-    name: 'supplyDemand',
-    label: '供求',
-    icon: 'icon-supply-demand',
-    activeIcon: 'icon-supply-demand-active',
-  },
+  // {
+  //   name: 'supplyDemand',
+  //   label: '供求',
+  //   icon: 'icon-supply-demand',
+  //   activeIcon: 'icon-supply-demand-active',
+  // },
   {
     name: 'mine',
     label: '我的',

+ 5 - 5
src/packages/mobile/views/mine/wareorder/list/components/holdlb/index.vue

@@ -26,7 +26,7 @@
                         </table>
                     </div>
                     <div class="section-item__btnbar">
-                        <Button size="small" round @click="listing(item)">挂牌</Button>
+                        <!-- <Button size="small" round @click="listing(item)">挂牌</Button> -->
                         <Button size="small" round @click="pickup(item)">提货</Button>
                     </div>
                 </li>
@@ -80,8 +80,8 @@ const pickup = (item: Model.HoldLBRsp) => {
     openComponent('pickup')
 }
 
-const listing = (item: Model.HoldLBRsp) => {
-    selectedRow.value = item
-    openComponent('listing')
-}
+// const listing = (item: Model.HoldLBRsp) => {
+//     selectedRow.value = item
+//     openComponent('listing')
+// }
 </script>