Files
2026-06-29 10:54:33 +08:00

43 lines
1.0 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view class="container">
<view class="card block">
<view class="t">我的肤质档案</view>
<view class="muted p">肤质敏感偏干</view>
<view class="muted p">关注补水修护减少泛红</view>
<view class="muted p">过敏史示例</view>
<view class="muted p">备注本页为原型演示商用版可由门店持续更新</view>
</view>
<view class="card block">
<view class="t">建议</view>
<view class="muted p">优先选择补水修护舒缓敏感类项目</view>
<view class="muted p">避免爆痘炎症期的强刺激清洁项目</view>
</view>
<AiFloat />
</view>
</template>
<script>
import AiFloat from '@/components/AiFloat.vue'
export default {
components: { AiFloat }
}
</script>
<style lang="scss" scoped>
.block {
padding: 22rpx;
margin-bottom: 18rpx;
}
.t {
font-size: 32rpx;
font-weight: 950;
}
.p {
margin-top: 14rpx;
font-size: 26rpx;
line-height: 1.7;
}
</style>