10.10综合交易所原始源码_移动端
admin
2026-01-06 42faef34194c466f03e29d75a63ae502e4213044
src/views/ipo/index.vue
@@ -5,8 +5,7 @@
        {{ t('IPO中心') }}
      </template>
    </fx-header>
    <van-tabs v-model:active="active" shrink :title-inactive-color="THEME === 'white' ? '#000' : '#fff'"
      title-active-color="#THEME === 'white' ? '#000' : '#fff'">
        <van-tabs v-model:active="active" shrink :title-inactive-color="THEME === 'white' ? '#000' : '#fff'" title-active-color="#THEME === 'white' ? '#000' : '#fff'">
      <van-tab v-for="(item, index) in tabList" :key="index" :title="t(item.label)">
        <general v-if="active === 0" />
        <new-ipo v-if="active === 1" />
@@ -26,15 +25,9 @@
                    </div>
                    <list-item2 />
                </div> -->
        <!-- <div class="listing" v-if="active === 2">
                <div class="listing" v-if="active === 2">
                    <list-item1 />
                </div> -->
        <!-- 新股库存 -->
        <NewStock v-if="active === 2" />
        <!-- 抽签记录 -->
        <LotteryRecord v-if="active === 3" />
                </div>
      </van-tab>
    </van-tabs>
  </div>
@@ -49,10 +42,7 @@
import listItem1 from './components/listItem1.vue';
import listItem2 from './components/listItem2.vue';
import general from './components/general.vue';
import NewStock from './newStock.vue';
import LotteryRecord from './lotteryRecord.vue'
import { themeStore } from '@/store/theme';
const thStore = themeStore()
const THEME = thStore.theme
const { t } = useI18n()
@@ -77,11 +67,9 @@
const tabList = ref([
  { label: '概括' },
  { label: '新股认购' },
  { label: '新股库存' },
  { label: '抽签记录' },
  // { label: '递交招股书' },
  // { label: '待上市' },
  // { label: '已上市' },
    { label: '已上市' },
])
onMounted(() => {
})
@@ -125,11 +113,9 @@
  .tab1 {
    width: 40%;
  }
  .tab2 {
    width: 30%;
  }
  .tab3 {
    width: 30%;
  }
@@ -142,7 +128,6 @@
    font-size: 13px;
    color: #747A8F;
  }
  .listing {
    overflow-x: auto;
  }