Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added New Page "a-little-tea" to the Project #16

Merged
merged 3 commits into from
Jul 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/images/a_liitle_tea.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/a_little_tea_sticker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icons/a_liitle_tea.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
104 changes: 104 additions & 0 deletions src/pages/tools/alittletea.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
import { QRCode } from "antd";
import dayjs from 'dayjs'
import HighText from "../../components/HighText";
import { useOutletContext } from "react-router-dom";
import { RefObject } from "react";
import BaseCard from "../../components/BaseCard";
export default function AlittleTea() {
const [highLight, ref]:[highLight: boolean, ref: RefObject<HTMLDivElement>] = useOutletContext();

return (
<div>
<BaseCard ref={ref}>
<div bg='white' className='w-70 z-0 relative px-6 py-4 rounded-5 ' >
{/* LOGO */}
<img src="/images/alittle-tea.png" alt="logo" absolute w-10 h-auto right-4 top-4 op80 />

{/* 基础信息区域 */}
<div text='xs' className='z-10'>
<HighText show={highLight} text='数量' eg='1/1' />
</div>

{/* 点单来源 */}
<div flex='~ items-center'>
<div mt-1 text='xl' style={{marginRight: '10px'}}>
<HighText show={highLight} text='点单来源' eg='饿了么' />
</div>
<div font='bold' mt-1 text='xl' >
<HighText show={highLight} text='编号' eg='B860' /></div>
</div>

{/* 杯子大小,冷热度,糖度什么的 */}
<div flex='~ items-center' className=''>
<div text='md'>
<HighText show={highLight} text='杯子大小' eg='大杯' />
<HighText show={highLight} text='冷热度' eg='少冰'/>
/
<HighText show={highLight} text='糖度' eg='三分糖' />
</div>
</div>

{/* 产品名称区域 */}
<div text='xl' font='bold' >
<HighText show={highLight} text='产品名称' eg='叙拉古人的愤怒' />
</div>

{/* 自定义区域 */}
<div flex='~ items-center' >
<div text='md'>
<HighText show={highLight} text='加料1' eg='仙草' />
<HighText show={highLight} text='加料2' eg='/改牛乳' />
<HighText show={highLight} text='加料3' eg='/冰糖' />
</div>
</div>

{/* 价格区域 */}
<div flex='~ items-center' className='mt-1'>
<div text='xl'>
<HighText show={highLight} text='价格' eg='12' />
</div>
</div>

{/* 时间区域 */}
<div text='sm'>
<HighText show={highLight} text='日期时间' eg={dayjs().format('YYYY-MM-DD HH:mm:ss')} />
</div>

{/* 店铺信息区域 */}
<div flex='~ items-center' className='mt-1'>
<div text='xs' style={{marginRight: '25px'}}>
<HighText show={highLight} text='店铺名称' eg='漕河泾印象城店' />
</div>
<div text='xs' style={{marginTop: '0.5px'}}>
<HighText show={highLight} text='店铺号码' eg='3284856' />
</div>
</div>

{/* 建议区域 */}
<div flex='~ items-center' className='mt-1 ' style={{fontSize: 14, fontWeight: 300, letterSpacing: '1px'}}>
建议1小时内饮用完毕,口感最佳
</div>

{/* 特别信息 */}
<div text='sm balck' font='bold' mt-2 tracking-widest style={{marginTop: '30px'}}>
<HighText show={highLight} text='特别信息' eg='入会享88折,趣开1点点订制专属您的饮品' />
</div>
<div mt-1 flex='~ justify-between'>
<div>


<div >
<img src="/images/a_little_tea_sticker.png" alt="logo" style={{marginLeft: '-5px', width: '130px', height: '55px'}} />
</div>

</div>
<QRCode value={'https://sticker.hsott.cn'} style={{marginTop: '-30px'}} bordered={false} className="-m-3 mt-[-10px] " size={100} color='black' type={'svg'} />
</div>
</div>
</BaseCard>
</div>
)
}
8 changes: 8 additions & 0 deletions src/utils/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ const list = {
tag: '热门',
tag_color: hot
},
{
name: ['一点点', '奶茶标签'],
logo: '/images/alittle-tea.png',
url: '/tools/alittletea',
color: ['#F1A050', '#F3AA3C'],
tag: '新上线',
tag_color: ['#dcfce7', '#16a34a']
},
{
name: ['人生四格', '2x2版 106mm*156mm(含3mm出血)'],
logo: '/images/icons/rssg-2.webp',
Expand Down
Loading