用户列表

This commit is contained in:
仲么了
2024-01-19 15:24:21 +08:00
parent 489d4e2e53
commit f8d9dd4183
6 changed files with 199 additions and 34 deletions

View File

@@ -1,15 +1,14 @@
<template>
<div class='default-main'>
<TableHeader>
<template v-slot:operation>
<el-button :icon='Refresh' type='primary' @click='refresh'>刷新推荐码</el-button>
</template>
</TableHeader>
<Table ref='tableRef' />
<popupForm ref='popupRef'></popupForm>
<div class="default-main">
<div class="custom-table-header">
<div style="flex: 1; font-weight: 700">角色推荐码</div>
<el-button :icon="Refresh" type="primary" @click="refresh">刷新推荐码</el-button>
</div>
<Table ref="tableRef" />
<popupForm ref="popupRef"></popupForm>
</div>
</template>
<script setup lang='ts'>
<script setup lang="ts">
import { Refresh } from '@element-plus/icons-vue'
import { ref, onMounted, provide } from 'vue'
import TableStore from '@/utils/tableStore'