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
<template>
  <div style="width: 100%;height: 100%;">
    <table cellpadding="0" cellspacing="0" style="width: 100%;height: 100%">
      <tr v-for="item in 12" :key="'scaleY'+item">
        <td :class="item === 1 ? 'bothBorder':'bottomBorder'">
          <div style="width: 50%;height: 100%;float: left"></div>
          <div style="width: 50%;height: 100%;float: right;">
            <table cellpadding="0" cellspacing="0" style="width: 100%;height: 100%">
              <tr v-for="item in 4" :key="item">
                <td class="bottomBorder"></td>
              </tr>
              <tr>
                <td style="border-bottom: 1px solid transparent"></td>
              </tr>
            </table>
          </div>
        </td>
      </tr>
    </table>
  </div>
</template>
 
<script>
export default {
  name: "ScaleMarkY"
}
</script>
 
<style scoped>
.bothBorder{border-bottom: 1px solid #aaa;border-top: 1px solid #aaa;}
.bottomBorder{border-bottom: 1px solid #aaa;}
</style>