|
|
@ -1,6 +1,7 @@ |
|
|
|
<template> |
|
|
|
<view class="box"> |
|
|
|
<image class="logo" src='../../imgs/logo.png' alt="" mode="widthFix" @click="handleLogo"></image> |
|
|
|
<image class="back" src='../../imgs/back.png' mode="widthFix" @click="handleBack"></image> |
|
|
|
<image class="logo" src='../../imgs/logo.png' alt="" mode="widthFix" ></image> |
|
|
|
<view class="box-cent"> |
|
|
|
<view class="box-cent1"> |
|
|
|
<view class="view-box"> |
|
|
@ -8,7 +9,7 @@ |
|
|
|
<span class="view-title"> {{listData.title}}</span> |
|
|
|
</view> |
|
|
|
<view class="view-ul"> |
|
|
|
<MeetingList :infos='listData.infos'></MeetingList> |
|
|
|
<MeetingList :detailsId='detailsId' :infos='listData.infos'></MeetingList> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
@ -47,14 +48,16 @@ |
|
|
|
listData: [], |
|
|
|
data: [], |
|
|
|
userName: uni.getStorageSync("userName"), |
|
|
|
show: false |
|
|
|
show: false, |
|
|
|
detailsId:'', |
|
|
|
}; |
|
|
|
}, |
|
|
|
|
|
|
|
created() { |
|
|
|
let routes = getCurrentPages(); // 获取当前打开过的页面路由数组 |
|
|
|
let curParam = routes[routes.length - 1].options; //获取路由参数 |
|
|
|
console.log('curParam', curParam) |
|
|
|
this.detailsId = curParam.id |
|
|
|
console.log('curParam', this.detailsId) |
|
|
|
this.getMeetingDetails(curParam.id) //获取会议列表 |
|
|
|
}, |
|
|
|
methods: { |
|
|
@ -66,13 +69,13 @@ |
|
|
|
}); |
|
|
|
}, |
|
|
|
// logo 回到首页 |
|
|
|
handleLogo() { |
|
|
|
// uni.navigateTo({ |
|
|
|
// url: `/pages/index/index`, |
|
|
|
// }); |
|
|
|
uni.navigateBack({ |
|
|
|
delta: 2 |
|
|
|
handleBack() { |
|
|
|
uni.navigateTo({ |
|
|
|
url: `/pages/index/index`, |
|
|
|
}); |
|
|
|
// uni.navigateBack({ |
|
|
|
// delta: 1 |
|
|
|
// }); |
|
|
|
}, |
|
|
|
// 查看详情 |
|
|
|
handleItemClaick(_item) { |
|
|
|