当前位置:   article > 正文

前端 鱼骨图 elenemt ui_前端做鱼骨图

前端做鱼骨图

展示图

在这里插入图片描述

代码

<template>
  <div>
    <div
      class="fishbone"
      :style="{ height: `calc((${topChiderH} + ${topChiderH}) + 33px)` }"
    >
      <div class="top-box">
        <div
          class="flex-items"
          ref="topChilderen"
          :style="{ height: topChiderH }"
        >
          <template v-for="(item, index) in leftArr">
            <ul
              class="itme-childeren"
              v-if="item.i % 2"
              :key="index"
              :class="active >= item.i ? 'border-color' : ''"
            >
              <li class="item-title">
                <el-popover
                  placement="top-start"
                  title="标题"
                  width="200"
                  trigger="hover"
                  content="这是一段内容,这是一段内容,这是一段内容,这是一段内容。"
                >
                  <div
                    class="title border-box"
                    :class="active >= item.i ? 'border-color bag' : ''"
                    slot="reference"
                  >
                    {{ item.lable }}
                  </div>
                </el-popover>
              </li>
              <li class="flex-items" v-for="(o, i) in item.childeren" :key="i">
                <div
                  class="border-box"
                  :class="active >= item.i ? 'border-color' : ''"
                >
                  {{ o.lable }}
                </div>
                <span
                  class="bag-line"
                  :class="active >= item.i ? 'bag' : ''"
                ></span>
              </li>
            </ul>

            <ul
              class="itme-childeren bottom-itme-childeren"
              :style="{ bottom: `-${topChiderH}` }"
              :class="active >= item.i ? 'border-color' : ''"
              v-else
              :key="index"
            >
              <li class="flex-items" v-for="(o, i) in item.childeren" :key="i">
                <div
                  class="border-box"
                  :class="active >= item.i ? 'border-color ' : ''"
                >
                  {{ o.lable }}
                </div>
                <span
                  class="bag-line"
                  :class="active >= item.i ? 'bag' : ''"
                ></span>
              </li>

              <li class="item-title">
                <div
                  class="border-box bottom-title"
                  :class="active >= item.i ? 'border-color bag' : ''"
                >
                  {{ item.lable }}
                </div>
              </li>
            </ul>
          </template>
        </div>
      </div>
      <div class="line-box">
        <div class="line"></div>
        <div
          class="line-color"
          :style="{
            width: widths,
          }"
        ></div>
        <div class="date-box">{{ currentTime }}</div>
      </div>
    </div>
    <div @click="next">下一步</div>
  </div>
</template>
<script>
import { getcurrentTime } from "@/utils/index.js";
export default {
  data() {
    return {
      topChiderH: "",
      botChiderH: "",
      leftArr: [
        {
          lable: "标题", //标题
          i: 1,
          bag: "", //背景颜色
          childeren: [
            {
              lable: "早餐订单",
            },
            {
              lable: "午餐订单",
            },
            {
              lable: "晚餐订单",
            },
          ],
        },
        {
          lable: "标题", //标题
          bag: "", //背景颜色
          i: 2,
          childeren: [
            {
              lable: "早餐订单",
            },
            {
              lable: "早餐订单",
            },
            {
              lable: "早餐订单",
            },
          ],
        },
        {
          lable: "标题", //标题
          bag: "", //背景颜色
          i: 3,
          childeren: [
            {
              lable: "早餐订单",
            },
            {
              lable: "早餐订单",
            },
          ],
        },
        {
          lable: "标题", //标题
          bag: "", //背景颜色
          i: 4,
          childeren: [
            {
              lable: "净菜数量",
            },
            {
              lable: "损耗控制",
            },
          ],
        },
        {
          lable: "标题", //标题
          bag: "", //背景颜色
          i: 5,
          childeren: [
            {
              lable: "出餐数量",
            },
            {
              lable: "损耗控制",
            },
          ],
        },
        {
          lable: "标题", //标题
          i: 6,
          bag: "", //背景颜色
          childeren: [
            {
              lable: "早餐订单",
            },
            {
              lable: "午餐订单",
            },
            {
              lable: "晚餐订单",
            },
          ],
        },
        {
          lable: "标题", //标题
          bag: "", //背景颜色
          i: 7,
          childeren: [
            {
              lable: "午餐订单",
            },
            {
              lable: "午餐订单",
            },
            {
              lable: "午餐订单",
            },
          ],
        },
        {
          lable: "标题", //标题
          bag: "", //背景颜色
          i: 8,
          childeren: [
            {
              lable: "午餐订单",
            },
            {
              lable: "午餐订单",
            },
          ],
        },
        {
          lable: "标题", //标题
          bag: "", //背景颜色
          i: 9,
          childeren: [
            {
              lable: "午餐订单",
            },
            {
              lable: "午餐订单",
            },
          ],
        },
        {
          lable: "标题", //标题
          bag: "", //背景颜色
          i: 10,
          childeren: [
            {
              lable: "午餐订单",
            },
            {
              lable: "午餐订单",
            },
          ],
        },
      ],

      active: 0,
      currentTime: getcurrentTime(new Date()),
      nowtime: null,
    };
  },
  computed: {
    widths() {
      const active = this.active;
      return active == 1
        ? "13.6%"
        : active == 2
        ? `calc(11% * ${active})`
        : active == 3
        ? `calc(10.2% * ${active})`
        : active == 4
        ? `calc(9.75% * ${active})`
        : active == 5
        ? `calc(9.51% * ${active})`
        : active == 6
        ? `calc(9.33% * ${active})`
        : active == 7
        ? `calc(9.22% * ${active})`
        : active == 8
        ? `calc(9.13% * ${active})`
        : active == 9
        ? `calc(9.06% * ${active})`
        : `calc(10% * ${active})`;
    },
  },
  mounted() {
    // 获取元素最高度
    let topHeight =
      window.getComputedStyle(this.$refs.topChilderen).height || "";
    // let bottomHeight =
    //   window.getComputedStyle(this.$refs.botChilderen).height || "";
    this.topChiderH = topHeight;
    // this.botChiderH = bottomHeight;
    // 获取当前日期  定时器
    this.nowtime = setInterval(() => {
      const date = new Date();
      this.currentTime = getcurrentTime(date);
    }, 1000);
  },

  destroyed() {
    clearInterval(this.nowtime);
  },
  methods: {
    next() {
      console.log(23423);
      if (this.active++ > 9) this.active = 0;
    },
  },
};
</script>
<style lang="scss" scoped>
ul {
  padding: 0;
  margin: 0;
}

.fishbone {
  $bnoe-color: #169bd5;
  $bne-color: #ccc;
  position: relative;
  margin-top: 32px;
  .top-box {
    position: relative;
    z-index: 2;
    margin: 0 30px;
    width: 85%;
  }
  .item-title {
    position: absolute;
    top: -34px;
    left: 60%;
  }
  .line {
    height: 2px;
    width: 100%;
    background: #ccc;
  }
  ul {
    position: relative;
  }
  ul li {
    list-style: none;
    width: auto;
    transform: skewX(-45deg);
    text-align: center;
    padding: 2px 0;
    width: 100%;
  }
  .border-box {
    border: 1px solid $bne-color;
    padding: 5px;
    border-radius: 10px;
    width: 100%;
  }
  .title {
    text-align: center;
  }
  .bag-line {
    display: inline-block;
    background: $bne-color;
    width: 40px;
    height: 2px;
  }
  .bag {
    background: $bnoe-color;
    color: #fff;
  }
  .itme-childeren {
    border-right: 2px solid $bne-color;
    transform: skewX(45deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    // margin: 0 20px;
    // padding: 10px 0;
    // padding-left: 20px;
    width: calc(100% / 10);
    // border-bottom: 1px solid #cccc;
  }

  .bottom-itme-childeren {
    transform: skewX(-45deg);
    // width: calc(100% / 4);
    // border-top: 1px solid #cccc;
    border-bottom: none;
    position: relative;
    bottom: -106px;
    li {
      transform: skewX(45deg);
    }
    .bottom-title {
      position: absolute;
      // right: -50px;

      bottom: -33px;
    }
    .item-title {
      position: absolute;
      bottom: 0px;
      left: 50%;
      top: auto;
    }
  }
  .line-color {
    background: $bnoe-color;
    position: absolute;
    top: 0;
    height: 2px;
  }
  .border-color {
    border-color: $bnoe-color;
  }
}
.line-box {
  position: relative;
  top: -1px;
  z-index: -1;
}
.date-box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  line-height: 25px;
  width: 160px;
  text-align: center;
  background: #b6f2fd;
  padding: 20px 5px;
  font-size: 20px;
  border-radius: 10px;
  color: #333;
}
</style>
  • 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
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/287576
推荐阅读
相关标签