|
|
@ -1,14 +1,21 @@ |
|
|
|
<template> |
|
|
|
<div class="app-container" v-loading="loading"> |
|
|
|
<div class="div-box"> |
|
|
|
<span class="div-title"> {{ listData.title }}</span> |
|
|
|
<div style="text-align: center"> |
|
|
|
<span class="div-title"> {{ $route.query.title }}</span> |
|
|
|
</div> |
|
|
|
<div |
|
|
|
v-if="listData.infos && listData.infos.length" |
|
|
|
@click="handleAdd" |
|
|
|
style="text-align: right; color: #1890ff; font-size: 20px" |
|
|
|
> |
|
|
|
<i class="el-icon-circle-plus-outline"></i> |
|
|
|
新增 |
|
|
|
</div> |
|
|
|
<div v-else @click="handleAdd" class="div-add"> |
|
|
|
<i class="el-icon-circle-plus-outline"></i> |
|
|
|
新增 |
|
|
|
</div> |
|
|
|
<div class="div-ul"> |
|
|
|
<MeetingList |
|
|
|
@handleRefresh="handleRefresh" |
|
|
@ -277,4 +284,23 @@ export default { |
|
|
|
font-size: 18px; |
|
|
|
line-height: 26px; |
|
|
|
} |
|
|
|
.div-add { |
|
|
|
width: 100%; |
|
|
|
height: 300px; |
|
|
|
color: #1890ff; |
|
|
|
font-size: 30px; |
|
|
|
line-height: 300px; |
|
|
|
border: 2px dashed #1890ff; |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
.div-title { |
|
|
|
display: inline-block; |
|
|
|
border: 1px solid #000; |
|
|
|
padding: 0 14px; |
|
|
|
margin-bottom: 30px; |
|
|
|
line-height: 50px; |
|
|
|
border-radius: 6px; |
|
|
|
font-size: 20px; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
</style> |
|
|
|