| | |
| | | <div class="h-70 lh-70 inputBackground mb-25 flex justify-center px-16 textColor2"> |
| | | <span>{{ title }}</span> |
| | | </div> |
| | | |
| | | <template v-if="initClose.status / 1 === 0"> |
| | | <div class="flex justify-center items-center h-66 buy-item">{{ $t('停牌中,禁止交易') }}</div> |
| | | </template> |
| | | <template v-else> |
| | | <div class="flex total-list"> |
| | | <div class="total-div" :class="[!isTotal ? 'active-bg' : '']" @click="checkIsTotal(false)"> |
| | | {{ $t('数量') }} |
| | |
| | | :class="currentType === 'open' ? 'bg-green' : 'bg-red'" @click="order()"> |
| | | {{ currentType == 'open' ? $t('买入') : $t('卖出') }} |
| | | </div> |
| | | |
| | | </template> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | |
| | | .inputBackground { |
| | | border-radius: 2.5rem; |
| | | |
| | | input { |
| | | background: transparent !important; |
| | | } |