|
|
@@ -6,7 +6,7 @@
|
|
|
<Banner :data-list="topBanners" />
|
|
|
<div class="g-detail__buy" v-if="quoteItem">
|
|
|
<div class="title">
|
|
|
- <span>{{ quoteItem.wrstandardname }}</span>
|
|
|
+ <span> {{ quoteItem.wrstandardcode }} / {{ quoteItem.wrstandardname }}</span>
|
|
|
</div>
|
|
|
<div class="info">
|
|
|
<ul>
|
|
|
@@ -35,7 +35,7 @@
|
|
|
</div>
|
|
|
<div class="trade">
|
|
|
<div class="trade-section sell" v-if="sellList.length">
|
|
|
- <Cell title="卖价" />
|
|
|
+ <Cell title="卖出挂牌" />
|
|
|
<app-list :columns="columns" :data-list="sellList">
|
|
|
<template #operate="{ row }">
|
|
|
<Button size="small" round @click="delistingListing(row, BuyOrSell.Buy)">买入</Button>
|
|
|
@@ -43,7 +43,7 @@
|
|
|
</app-list>
|
|
|
</div>
|
|
|
<div class="trade-section buy" v-if="buyList.length">
|
|
|
- <Cell title="买价" />
|
|
|
+ <Cell title="买入挂牌" />
|
|
|
<app-list :columns="columns" :data-list="buyList">
|
|
|
<template #operate="{ row }">
|
|
|
<Button size="small" round @click="delistingListing(row, BuyOrSell.Sell)">卖出</Button>
|
|
|
@@ -57,16 +57,16 @@
|
|
|
</template>
|
|
|
</div>
|
|
|
<template #footer>
|
|
|
- <div class="g-detail__footer">
|
|
|
- <div class="price" v-if="quoteItem">
|
|
|
+ <div class="g-form__footer">
|
|
|
+ <!-- <div class="price" v-if="quoteItem">
|
|
|
<span class="price-text">参考价:</span>
|
|
|
<span class="price-unit">¥</span>
|
|
|
<span class="price-integer">{{ quoteItem.spotgoodsprice }}</span>
|
|
|
- </div>
|
|
|
- <div class="submit">
|
|
|
- <span class="submit-button warning" @click="toggleListing(BuyOrSell.Sell)">我要卖</span>
|
|
|
- <span class="submit-button danger" @click="toggleListing(BuyOrSell.Buy)">我要买</span>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
+ <!-- <div class="submit"> -->
|
|
|
+ <Button block type="primary" squar class="submit-button warning" @click="toggleListing(BuyOrSell.Sell)">我要卖</Button>
|
|
|
+ <Button block type="danger" squar class="submit-button danger" @click="toggleListing(BuyOrSell.Buy)">我要买</Button>
|
|
|
+ <!-- </div> -->
|
|
|
</div>
|
|
|
<component ref="componentRef" :is="componentMap.get(componentId)" v-bind="{ quoteItem, quoteDetail, buyorsell }"
|
|
|
@closed="closeComponent" v-if="componentId" />
|