chore: init saasshop repo + sql migrations runner + gitee go

This commit is contained in:
萝卜
2026-03-10 11:31:02 +00:00
commit 50f15cdea8
210 changed files with 29534 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>H5 商城首页 - SaaSShop</title>
<link rel="stylesheet" href="/css/public-pages.css">
</head>
<body class="h5-body">
<div class="h5-header">SaaSShop H5 商城首页</div>
<div class="h5-wrap">
<p>这是 H5 端模板入口,后续可扩展底部导航、个人中心、下单与支付流程。</p>
<p><a href="/">返回项目首页</a></p>
@foreach($products as $product)
<div class="h5-card">
<h3>{{ $product->title }}</h3>
<p>{{ $product->summary }}</p>
<p class="price-sm">¥{{ number_format($product->price, 2) }}</p>
</div>
@endforeach
</div>
</body>
</html>

View File

@@ -0,0 +1,26 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PC 商城首页 - SaaSShop</title>
<link rel="stylesheet" href="/css/public-pages.css">
</head>
<body class="pc-body">
<div class="pc-top"><strong>SaaSShop PC 端商城首页</strong></div>
<div class="pc-wrap">
<p>这是 PC 端模板入口,后续可扩展导航、分类、搜索、购物车与会员中心。</p>
<p><a href="/">返回项目首页</a></p>
<div class="pc-grid">
@foreach($products as $product)
<div class="shop-card">
<h3>{{ $product->title }}</h3>
<p>{{ $product->summary }}</p>
<p class="price">¥{{ number_format($product->price, 2) }}</p>
<p>SKU: {{ $product->sku }}</p>
</div>
@endforeach
</div>
</div>
</body>
</html>