fix: BUG修改

This commit is contained in:
kun 2023-10-30 15:02:03 +08:00
parent d7f031622a
commit 35125b59b9
6 changed files with 22 additions and 12 deletions

View File

@ -5,8 +5,8 @@ NODE_ENV = "production"
# VITE_API_URL = "http://139.9.66.234:6688" # VITE_API_URL = "http://139.9.66.234:6688"
# VITE_API_URL = "http://jxjzw.zhgdyun.com:6688" # VITE_API_URL = "http://jxjzw.zhgdyun.com:6688"
# VITE_API_URL = 'http://192.168.34.155:6688' # VITE_API_URL = 'http://192.168.34.155:6688'
# VITE_API_URL = 'http://10.75.253.12:6090' VITE_API_URL = 'http://10.75.253.12:6090'
VITE_API_URL = "http://jxjzw.zhgdyun.com:9013" # VITE_API_URL = "http://jxjzw.zhgdyun.com:9013"
VITE_WPAPI_URL = "http://jxjzw.zhgdyun.com:8081" VITE_WPAPI_URL = "http://jxjzw.zhgdyun.com:8081"
# VITE_API_URL = "http://101.43.164.214:6688" # VITE_API_URL = "http://101.43.164.214:6688"
# VITE_API_URL = "https://wx.antjg.com:6081/" # VITE_API_URL = "https://wx.antjg.com:6081/"

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -28,7 +28,7 @@
@check="handleCheckChange" @check="handleCheckChange"
> >
<template #default="{ node, data }"> <template #default="{ node, data }">
<span style="font-size: 16px" class="el-tree-node__label"> <span style="font-size: 16px" class="el-tree-node__label" :title="node.label">
<slot :row="node"> <slot :row="node">
{{ node.label }} {{ node.label }}
</slot> </slot>

View File

@ -1,10 +1,10 @@
<!-- 经典布局 --> <!-- 经典布局 -->
<template> <template>
<el-container class="layout"> <el-container class="layout">
<!-- <el-container class="classic-main"> <el-container class="classic-main">
<Main /> <Main />
</el-container> --> </el-container>
<el-header> <!-- <el-header>
<div class="header-lf"> <div class="header-lf">
<div @click="goHome" class="logo flx-center"> <div @click="goHome" class="logo flx-center">
<img src="@/assets/images/login/china.png" style="margin: 0 15px" alt="logo" /> <img src="@/assets/images/login/china.png" style="margin: 0 15px" alt="logo" />
@ -15,10 +15,10 @@
<ToolBarLeft /> <ToolBarLeft />
</div> </div>
<ToolBarRight /> <ToolBarRight />
</el-header> </el-header> -->
<el-container class="classic-content"> <!-- <el-container class="classic-content">
<el-aside> <el-aside>
<!-- <div class="menu" :style="{ width: isCollapse ? '65px' : '210px' }"> 根据屏幕自动收缩 --> <div class="menu" :style="{ width: isCollapse ? '65px' : '210px' }"> 根据屏幕自动收缩
<div class="menu"> <div class="menu">
<el-scrollbar> <el-scrollbar>
<el-menu <el-menu
@ -39,7 +39,7 @@
<el-container class="classic-main"> <el-container class="classic-main">
<Main /> <Main />
</el-container> </el-container>
</el-container> </el-container> -->
</el-container> </el-container>
</template> </template>

View File

@ -8,6 +8,7 @@
// overflow: hidden; // overflow: hidden;
.plr-20 { .plr-20 {
padding: 0; padding: 0;
height: 100%;
} }
.middle-video { .middle-video {
// margin: 0 20px; // margin: 0 20px;

View File

@ -1,13 +1,21 @@
:deep() {
.el-main {
padding: 0;
}
}
.video-box { .video-box {
height: 100%; height: 100%;
width: 100%; width: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background: url("@/assets/images/hzImg/borderImg.png") no-repeat;
background-size: 100% 100%;
// background-color: #f6f6f6; // background-color: #f6f6f6;
// padding: 0 20px; // padding: 0 20px;
// overflow: hidden; // overflow: hidden;
.plr-20 { .plr-20 {
padding: 0; padding: 50px 0;
height: 100%;
} }
.middle-video { .middle-video {
// margin: 0 20px; // margin: 0 20px;
@ -36,7 +44,8 @@
// margin: 0 20px; // margin: 0 20px;
border-radius: 8px; border-radius: 8px;
flex: 1; flex: 1;
height: 80vh; // height: 80vh;
height: calc(100% - 76px);
// margin: auto; // margin: auto;
// background-color: rgba(255, 192, 203, 0.4); // background-color: rgba(255, 192, 203, 0.4);
} }