44aa124fe1cf4be8db6ec22a7c4b83be64fe2931.svn-base 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!-- -->
  2. <template>
  3. <div style="width:100%;">
  4. <el-row style="text-align:center;">
  5. <el-col :span="1">
  6. <el-button type="text" icon="el-icon-back" @click="goBack">后退</el-button>
  7. </el-col>
  8. <el-col :span="22">
  9. <h5 style="padding: 5px 0;">{{meetingInfoRow.title}}</h5>
  10. </el-col>
  11. <el-col :span="1">
  12. </el-col>
  13. </el-row>
  14. <el-row>
  15. <el-col :span="9">
  16. <agendaAndParticipants
  17. :meetingInfoRow="meetingInfoRow"
  18. ></agendaAndParticipants>
  19. </el-col>
  20. <el-col :span="15">
  21. <el-row>
  22. <ConferenceInformation
  23. :meetingInfoRow="meetingInfoRow"
  24. ></ConferenceInformation>
  25. </el-row>
  26. <el-row>
  27. <Feedback
  28. :meetingInfoRow="meetingInfoRow"
  29. :isManage="false"
  30. ></Feedback>
  31. </el-row>
  32. </el-col>
  33. </el-row>
  34. </div>
  35. </template>
  36. <script>
  37. //这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
  38. //例如:import 《组件名称》 from '《组件路径》';
  39. import agendaAndParticipants from './agendaAndParticipants'
  40. import ConferenceInformation from './ConferenceInformation'
  41. import Feedback from './Feedback'
  42. export default {
  43. //import引入的组件需要注入到对象中才能使用
  44. components: {
  45. agendaAndParticipants,//左侧议程与参会人员
  46. ConferenceInformation,//右侧会议资料
  47. Feedback,//右侧会议反馈
  48. },
  49. props:['meetingInfoRow'],
  50. data() {
  51. //这里存放数据
  52. return {
  53. meetingName:'小水库督查培训会议 ',
  54. };
  55. },
  56. //监听属性 类似于data概念
  57. computed: {},
  58. //监控data中的数据变化
  59. watch: {},
  60. //方法集合
  61. methods: {
  62. handleSizeChange(val) {
  63. console.log(`每页 ${val} 条`);
  64. },
  65. handleCurrentChange(val) {
  66. console.log(`当前页: ${val}`);
  67. },
  68. goBack(){
  69. this.$emit('geBack',true)
  70. }
  71. },
  72. //生命周期 - 创建完成(可以访问当前this实例)
  73. created() {
  74. },
  75. //生命周期 - 挂载完成(可以访问DOM元素)
  76. mounted() {
  77. },
  78. beforeCreate() {}, //生命周期 - 创建之前
  79. beforeMount() {}, //生命周期 - 挂载之前
  80. beforeUpdate() {}, //生命周期 - 更新之前
  81. updated() {}, //生命周期 - 更新之后
  82. beforeDestroy() {}, //生命周期 - 销毁之前
  83. destroyed() {}, //生命周期 - 销毁完成
  84. activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
  85. }
  86. </script>
  87. <style scoped>
  88. </style>