|
@ -1,20 +1,28 @@ |
|
|
<template> |
|
|
<template> |
|
|
<view class="box"> |
|
|
<view class="box"> |
|
|
<image class="logo" src='../../imgs/logo.png' mode="widthFix"></image> |
|
|
<image class="logo" src='../../imgs/logo.png' mode="widthFix" @click="handleLogo"></image> |
|
|
<view class="box-cent"> |
|
|
<view class="box-cent"> |
|
|
<view class="box-cent1"> |
|
|
<view class="box-cent1"> |
|
|
<view class="view-box" v-for="(item, index) in listData" :key="index"> |
|
|
<view class="view-box" v-for="(item, index) in listData" :key="index"> |
|
|
|
|
|
<view style="text-align: center;"> |
|
|
<span class="view-title"> {{item.dateTitle}}</span> |
|
|
<span class="view-title"> {{item.dateTitle}}</span> |
|
|
|
|
|
</view> |
|
|
<view class="view-ul"> |
|
|
<view class="view-ul"> |
|
|
<view class="view-li" v-for="(row, rind) in item.meetingList" :key="rind" |
|
|
<view class="view-li" v-for="(row, rind) in item.meetingList" :key="rind" |
|
|
@click="handleItemClaick(item,row)"> |
|
|
> |
|
|
{{rind + 1}}. {{row.title}} |
|
|
<span @click="handleItemClaick(item,row)">{{rind + 1}}. {{row.title}}</span> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view v-if="!listData.length" class="view-none"> 暂无会议 </view> |
|
|
<view v-if="!listData.length" class="view-none"> 暂无会议 </view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
<!-- 底部背景图 --> |
|
|
|
|
|
<view class="view-backimg"> |
|
|
|
|
|
<view class="view-backimg-top"></view> |
|
|
|
|
|
<view class="view-backimg-bottom"></view> |
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
</view> |
|
|
</view> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
@ -36,6 +44,12 @@ |
|
|
this.getQueryMeeting() //获取会议列表 |
|
|
this.getQueryMeeting() //获取会议列表 |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
// logo 回到首页 |
|
|
|
|
|
handleLogo(){ |
|
|
|
|
|
uni.navigateTo({ |
|
|
|
|
|
url: `/pages/index/index`, |
|
|
|
|
|
}); |
|
|
|
|
|
}, |
|
|
// 查看详情 |
|
|
// 查看详情 |
|
|
handleItemClaick(_item, _row) { |
|
|
handleItemClaick(_item, _row) { |
|
|
// enable false 不可查看详情 |
|
|
// enable false 不可查看详情 |
|
@ -65,6 +79,10 @@ |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
<style lang="scss" scoped> |
|
|
|
|
|
.view-box{ |
|
|
|
|
|
margin-top:50px ; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
.view-none{ |
|
|
.view-none{ |
|
|
height: 100%; |
|
|
height: 100%; |
|
|
display: flex; |
|
|
display: flex; |
|
@ -77,8 +95,11 @@ |
|
|
margin-bottom: 16px; |
|
|
margin-bottom: 16px; |
|
|
|
|
|
|
|
|
.view-li { |
|
|
.view-li { |
|
|
font-size: 18px; |
|
|
span{ |
|
|
line-height: 26px; |
|
|
font-size: 20px; |
|
|
|
|
|
line-height: 40px; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -86,7 +107,7 @@ |
|
|
display: inline-block; |
|
|
display: inline-block; |
|
|
border: 1px solid #000; |
|
|
border: 1px solid #000; |
|
|
padding: 0 14px; |
|
|
padding: 0 14px; |
|
|
margin-bottom: 16px; |
|
|
margin-bottom: 30px; |
|
|
line-height: 50px; |
|
|
line-height: 50px; |
|
|
border-radius: 6px; |
|
|
border-radius: 6px; |
|
|
font-size: 20px; |
|
|
font-size: 20px; |
|
@ -95,8 +116,9 @@ |
|
|
|
|
|
|
|
|
.box { |
|
|
.box { |
|
|
height: 100vh; |
|
|
height: 100vh; |
|
|
|
|
|
background-size: cover; |
|
|
box-sizing: border-box; |
|
|
box-sizing: border-box; |
|
|
padding: 20px; |
|
|
padding: 20px 100px; |
|
|
display: flex; |
|
|
display: flex; |
|
|
flex-direction: column; |
|
|
flex-direction: column; |
|
|
|
|
|
|
|
|