|
12345678910111213141516171819202122232425262728293031323334353637 |
- <!--
- * @Date: 2022-08-08 09:28:25
- * @LastEditors: JinxChen
- * @LastEditTime: 2022-08-08 16:07:48
- * @FilePath: \TelpoUserManageAdmin\src\views\crowd-funding-otrder-system\main\participants-manage\index.vue
- * @description: 参与人管理
- -->
- <template>
- <div class="app-container">
- <!-- 顶部内容 -->
- <div class="top-container">
- <TopMenu :buttonList="buttonList"/>
- </div>
- </div>
- </template>
-
- <script>
- import TopMenu from "@/components/TopMenu/index";
- export default {
- name: 'participants-manage',
- components: { TopMenu },
- data(){
- return {
- buttonList: [], // 头部按钮,例子: {name: '添加', type: 'primary', icon: 'el-icon-circle-plus', click: () => { this.AddDialog();}}
- }
- },
- mounted() {},
- created() {},
- methods: {
-
- }
- }
- </script>
-
- <style scoped lang="scss">
-
- </style>
|