当前位置:   article > 正文

基于videojs和vue2写的视频播放器_vue2 video.js

vue2 video.js

基于videojs和vue写的视频播放器

视频带149分屏,主要是没做到响应式布局,不支持rstp的直播,需要后台转流,左侧树带拖拽功能!下面是代码片段

<template>
  <div class="main">
    <div class="left">
      <el-input
        class="selectInput"
        placeholder="输入通道名"
        :clearable="true"
        v-model="filterText"
      >
      </el-input>
      <el-tree
        ref="tree"
        :data="treeData"
        :props="props"
        node-key="id"
        :default-expanded-keys="['S4NbecfYA1DQ1HUOF0KP14']"
        check-strictly
        highlight-current
        :filter-node-method="filterNode"
        @node-click="nodeClick"
      >
        <template #default="{ node }">
          <div class="custom-tree-node" style="user-select: none">
            <span class="name" @mousedown="onMousedown(node)">{{
              node.label
            }}</span>
          </div>
        </template>
      </el-tree>
    </div>

    <div class="right">
      <div class="title">
        <div class="text">{{ showTitle }}</div>
        <div class="exit" title="退出" @click="toclose">
          <svg-icon
            :icon-class="'close'"
            class="close"
            @click="toclose"
          ></svg-icon>
          <div class="close_text" @click="toclose">关闭</div>
        </div>
      </div>
      <div class="right_main" ref="right_main">
        <div class="player" ref="one" v-show="status === 1">
          <video
            ref="player"
            id='player'
            preload="auto"
            class="video-js vjs-default-skin vjs-big-play-centered"
          ></video>
        </div>
        <div
          class="playerfour"
          v-show="status === 4"
          v-for="item in ['play41', 'play42', 'play43', 'play44']"
          :class="item === activeName ? 'activeBorder' : 'playerfour'"
          @click="changeSrc(item)"
          :key="item"
        >
          <video
            :ref="item"
            preload="auto"
            :id="item"
            class="video-js vjs-default-skin vjs-big-play-centered"
          ></video>
        </div>
        <div
          class="playernine"
          :class="v === activeName ? 'activeBorder' : 'playernine'"
          @click="changeSrc(v)"
          v-show="status===9"
          v-for="v in nineArray"
          :key="v"
        >
          <video
            :ref="v"
            :id="v"
            preload="auto"
            class="video-js vjs-default-skin vjs-big-play-centered"
          ></video>
        </div>
      </div>
      <div class="right_bottom">
        <div class="left_b">
          <div class="one"></div>
          <div class="two"></div>
          <div class="three"></div>
        </div>
        <div class="right_b">
          <div class="show_type">
            <div
              class="one_t"
              :class="lookStatus === '预览' ? 'blue_t' : ''"
              @click="goLook('预览')"
            >
              预览
            </div>
            <div
              class="two_t"
              :class="lookStatus === '录像' ? 'blue_t' : ''"
              @click="goLook('录像')"
            >
              录像
            </div>
          </div>
          <div class="one" @click="changeStatus(1)"></div>
          <div class="two" @click="changeStatus(4)"></div>
          <div class="three" @click="changeStatus(9)"></div>
        </div>
      </div>
    </div>
  </div>
  <div class="Console" v-if="false">
    <div class="top">
      <div class="text">云台控制</div>
      <div class="xxx"></div>
    </div>
    <div class="bottom">
      <div class="circular">
        <div class="b1" @mousedown="down('top')"></div>
        <div class="b2"></div>
        <div class="b3"></div>
        <div class="b4"></div>
        <div class="small-circular"></div>
      </div>
    </div>
  </div>
</template>

<script>
import html2canvas from "html2canvas";
import videojs from "video.js";
import "video.js/dist/video-js.css";
import {
  setTimers,
  getTree,
  getPassageByGis,
  getOrgDevTreePassage,
  getOrgDevTreeEquipment,
  realMonitor,
  queryPassage,
} from "./service/index.js";
import VideojsZhcnLanguage from "video.js/dist/lang/zh-CN.json";
videojs.addLanguage("zh-CN", VideojsZhcnLanguage); //设置中文
export default {
  name: "VideoPlayer",
  data() {
    return {
      props: {
        label: "text",
        value: "id",
        isLeaf: "leaf",
      },
      isdown: false,
      filterText: "",
      tu1: require("./source/image/test1.jpeg"),
      lookStatus: "预览",
      play1: null,
      showArray: [],
      activeName: "",
      activeName9: "",
      srcVideo: "",
      showTitle: "",
      activeBorder: "playerfour",
      nineArray: [
        "play91",
        "play92",
        "play93",
        "play94",
        "play95",
        "play96",
        "play97",
        "play98",
        "play99",
      ],
      status: 1,
      options: {
        lang: "zh-CN", //设置中文
        bigPlayButton: false, //是否显示播放按钮
        controls: true, //开启交互,即是用户可控。
        muted: true, //开启视频时是否静音
        fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
        loop: true, //循环播放
        controlBar: {
          fullscreenToggle: true,
          // 音量条的横向还是纵向显示
          volumePanel: {
            inline: false,
          },
        },
        sourceOrder: true,
        reload: "auto", //重载
        autoplay: true,
        //其余设置根据需求添加!
        poster: "", //视频封面
        techOrder: ["html5", "flash"],
        flash: {
          swf: "videojs/video-js.swf",
        },
      },
      options41: {
        lang: "zh-CN", //设置中文
        width: 0,
        height: 0,
        controls: true, //开启交互,即是用户可控。
        muted: true, //开启视频时是否静音
        fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
        reload: "auto", //重载
        autoplay: true,
        bigPlayButton: false, //是否显示播放按钮
        loop: true, //循环播放
        //其余设置根据需求添加!
        poster: "", //视频封面
        controlBar: {
          fullscreenToggle: true,
          // 音量条的横向还是纵向显示
          volumePanel: {
            inline: false,
          },
        },
      },
      treeData: [],
    };
  },

  watch: {
    filterText(val) {
      try {
        console.log(val, val, "val123");
        this.$refs.tree.filter(val);
        console.log(this.treeData, "this.treeData", this.$refs.tree);
      } catch (error) {
        console.log(error);
      }
    },
    activeName(val) {
      if (document.getElementById(val).getAttribute("name")) {
        this.showTitle = document.getElementById(val).getAttribute("name");
      } else {
        this.showTitle = "";
      }
    },
  },
  async mounted() {
    this.initVideo();
    this.options.width = this.$refs.right_main.offsetWidth / 1;
    this.options.height = this.$refs.right_main.offsetHeight / 1;
    this.player1 = videojs(
      this.$refs.player,
      this.options,
      function onPlayerReady() {
        console.log("onPlayerReady", this);
      }
    );
    this.setTimer();
    let { id, status, jwd, radius } = this.$route.params;
    try {
      if (id && status && jwd && radius) {
        let array = jwd.split(",");
        this.getTree();
        this.getPassageByGis(array, radius, id);
        this.status = 1;
        let { data } = await realMonitor({
          channelId: id,
          scheme: "HLS",
        });
        this.$nextTick(() => {
          this.changeSrcToShow("player", data, "application/x-mpegURL");
        });
      } else if (id) {
        console.log(11111111111, "2222222222");
        let { data } = await realMonitor({
          channelId: id,
          scheme: "HLS",
        });
        this.queryPassage(id);
        this.getTree();
        this.$nextTick(() => {
          this.changeSrcToShow("player", data, "application/x-mpegURL");
        });
      } else {
        this.status = 4;
        this.getTree();
      }
    } catch (error) {
      console.log(error);
    }
    setInterval(() => {
      this.setTimer();
    }, 120000);
  },
  methods: {
    nodeCollapse(data, node, self) {
      data.children.push({ test: "111" });
      data.children = data.children.filter((item) => !item.name);
    },
    initVideo() {
      this.options41.width = this.$refs.right_main.offsetWidth / 2;
      this.options41.height = this.$refs.right_main.offsetHeight / 2;
      this.player41 = videojs(
        this.$refs.play41[0],
        this.options41,
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player42 = videojs(
        this.$refs.play42[0],
        {
          width: this.$refs.right_main.offsetWidth / 2,
          height: this.$refs.right_main.offsetHeight / 2,
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          bigPlayButton: false, //是否显示播放按钮
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          loop: true, //循环播放
          lang: "zh-CN", //设置中文
          reload: "auto", //重载
          autoplay: true,
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player43 = videojs(
        this.$refs.play43[0],
        {
          width: this.$refs.right_main.offsetWidth / 2,
          height: this.$refs.right_main.offsetHeight / 2,
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          bigPlayButton: false, //是否显示播放按钮
          autoplay: true,
          lang: "zh-CN", //设置中文
          loop: true, //循环播放
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player44 = videojs(
        this.$refs.play44[0],
        {
          width: this.$refs.right_main.offsetWidth / 2,
          height: this.$refs.right_main.offsetHeight / 2,
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          loop: true, //循环播放
          bigPlayButton: false, //是否显示播放按钮
          autoplay: true,
          lang: "zh-CN", //设置中文
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player91 = videojs(
        this.$refs.play91[0],
        {
          width: this.$refs.right_main.offsetWidth / 3,
          height: this.$refs.right_main.offsetHeight / 3,
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          loop: true, //循环播放
          autoplay: true,
          bigPlayButton: false, //是否显示播放按钮
          lang: "zh-CN", //设置中文
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player92 = videojs(
        this.$refs.play92[0],
        {
          width: this.$refs.right_main.offsetWidth / 3,
          height: this.$refs.right_main.offsetHeight / 3,
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          autoplay: true,
          bigPlayButton: false, //是否显示播放按钮
          lang: "zh-CN", //设置中文
          loop: true, //循环播放
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player93 = videojs(
        this.$refs.play93[0],
        {
          width: this.$refs.right_main.offsetWidth / 3,
          height: this.$refs.right_main.offsetHeight / 3,
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          loop: true, //循环播放
          autoplay: true,
          bigPlayButton: false, //是否显示播放按钮
          lang: "zh-CN", //设置中文
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player94 = videojs(
        this.$refs.play94[0],
        {
          width: this.$refs.right_main.offsetWidth / 3,
          height: this.$refs.right_main.offsetHeight / 3,
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          loop: true, //循环播放
          bigPlayButton: false, //是否显示播放按钮
          autoplay: true,
          lang: "zh-CN", //设置中文
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player95 = videojs(
        this.$refs.play95[0],
        {
          width: this.$refs.right_main.offsetWidth / 3,
          height: this.$refs.right_main.offsetHeight / 3,
          controls: true, //开启交互,即是用户可控。
          loop: true, //循环播放
          bigPlayButton: false, //是否显示播放按钮
          autoplay: true,
          lang: "zh-CN", //设置中文
          muted: true, //开启视频时是否静音
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player96 = videojs(
        this.$refs.play96[0],
        {
          width: this.$refs.right_main.offsetWidth / 3,
          height: this.$refs.right_main.offsetHeight / 3,
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          loop: true, //循环播放
          bigPlayButton: false, //是否显示播放按钮
          autoplay: true,
          lang: "zh-CN", //设置中文
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player97 = videojs(
        this.$refs.play97[0],
        {
          width: this.$refs.right_main.offsetWidth / 3,
          height: this.$refs.right_main.offsetHeight / 3,
          loop: true, //循环播放
          bigPlayButton: false, //是否显示播放按钮
          autoplay: true,
          lang: "zh-CN", //设置中文
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player98 = videojs(
        this.$refs.play98[0],
        {
          width: this.$refs.right_main.offsetWidth / 3,
          height: this.$refs.right_main.offsetHeight / 3,
          loop: true, //循环播放
          autoplay: true,
          bigPlayButton: false, //是否显示播放按钮
          lang: "zh-CN", //设置中文
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
      this.player99 = videojs(
        this.$refs.play99[0],
        {
          width: this.$refs.right_main.offsetWidth / 3,
          height: this.$refs.right_main.offsetHeight / 3,
          loop: true, //循环播放
          autoplay: true,
          bigPlayButton: false, //是否显示播放按钮
          lang: "zh-CN", //设置中文
          controls: true, //开启交互,即是用户可控。
          muted: true, //开启视频时是否静音
          fluid: false, //根据外层css样式大小,自动填充宽高!比较实用,可搭配响应式
          reload: "auto", //重载
          controlBar: {
            fullscreenToggle: true,
            // 音量条的横向还是纵向显示
            volumePanel: {
              inline: false,
            },
          },
          //其余设置根据需求添加!
          poster: "", //视频封面
        },
        function onPlayerReady() {
          console.log("onPlayerReady", this);
        }
      );
    },
    filterNode(value, data) {
      console.log(value, "value");
      if (!value) {
        return true;
      }
      console.log(value, data, "1111111");
      if (data.text) {
        return data.text.split("").includes(value);
      }
    },
    async Wait() {
      try {
        setTimeout(() => {});
      } catch (error) {
        console.log(error);
      }
    },
    async queryPassage(id) {
      try {
        let { data } = await queryPassage({
          passageId: id,
        });
        this.showTitle = data[0].name;
      } catch (error) {
        console.log(error);
      }
    },
    async onMousedown(node) {
      if(this.isdown){
        return
      }
      this.isdown = true;
      if (node.data.nodeType==='3.0') {
        try {
          let { data } = await realMonitor({
          channelId: node.data.id,
          scheme: "HLS",
        });
        this.srcVideo = data;
        } catch (error) {
          console.log(error);
        }
        let dom = document.createElement("div");
        dom.innerText = node.data.text;
        dom.style.display = "none";
        dom.style.border = "1px solid red";
        dom.classList.add("drag-div-box");
        document.body.appendChild(dom);
        let moveFlag = false;
        document.onmousemove = (e) => {
          if(!this.isdown)return;
          e.preventDefault();
          if (!moveFlag) {
            // this.$emit("drag-start", node);
            moveFlag = true;
          }
          dom.style.position = "absolute";
          dom.style.left = e.clientX + 3 + "px";
          dom.style.top = e.clientY + 3 + "px";
          dom.style.zIndex = 1000;
          dom.style.display = "block";
          dom.style.backgroundColor = "#c9e9f7";
          dom.style.color = "#333";
          dom.style.padding = "5px 5px";
          dom.style.fontSize = "16px";
          dom.style.lineHeight = "1";
          dom.style.borderRadius = "4px";
        };
        // 鼠标已经抬起
        document.onmouseup = (e) => {
          this.isdown = false;
          document.body.removeChild(dom);
          document.onmousemove = null; // 当鼠标弹起时移出移动事件
          document.onmouseup = null; // 移出up事件,清空内存
          if (moveFlag) {
            // this.$emit("drag-end", node);
            if (this.status === 1) {
              if (this.d("player")) {
                this.showTitle = node.data.text;
                let a = this.srcVideo;
                this.changeSrcToShow("player", a, "application/x-mpegURL");
              }
            } else if (this.status === 4) {
              let array = ["play41", "play42", "play43", "play44"];
              array.map((v) => {
                if (this.d(v, true)) {
                  this.showTitle = node.data.text;
                  let a = this.srcVideo;
                  document
                    .getElementById(v)
                    .setAttribute("name", node.data.text);
                  this.changeSrcToShow(v, a, "application/x-mpegURL", true);
                  return;
                }
              });
            } else {
              this.nineArray.map((v) => {
                if (this.d(v, true)) {
                  let a = this.srcVideo;
                  // this.showTitle = node.data.name;
                  document
                    .getElementById(v)
                    .setAttribute("name", node.data.text);
                  this.changeSrcToShow(v, a, "application/x-mpegURL", true);
                  return;
                }
              });
            }
          }
        };
      }
    },
    d(id, type) {
      if (type) {
        var wx = window.event.clientX;
        var wy = window.event.clientY;
        var d_left = this.$refs[id][0].getBoundingClientRect().left;
        var d_top = this.$refs[id][0].getBoundingClientRect().top;
        var d_width = this.$refs[id][0].clientWidth;
        var d_height = this.$refs[id][0].clientHeight;
        if (
          wx < d_left ||
          wy < d_top ||
          wx > d_left + d_width ||
          wy > d_top + d_height
        ) {
          return false;
        } else {
          return true;
        }
      } else {
        var wx = window.event.clientX;
        var wy = window.event.clientY;
        var d_left = this.$refs[id].getBoundingClientRect().left;
        var d_top = this.$refs[id].getBoundingClientRect().top;
        var d_width = this.$refs[id].clientWidth;
        var d_height = this.$refs[id].clientHeight;
        if (
          wx < d_left ||
          wy < d_top ||
          wx > d_left + d_width ||
          wy > d_top + d_height
        ) {
          return false;
        } else {
          return true;
        }
      }
    },
    goLook(text) {
      this.lookStatus = text;
    },
    changeStatus(number) {
      this.status = number;
      if(number===1){
        this.showTitle = document.getElementById('player').getAttribute("name");
      }else if(["play41", "play42", "play43", "play44"].includes(
              this.activeName
            )&& number===4){
              this.showTitle = document.getElementById(this.activeName).getAttribute("name");

      }else{
        this.showTitle = document.getElementById(this.activeName).getAttribute("name");
      }
    },
    changeSrcToShow(Ref, Src, Type = "application/x-mpegURL", type) {
      if (this.$refs[Ref] && type) {
        console.log("改变");
        videojs(this.$refs[Ref][0]).src(Src);
        videojs(this.$refs[Ref][0]).type(Type);
      } else if (this.$refs) {
        console.log("改变");
        videojs(this.$refs[Ref]).src(Src);
        console.log(videojs(this.$refs[Ref]), "type");
        videojs(this.$refs[Ref]).type(Type);
      } else {
        console.log("error", "dom不存在!");
      }
    },
    async loadTree(node, resolve) {
      console.log(node, "data");
      if (node.level === 0) {
        let { data } = await getTree();
        resolve(data);
      } else {
        let { data } = await getOrgDevTreePassage({
          nodeId: node.data.id,
          paging: {
            pageNumber: 1,
            pageSize: 100,
          },
        });
        let data1 = await getTree({
          parentid: node.data.id,
        });
        console.log(data1.data[0].children, "data1");
        if (data && data.length > 0) {
          data.map((v) => {
            v.text = v.name;
            v.leaf = true;
          });
        }
        if (data1.data[0].children) {
          data1.data[0].children.map((v) => {
            data.unshift(v);
          });
        }
        resolve(data);
      }
    },
    async getTree() {
      try {
        let { data } = await getTree();
        this.treeData = data;
        console.log(data, "treedata");
      } catch (error) {}
    },
    async nodeClick(node) {
      if (node.nodeType === "3.0") {
        try {
          let { data } = await realMonitor({
            channelId: node.id,
            scheme: "HLS",
          });
          if (
            this.activeName &&
            ["play41", "play42", "play43", "play44"].includes(
              this.activeName
            ) &&
            this.status === 4
          ) {
            this.showTitle = node.text;
            document
              .getElementById(this.activeName)
              .setAttribute("name", node.text);
            // console.log(document.getElementById(this.activeName).getAttribute('name'),'this.activeName');
            this.changeSrcToShow(
              this.activeName,
              data,
              "application/x-mpegURL",
              true
            );
          } else if (
            this.activeName &&
            this.nineArray.includes(this.activeName) &&
            this.status === 9
          ) {
            this.showTitle = node.text;
            document
              .getElementById(this.activeName)
              .setAttribute("name", node.text);
            this.changeSrcToShow(
              this.activeName,
              data,
              "application/x-mpegURL",
              true
            );
          } else if (!this.activeName && this.status === 4) {
            this.activeName = ["play41", "play42", "play43", "play44"][0];
            this.showTitle = node.text;
            document
              .getElementById(this.activeName)
              .setAttribute("name", node.text);
            this.changeSrcToShow(
              this.activeName,
              data,
              "application/x-mpegURL",
              true
            );
          } else if (!this.activeName && this.status === 9) {
            this.activeName = this.nineArray[0];
            this.showTitle = node.text;
            document
              .getElementById(this.activeName)
              .setAttribute("name", node.text);
            this.changeSrcToShow(
              this.activeName,
              data,
              "application/x-mpegURL",
              true
            );
          } else {
            document
              .getElementById('player')
              .setAttribute("name", node.text);
            this.showTitle = node.text;
            this.changeSrcToShow("player", data, "application/x-mpegURL");
          }
        } catch (error) {
          console.log(error);
        }
      }
    },
    async nodeExpand(node) {
      console.log(node, "node");
      if (node.children[0].test) {
        node.children.splice(0, 1);
      }
      if (node.name) {
        try {
          let { data } = await getOrgDevTreeEquipment({
            nodeId: node.id,
            paging: {
              pageNumber: 0,
              pageSize: 100,
            },
          });
          console.log(data, "data,hsebei");
        } catch (error) {}
      } else {
        try {
          let { data } = await getOrgDevTreePassage({
            nodeId: node.id,
            paging: {
              pageNumber: 1,
              pageSize: 100,
            },
          });

          if (data && data.length > 0) {
            console.log(node, "data");
            data.map((v) => {
              v.text = v.name;
              node.children.push(v);
            });
          }
        } catch (error) {
          console.log(error);
        }
      }
    },
    async getORG(node) {
      try {
        let { data } = await getOrgDevTreePassage({
          nodeId: node.id,
          paging: {
            pageNumber: 1,
            pageSize: 100,
          },
        });
        data.map((v) => {
          v.text = v.name;
        });
        return data;
      } catch (error) {
        console.log(error);
      }
    },
    changeSrc(item) {
      this.activeName = item;
      console.log(
        this.$refs[this.activeName][0],
        this.$refs[this.activeName][0].offsetWidth,
        this.$refs[this.activeName][0].offsetHeight,
        "this.$refs.item"
      );
    },
    // 截图
    crossTabletoImage() {
      const canvas = document.createElement("canvas");
      const canvasBox = document.querySelector(".imageBox");
      const width = canvasBox.clientWidth;
      const height = canvasBox.clientHeight;
      // 宽高 * 2 并放大 2 倍 是为了防止图片模糊
      // canvas.width = width * 2
      // canvas.height = height * 2
      canvas.width = width;
      canvas.height = height;
      canvas.style.width = width + "px";
      canvas.style.height = height + "px";
      const context = canvas.getContext("2d");
      // context.scale(2, 2)
      context.scale(1, 1);
      const options = {
        backgroundColor: null,
        canvas: canvas,
        useCORS: true,
      };
      html2canvas(canvasBox, options).then((canvas) => {
        const dataURL = canvas.toDataURL("image/png"); // 图片格式转成base64
        this.downloadImage(dataURL);
      });
    },
    down(text) {},
    async setTimer() {
      await setTimers({});
    },
    async getTRees() {
      let { data } = await getTree();
      // this.treeData = data;
      console.log(data, "data");
    },
    async getOrgDevTreePassage() {
      let { data } = await getOrgDevTreePassage({
        nodeId: "S4NbecfYA1DQAT48FEMDRC",
        paging: {
          pageNumber: 1,
          pageSize: 100,
        },
      });
      console.log(data, "data,data");
    },
    //获取视频通道的方法
    async getPassageByGis(jwd, r, id) {
      try {
        let { data } = await getPassageByGis({
          coordinates: jwd,
          radius: r,
        });
        console.log(data, "datagpx");
        if (data && data.length > 0) {
          data.map((v) => {
            if (v.id == id) {
              this.showTitle = v.name;
            }
            v.text = v.name;
            v.nodeType = "3.0";
            v.leaf = true;
          });
        }
        this.treeData = data;
      } catch (error) {}
    },
    toclose() {
      this.$confirm("是否确定关闭?", "关闭窗口", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning",
      })
        .then(() => {
          window.close();
        })
        .catch((e) => {
          console.log(e);
        });
    },
  },
};
</script>

<style scoped lang='scss'>
//屏蔽单击暂停
.vjs-tech {
  pointer-events: none;
}
.activeBorder {
  video:first-child {
    border: 1px solid red !important;
  }
}
.main {
  width: 100vw;
  height: 100vh;
  display: flex;
  background: rgba(7, 23, 45, 1);
  .left {
    flex: 0 0 14%;
    overflow: auto;
    height: 100%;
    margin-right: 1%;
    background: rgba(15, 49, 96, 1);
    .selectInput {
      margin-bottom: 10px;
      background: #0b2444;
      border-radius: 0px 0px 4px 0px;
      :deep(.el-input__inner) {
        background: transparent;
        border: none;
        font-size: 16px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #cfd8e3;
        line-height: 10px;
      }
    }
    :deep(.el-tree) {
      background-color: transparent;
      font-size: 18px;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #e5e5e5;
      line-height: 10px;
    }
    :deep(.el-tree--highlight-current) {
      background-color: transparent;
    }
    :deep(.is-focusable) {
      background-color: transparent;
    }
    :deep(.is-focusable:hover) {
      background-color: transparent;
    }
    :deep(.is-current) {
      color: #2dc2fe;
      background: #294466;
      border-radius: 8px;
    }
    :deep(.is-current:hover) {
      background-color: transparent;
    }
    :deep(.el-tree-node__content) {
      background-color: transparent;
    }
    :deep(.el-tree-node) {
      padding: 5px 0px;
    }
  }
  .right {
    flex: 0 0 85%;
    height: 100%;
    background: rgba(15, 49, 96, 1);
    display: flex;
    flex-direction: column;
    .title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 0 0 50px;
      background: rgba(15, 45, 96, 1);
      .exit {
        width: 80px;
        height: 30px;
        cursor: pointer;
        margin-right: 5px;
        display: flex;
        align-items: center;
        .close {
          color: #9bc5d4;
          font-size: 20px;
          margin-left: 5px;
          margin-right: 0px;
          cursor: pointer;
        }
        .close_text {
          cursor: pointer;
          font-family: Microsoft YaHei;
          font-weight: bold;
          color: #88b4c9;
        }
      }
      .text {
        margin-left: 10px;
        font-size: 20px;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #00ccff;
        line-height: 10px;
      }
    }
    .right_bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(12, 38, 76, 1);
      flex: 0 0 50px;
      .left_b {
        display: flex;
        align-items: center;
        justify-content: left;
        height: 100%;
        .one {
          width: 26px;
          height: 22px;
          cursor: pointer;
          margin: 0 39px;
          background-image: url("./images/相机.png");
          background-size: 100% 100%;
          background-position: center;
        }
        .two {
          width: 26px;
          height: 22px;
          cursor: pointer;
          margin-right: 39px;
          background-image: url("./images/video.png");
          background-size: 100% 100%;
          background-position: center;
        }
        .three {
          width: 26px;
          height: 22px;
          cursor: pointer;
          margin-right: 39px;
          background-image: url("./images/control.png");
          background-size: 100% 100%;
          background-position: center;
        }
      }
      .right_b {
        display: flex;
        align-items: center;
        justify-content: right;
        height: 100%;
        .show_type {
          width: 164px;
          height: 30px;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 1px solid #125dcc;
          border-radius: 4px;
          cursor: pointer;
          .one_t {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            flex: 1;
            font-size: 18px;
            font-family: Source Han Sans CN;
            font-weight: 400;
            color: #e5e5e5;
            line-height: 10px;
            background: transparent;
            border-radius: 4px 0 0 4px;
          }
          .two_t {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            flex: 1;
            font-size: 18px;
            font-family: Source Han Sans CN;
            font-weight: 400;
            color: #e5e5e5;
            line-height: 10px;
            background: transparent;
          }
          .blue_t {
            background: #125dcc !important;
          }
        }
        .one {
          width: 26px;
          height: 22px;
          cursor: pointer;
          margin: 0 39px;
          background-image: url("./images/s1.png");
          background-size: 100% 100%;
          background-position: center;
        }
        .two {
          width: 26px;
          height: 22px;
          cursor: pointer;
          margin-right: 39px;
          background-image: url("./images/s2.png");
          background-size: 100% 100%;
          background-position: center;
        }
        .three {
          width: 26px;
          height: 22px;
          cursor: pointer;
          margin-right: 39px;
          background-image: url("./images/s3.png");
          background-size: 100% 100%;
          background-position: center;
        }
      }
    }
    .right_main {
      flex: 1;
      display: flex;
      overflow: auto;
      /* wrap:  在必要的时候进行换行*/
      flex-wrap: wrap;
      video {
        background: rgba(52, 52, 52, 1);
        border: 0.5px solid black;
      }
      .player {
        flex: 1;
        height: 100%;
      }
      .playerfour {
        flex: 0 0 49%;
        height: 49%;
      }
      .playernine {
        flex: 0 0 32%;
        height: 32%;
      }
    }
  }
}
.Console {
  width: 230px;
  height: 230px;
  position: relative;
  bottom: 310px;
  left: 19%;
  display: flex;
  flex-direction: column;
  .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 45px;
    width: 100%;
    background: #132b4c;
    .text {
      font-size: 18px;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #e5e5e5;
      line-height: 10px;
      margin-left: 10px;
    }
    .xxx {
      width: 13px;
      height: 12px;
      margin-right: 10px;
      background: url("./images/xxx.png");
      background-position: center;
      background-size: 100% 100%;
    }
  }
  .bottom {
    flex: 1;
    width: 100%;
    background: #07172d;
    display: flex;
    justify-content: center;
    align-items: center;
    .circular {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 150px;
      height: 150px;
      border-top: 1px solid #ffffff;
      border-bottom: 1px solid #ffffff;
      border-radius: 50%;
      position: relative;
      .b1 {
        width: 48px;
        height: 44px;
        background: url("./images/topblack.png") no-repeat center 100% 100%;
        position: absolute;
        left: 1px;
        top: 1px;
      }
      .small-circular {
        width: 60px;
        height: 60px;
        border-right: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
        border-radius: 50%;
      }
    }
  }
}
</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
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532
  • 533
  • 534
  • 535
  • 536
  • 537
  • 538
  • 539
  • 540
  • 541
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • 552
  • 553
  • 554
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • 562
  • 563
  • 564
  • 565
  • 566
  • 567
  • 568
  • 569
  • 570
  • 571
  • 572
  • 573
  • 574
  • 575
  • 576
  • 577
  • 578
  • 579
  • 580
  • 581
  • 582
  • 583
  • 584
  • 585
  • 586
  • 587
  • 588
  • 589
  • 590
  • 591
  • 592
  • 593
  • 594
  • 595
  • 596
  • 597
  • 598
  • 599
  • 600
  • 601
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 608
  • 609
  • 610
  • 611
  • 612
  • 613
  • 614
  • 615
  • 616
  • 617
  • 618
  • 619
  • 620
  • 621
  • 622
  • 623
  • 624
  • 625
  • 626
  • 627
  • 628
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 652
  • 653
  • 654
  • 655
  • 656
  • 657
  • 658
  • 659
  • 660
  • 661
  • 662
  • 663
  • 664
  • 665
  • 666
  • 667
  • 668
  • 669
  • 670
  • 671
  • 672
  • 673
  • 674
  • 675
  • 676
  • 677
  • 678
  • 679
  • 680
  • 681
  • 682
  • 683
  • 684
  • 685
  • 686
  • 687
  • 688
  • 689
  • 690
  • 691
  • 692
  • 693
  • 694
  • 695
  • 696
  • 697
  • 698
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 745
  • 746
  • 747
  • 748
  • 749
  • 750
  • 751
  • 752
  • 753
  • 754
  • 755
  • 756
  • 757
  • 758
  • 759
  • 760
  • 761
  • 762
  • 763
  • 764
  • 765
  • 766
  • 767
  • 768
  • 769
  • 770
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • 778
  • 779
  • 780
  • 781
  • 782
  • 783
  • 784
  • 785
  • 786
  • 787
  • 788
  • 789
  • 790
  • 791
  • 792
  • 793
  • 794
  • 795
  • 796
  • 797
  • 798
  • 799
  • 800
  • 801
  • 802
  • 803
  • 804
  • 805
  • 806
  • 807
  • 808
  • 809
  • 810
  • 811
  • 812
  • 813
  • 814
  • 815
  • 816
  • 817
  • 818
  • 819
  • 820
  • 821
  • 822
  • 823
  • 824
  • 825
  • 826
  • 827
  • 828
  • 829
  • 830
  • 831
  • 832
  • 833
  • 834
  • 835
  • 836
  • 837
  • 838
  • 839
  • 840
  • 841
  • 842
  • 843
  • 844
  • 845
  • 846
  • 847
  • 848
  • 849
  • 850
  • 851
  • 852
  • 853
  • 854
  • 855
  • 856
  • 857
  • 858
  • 859
  • 860
  • 861
  • 862
  • 863
  • 864
  • 865
  • 866
  • 867
  • 868
  • 869
  • 870
  • 871
  • 872
  • 873
  • 874
  • 875
  • 876
  • 877
  • 878
  • 879
  • 880
  • 881
  • 882
  • 883
  • 884
  • 885
  • 886
  • 887
  • 888
  • 889
  • 890
  • 891
  • 892
  • 893
  • 894
  • 895
  • 896
  • 897
  • 898
  • 899
  • 900
  • 901
  • 902
  • 903
  • 904
  • 905
  • 906
  • 907
  • 908
  • 909
  • 910
  • 911
  • 912
  • 913
  • 914
  • 915
  • 916
  • 917
  • 918
  • 919
  • 920
  • 921
  • 922
  • 923
  • 924
  • 925
  • 926
  • 927
  • 928
  • 929
  • 930
  • 931
  • 932
  • 933
  • 934
  • 935
  • 936
  • 937
  • 938
  • 939
  • 940
  • 941
  • 942
  • 943
  • 944
  • 945
  • 946
  • 947
  • 948
  • 949
  • 950
  • 951
  • 952
  • 953
  • 954
  • 955
  • 956
  • 957
  • 958
  • 959
  • 960
  • 961
  • 962
  • 963
  • 964
  • 965
  • 966
  • 967
  • 968
  • 969
  • 970
  • 971
  • 972
  • 973
  • 974
  • 975
  • 976
  • 977
  • 978
  • 979
  • 980
  • 981
  • 982
  • 983
  • 984
  • 985
  • 986
  • 987
  • 988
  • 989
  • 990
  • 991
  • 992
  • 993
  • 994
  • 995
  • 996
  • 997
  • 998
  • 999
  • 1000
  • 1001
  • 1002
  • 1003
  • 1004
  • 1005
  • 1006
  • 1007
  • 1008
  • 1009
  • 1010
  • 1011
  • 1012
  • 1013
  • 1014
  • 1015
  • 1016
  • 1017
  • 1018
  • 1019
  • 1020
  • 1021
  • 1022
  • 1023
  • 1024
  • 1025
  • 1026
  • 1027
  • 1028
  • 1029
  • 1030
  • 1031
  • 1032
  • 1033
  • 1034
  • 1035
  • 1036
  • 1037
  • 1038
  • 1039
  • 1040
  • 1041
  • 1042
  • 1043
  • 1044
  • 1045
  • 1046
  • 1047
  • 1048
  • 1049
  • 1050
  • 1051
  • 1052
  • 1053
  • 1054
  • 1055
  • 1056
  • 1057
  • 1058
  • 1059
  • 1060
  • 1061
  • 1062
  • 1063
  • 1064
  • 1065
  • 1066
  • 1067
  • 1068
  • 1069
  • 1070
  • 1071
  • 1072
  • 1073
  • 1074
  • 1075
  • 1076
  • 1077
  • 1078
  • 1079
  • 1080
  • 1081
  • 1082
  • 1083
  • 1084
  • 1085
  • 1086
  • 1087
  • 1088
  • 1089
  • 1090
  • 1091
  • 1092
  • 1093
  • 1094
  • 1095
  • 1096
  • 1097
  • 1098
  • 1099
  • 1100
  • 1101
  • 1102
  • 1103
  • 1104
  • 1105
  • 1106
  • 1107
  • 1108
  • 1109
  • 1110
  • 1111
  • 1112
  • 1113
  • 1114
  • 1115
  • 1116
  • 1117
  • 1118
  • 1119
  • 1120
  • 1121
  • 1122
  • 1123
  • 1124
  • 1125
  • 1126
  • 1127
  • 1128
  • 1129
  • 1130
  • 1131
  • 1132
  • 1133
  • 1134
  • 1135
  • 1136
  • 1137
  • 1138
  • 1139
  • 1140
  • 1141
  • 1142
  • 1143
  • 1144
  • 1145
  • 1146
  • 1147
  • 1148
  • 1149
  • 1150
  • 1151
  • 1152
  • 1153
  • 1154
  • 1155
  • 1156
  • 1157
  • 1158
  • 1159
  • 1160
  • 1161
  • 1162
  • 1163
  • 1164
  • 1165
  • 1166
  • 1167
  • 1168
  • 1169
  • 1170
  • 1171
  • 1172
  • 1173
  • 1174
  • 1175
  • 1176
  • 1177
  • 1178
  • 1179
  • 1180
  • 1181
  • 1182
  • 1183
  • 1184
  • 1185
  • 1186
  • 1187
  • 1188
  • 1189
  • 1190
  • 1191
  • 1192
  • 1193
  • 1194
  • 1195
  • 1196
  • 1197
  • 1198
  • 1199
  • 1200
  • 1201
  • 1202
  • 1203
  • 1204
  • 1205
  • 1206
  • 1207
  • 1208
  • 1209
  • 1210
  • 1211
  • 1212
  • 1213
  • 1214
  • 1215
  • 1216
  • 1217
  • 1218
  • 1219
  • 1220
  • 1221
  • 1222
  • 1223
  • 1224
  • 1225
  • 1226
  • 1227
  • 1228
  • 1229
  • 1230
  • 1231
  • 1232
  • 1233
  • 1234
  • 1235
  • 1236
  • 1237
  • 1238
  • 1239
  • 1240
  • 1241
  • 1242
  • 1243
  • 1244
  • 1245
  • 1246
  • 1247
  • 1248
  • 1249
  • 1250
  • 1251
  • 1252
  • 1253
  • 1254
  • 1255
  • 1256
  • 1257
  • 1258
  • 1259
  • 1260
  • 1261
  • 1262
  • 1263
  • 1264
  • 1265
  • 1266
  • 1267
  • 1268
  • 1269
  • 1270
  • 1271
  • 1272
  • 1273
  • 1274
  • 1275
  • 1276
  • 1277
  • 1278
  • 1279
  • 1280
  • 1281
  • 1282
  • 1283
  • 1284
  • 1285
  • 1286
  • 1287
  • 1288
  • 1289
  • 1290
  • 1291
  • 1292
  • 1293
  • 1294
  • 1295
  • 1296
  • 1297
  • 1298
  • 1299
  • 1300
  • 1301
  • 1302
  • 1303
  • 1304
  • 1305
  • 1306
  • 1307
  • 1308
  • 1309
  • 1310
  • 1311
  • 1312
  • 1313
  • 1314
  • 1315
  • 1316
  • 1317
  • 1318
  • 1319
  • 1320
  • 1321
  • 1322
  • 1323
  • 1324
  • 1325
  • 1326
  • 1327
  • 1328
  • 1329
  • 1330
  • 1331
  • 1332
  • 1333
  • 1334
  • 1335
  • 1336
  • 1337
  • 1338
  • 1339
  • 1340
  • 1341
  • 1342
  • 1343
  • 1344
  • 1345
  • 1346
  • 1347
  • 1348
  • 1349
  • 1350
  • 1351
  • 1352
  • 1353
  • 1354
  • 1355
  • 1356
  • 1357
  • 1358
  • 1359
  • 1360
  • 1361
  • 1362
  • 1363
  • 1364
  • 1365
  • 1366
  • 1367
  • 1368
  • 1369
  • 1370
  • 1371
  • 1372
  • 1373
  • 1374
  • 1375
  • 1376
  • 1377
  • 1378
  • 1379
  • 1380
  • 1381
  • 1382
  • 1383
  • 1384
  • 1385
  • 1386
  • 1387

效果图
在这里插入图片描述在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/79548
推荐阅读
相关标签