新增玩家手动充值全流程(收款方式配置、充值下单/审核、钱包上分), 支持邀请码注册、邀请历史与专属返水率;完善后台代理/玩家管理与响应式操作栏, 并补充前台注册、充值页及多语言错误码。 Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
432 B
Vue
25 lines
432 B
Vue
<script setup lang="ts">
|
|
withDefaults(
|
|
defineProps<{
|
|
columns?: 2 | 3 | 4;
|
|
}>(),
|
|
{ columns: 3 },
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<div class="admin-detail-grid" :style="{ '--detail-cols': columns }">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.admin-detail-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(var(--detail-cols, 3), minmax(0, 1fr));
|
|
column-gap: 18px;
|
|
row-gap: 8px;
|
|
align-items: start;
|
|
}
|
|
</style>
|