111
jihongshun
8 天以前 0c741cdda7ef9935a20d3090dfea97e1ce8ae754
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>
  <div style="width: 100%;height: 100%;">
    <table cellpadding="0" cellspacing="0" style="width: 100%;height: 100%">
      <tr>
        <td v-for="item in 24" :key="'scaleX'+item" :class="item === 1 ? 'bothBorder':'rightBorder'">
          <div style="height: 50%;"></div>
          <div style="width: 100%;height: 50%;">
            <table cellpadding="0" cellspacing="0" style="width: 100%;height: 100%;">
              <tr>
                <td class="rightBorder"/>
                <td class="rightBorder"/>
                <td class="rightBorder"/>
                <td class="rightBorder"/>
                <td style="border-right: 1px solid transparent"/>
              </tr>
            </table>
          </div>
        </td>
      </tr>
    </table>
  </div>
 
</template>
 
<script>
export default {
  name: "ScaleMarkX"
}
</script>
 
<style scoped>
.rightBorder{border-right: 1px solid #aaa;}
.bothBorder{border-left: 1px solid #aaa;border-right: 1px solid #aaa;}
</style>