代码调整

This commit is contained in:
dong 2022-09-01 15:39:59 +08:00
parent b3083b8dc8
commit 77ce75c91b
2 changed files with 11 additions and 3 deletions

View File

@ -25,13 +25,13 @@ export function handlerUrl(data) {
// const data = null;
// BASE_API = 'https://joylink.club/jlcloud';
// BASE_API = 'https://test.joylink.club/jlcloud';
// BASE_API = 'http://192.168.3.233/rtss-server';
BASE_API = 'http://192.168.3.233/rtss-server';
// BASE_API = 'http://114.116.51.125/jlcloud';
// BASE_API = 'http://192.168.8.152:9000'; // 袁琪
// BASE_API = 'http://192.168.3.94:9000'; // 旭强
// BASE_API = 'http://192.168.3.15:9000'; // 张赛
// BASE_API = 'http://192.168.3.5:9000'; // 夏增彬
BASE_API = 'http://192.168.3.37:9000'; // 卫志宏
// BASE_API = 'http://192.168.3.37:9000'; // 卫志宏
// BASE_API = 'http://b29z135112.zicp.vip';
// BASE_API = 'http://2925963m2a.zicp.vip'; // 杜康
// BASE_API = 'http://2i38984j47.qicp.vip'; // 张赛

View File

@ -5,6 +5,9 @@
<span class="titleStyle">{{ $t('trainingManage.editTagTitle') }}</span>
</div>
</div>
<div class="editContentTitle">
<span>实训名称{{ editData.name || '' }}</span>
</div>
<el-tabs v-model="activeName" type="card">
<el-tab-pane label="步骤列表" name="stepList">
<div class="tabPaneBox">
@ -135,7 +138,7 @@ export default {
return this.$route.query.record;
},
tableHeight() {
const s = 160;
const s = 200;
const h = this.$store.state.app.height;
return h - s;
},
@ -393,4 +396,9 @@ export default {
justify-content: center;
}
}
.editContentTitle {
height: 40px;
line-height: 40px;
padding: 0 20px;
}
</style>