li.shaoyi 2 лет назад
Родитель
Сommit
3126812d54

+ 3 - 3
src/packages/mobile/views/mine/order/detail/purchasetrade/index.vue

@@ -17,7 +17,7 @@
                 <Cell title="尾款支付截止日" label="河钢招标价公布后2个工作日内付款" />
                 <Cell title="状态" :value="detail.thjorderstatusdisplay" />
                 <Cell title="采购时间" :value="formatDate(detail.tradetime)" />
-                <Cell title="合同转让截止日" :value="detail.enddate" />
+                <!-- <Cell title="合同转让截止日" :value="detail.enddate" /> -->
             </CellGroup>
             <CellGroup title="交收信息">
                 <Cell title="交收方式" :value="detail.thjdeliverymodedisplay" />
@@ -50,9 +50,9 @@
                     v-if="detail.buyuserid === detail.firstbuyuserid && detail.availabletime > 0 && detail.presalestatus === 2 && detail.orderstatus === 1"
                     @click="spotPricingSubmit">点价</Button>
                 <template v-if="type.toString() !== '2'">
-                    <Button block round type="primary"
+                    <!-- <Button block round type="primary"
                         v-if="detail.thjdeliverymode === 1 && detail.presalestatus === 2 && detail.orderstatus === 1"
-                        @click="openComponent('transfer')">合同转让</Button>
+                        @click="openComponent('transfer')">合同转让</Button> -->
                     <Button block round type="primary" v-if="detail.orderstatus === 9"
                         @click="spotCancelSubmit">撤销转让</Button>
                     <Button block round type="primary" v-if="detail.orderstatus === 5"

+ 4 - 4
src/packages/mobile/views/mine/order/list/index.vue

@@ -15,12 +15,12 @@
             <Tab title="采购订单">
                 <purchase-trade v-if="activeTab === 0" />
             </Tab>
-            <Tab title="转让委托">
+            <!-- <Tab title="转让委托">
                 <transfer-sell v-if="activeTab === 1" />
             </Tab>
             <Tab title="转让成交">
                 <transfer-buy v-if="activeTab === 2" />
-            </Tab>
+            </Tab> -->
             <Tab title="现货委托">
                 <wr-order v-if="activeTab === 3" />
             </Tab>
@@ -38,8 +38,8 @@ import { useNavigation } from '@/hooks/navigation'
 import PurchaseTrade from './components/purchasetrade/index.vue'
 import WrOrder from './components/wrorder/index.vue'
 import WrTrade from './components/wrtrade/index.vue'
-import TransferBuy from './components/transferbuy/index.vue'
-import TransferSell from './components/transfersell/index.vue'
+//import TransferBuy from './components/transferbuy/index.vue'
+//import TransferSell from './components/transfersell/index.vue'
 
 const { routerTo } = useNavigation()
 const activeTab = shallowRef(0)