天波用户运营管理后台系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 line
845B

  1. <!--
  2. * @Date: 2022-08-08 09:28:25
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2022-08-08 16:07:48
  5. * @FilePath: \TelpoUserManageAdmin\src\views\crowd-funding-otrder-system\main\participants-manage\index.vue
  6. * @description: 参与人管理
  7. -->
  8. <template>
  9. <div class="app-container">
  10. <!-- 顶部内容 -->
  11. <div class="top-container">
  12. <TopMenu :buttonList="buttonList"/>
  13. </div>
  14. </div>
  15. </template>
  16. <script>
  17. import TopMenu from "@/components/TopMenu/index";
  18. export default {
  19. name: 'participants-manage',
  20. components: { TopMenu },
  21. data(){
  22. return {
  23. buttonList: [], // 头部按钮,例子: {name: '添加', type: 'primary', icon: 'el-icon-circle-plus', click: () => { this.AddDialog();}}
  24. }
  25. },
  26. mounted() {},
  27. created() {},
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style scoped lang="scss">
  33. </style>