优化通道选择页面样式
parent
b7c16fe6ed
commit
ad4afd9d67
|
@ -7,7 +7,7 @@
|
||||||
<el-tabs v-model="catalogTabActiveName" >
|
<el-tabs v-model="catalogTabActiveName" >
|
||||||
<el-tab-pane label="目录结构" name="catalog">
|
<el-tab-pane label="目录结构" name="catalog">
|
||||||
<el-container>
|
<el-container>
|
||||||
<el-main style="background-color: #FFF;">
|
<el-main v-bind:style="{backgroundColor: '#FFF', maxHeight: winHeight + 'px'}">
|
||||||
<chooseChannelForCatalog ref="chooseChannelForCatalog" :platformId=platformId :platformName=platformName :defaultCatalogId=defaultCatalogId :catalogIdChange="catalogIdChange"></chooseChannelForCatalog>
|
<chooseChannelForCatalog ref="chooseChannelForCatalog" :platformId=platformId :platformName=platformName :defaultCatalogId=defaultCatalogId :catalogIdChange="catalogIdChange"></chooseChannelForCatalog>
|
||||||
</el-main>
|
</el-main>
|
||||||
</el-container>
|
</el-container>
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
<el-checkbox @change="shareAllCheckedChange">全部共享</el-checkbox>
|
<el-checkbox @change="shareAllCheckedChange">全部共享</el-checkbox>
|
||||||
</div>
|
</div>
|
||||||
<el-table ref="gbChannelsTable" :data="gbChannels" border style="width: 100%" @selection-change="checkedChange" >
|
<el-table ref="gbChannelsTable" :data="gbChannels" border style="width: 100%" @selection-change="checkedChange" :height="winHeight">
|
||||||
<el-table-column type="selection" width="55" align="center" fixed > </el-table-column>
|
<el-table-column type="selection" width="55" align="center" fixed > </el-table-column>
|
||||||
<el-table-column prop="channelId" label="通道编号" width="210">
|
<el-table-column prop="channelId" label="通道编号" width="210">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
@ -74,7 +74,8 @@ export default {
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
count: 10,
|
count: 10,
|
||||||
total: 0,
|
total: 0,
|
||||||
eventEnanle: false
|
eventEnanle: false,
|
||||||
|
winHeight: window.innerHeight - 350,
|
||||||
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div id="chooseChannelFoStream" >
|
<div id="chooseChannelFoStream" >
|
||||||
<el-table ref="gbStreamsTable" :data="gbStreams" border style="width: 100%" @selection-change="checkedChanage" >
|
<el-table ref="gbStreamsTable" :data="gbStreams" border style="width: 100%" @selection-change="checkedChanage" :height="winHeight">
|
||||||
<el-table-column type="selection" width="55" align="center" fixed > </el-table-column>
|
<el-table-column type="selection" width="55" align="center" fixed > </el-table-column>
|
||||||
<el-table-column prop="name" label="名称" show-overflow-tooltip>
|
<el-table-column prop="name" label="名称" show-overflow-tooltip>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
@ -52,7 +52,8 @@ export default {
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
count: 10,
|
count: 10,
|
||||||
total: 0,
|
total: 0,
|
||||||
eventEnanle: false
|
eventEnanle: false,
|
||||||
|
winHeight: window.innerHeight - 350,
|
||||||
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<el-upload
|
<el-upload
|
||||||
class="upload-box"
|
class="upload-box"
|
||||||
drag
|
drag
|
||||||
action="debug/api/push/upload"
|
:action="uploadUrl"
|
||||||
name="file"
|
name="file"
|
||||||
>
|
>
|
||||||
<i class="el-icon-upload"></i>
|
<i class="el-icon-upload"></i>
|
||||||
|
@ -38,6 +38,7 @@ export default {
|
||||||
showDialog: false,
|
showDialog: false,
|
||||||
isLoging: false,
|
isLoging: false,
|
||||||
isEdit: false,
|
isEdit: false,
|
||||||
|
uploadUrl: "debug/api/push/upload",
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
Loading…
Reference in New Issue