曹睿
2025-04-22 2fa9c764993b4a7ad51754d0e8587990f96f1529
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<template>
  <wd-tabs v-model="tab" auto-line-width>
    <wd-tab title="单丝领用" name="单丝领用">
      <Monofil />
    </wd-tab>
    <wd-tab title="盘具领用" name="盘具领用">
      <view class="content">
        <Plate />
      </view>
    </wd-tab>
    <wd-tab title="钢芯领用" name="钢芯领用">
      <view class="content">
        <SteelCore />
      </view>
    </wd-tab>
  </wd-tabs>
</template>
 
<script setup lang="ts">
import Monofil from "./monofil.vue";
import Plate from "./plate/index.vue";
import SteelCore from "./steelCore/index.vue";
 
const tab = ref("单丝领用");
</script>
 
<style lang="scss" scoped>
::v-deep .wd-tabs__line {
  background: #0d867f;
}
::v-deep .wd-tabs__nav {
  border-bottom: 1px #dddddd solid;
}
</style>