mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-uniapp.git
synced 2026-08-07 03:14:59 +08:00
- 在入口文件中引入uview-plus的配置,优化字体加载逻辑 - 移除manifest.json中不必要的权限描述 - 更新package.json和package-lock.json,添加开发依赖 - 调整多个组件的样式和结构,提升用户体验 - 修复部分组件的逻辑和样式问题,确保兼容性
38 lines
979 B
Vue
38 lines
979 B
Vue
<template>
|
|
<div class="layout">
|
|
<div class="join-list">
|
|
<div class="join-title">
|
|
<div class="join-title-name">{{ res.list[0].title }}</div>
|
|
<div class="join-title-more">更多</div>
|
|
</div>
|
|
<div class="join-box">
|
|
<div class="join-item" v-for="item in 4" :key="item">
|
|
<div class="item-img-box">
|
|
<img
|
|
class="item-img"
|
|
src="https://picsum.photos/id/268/200/200"
|
|
alt
|
|
/>
|
|
</div>
|
|
<div class="item-price">
|
|
<span class="price-text">¥120.00</span>
|
|
</div>
|
|
<div class="item-line-through">
|
|
<span class="price-text">¥190.00</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
// TODO 后续版本开发此功能 尽情期待
|
|
export default {
|
|
props: ["res"],
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import "./tpl.scss";
|
|
@import './advertising.scss';
|
|
|
|
</style> |