Initial commit: One Pipe System

完整的管理系统,包含账户管理、卡片管理、套餐管理、财务管理等功能模块。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
sexygoat
2026-01-22 16:35:33 +08:00
commit 222e5bb11a
495 changed files with 145440 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
<template>
<ArtDataListCard
:maxCount="4"
:list="dataList"
title="最近活动"
subtitle="订单处理状态"
:showMoreButton="true"
@more="handleMore"
/>
</template>
<script setup lang="ts">
const dataList = [
{
title: '新订单 #38291',
status: '待处理',
time: '5分钟',
class: 'bg-primary',
icon: '&#xe6f2;'
},
{
title: '退款申请 #12845',
status: '处理中',
time: '10分钟',
class: 'bg-secondary',
icon: '&#xe806;'
},
{
title: '客户投诉处理',
status: '待处理',
time: '15分钟',
class: 'bg-warning',
icon: '&#xe6fb;'
},
{
title: '库存不足提醒',
status: '紧急',
time: '20分钟',
class: 'bg-danger',
icon: '&#xe813;'
},
{
title: '订单 #29384 已发货',
status: '已完成',
time: '20分钟',
class: 'bg-success',
icon: '&#xe70c;'
}
]
const handleMore = () => {}
</script>