1 Star 0 Fork 0

houwanjie/day2作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
3.购物车.html 2.44 KB
一键复制 编辑 原始数据 按行查看 历史
houwanjie 提交于 2022-10-12 17:31 . 更新购物车加减功能
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/* 商品列表图片样式 */
.block {
width: 20%;
/* text-align: center; */
font-size:5px;
margin-bottom: 10px;
display: flex;
}
.block img {
width: 100%;
margin-bottom: 10px;
margin: 20px;
}
.dianpu .title{
font-size: 20px;
font-weight: bold;
width: 220px;
margin-top: 18px;
}
.dianpu .num{
margin-left:10px ;
}
.dianpu1 {
display: flex;
margin-top: 35px;
}
.dianpu1 div{
padding-right: 5px;
width:20px;
}
.dianpu1 .cond{
text-decoration: line-through;
}
.dianpu1 .jian{
width: 10px;
/* height: 10px; */
margin-left: 90px;
border: 1px solid blue;
border-radius: 50%;
text-align: center;
line-height: 10px;
padding-left: 5px;
}
.dianpu1 .jia{
margin-left: 20px;
width: 10px;
/* height: 10px; */
border: 1px solid blue;
border-radius: 50%;
text-align: center;
line-height: 10px;
padding-left: 5px;
}
.dianpu1 span{
display: inline-block;
margin-left: 20px;
}
</style>
</head>
<body>
<div id="app">
<!-- 商品列表图片 -->
<div class="block" v-for="(item,index) in arr2">
<img :src="item.pic" alt="">
<div class="name"> {{ item.name }} </div>
<!-- 店铺信息 -->
<div class="dianpu">
<div class="title">{{item.title}}</div>
<div class="dianpu1">
<div class="price">¥{{item.price}}</div>
<div class="cond">¥{{item.cond}}</div>
<div class="jian" @click="jian(item)">-</div>
<span>{{item.num}}</span>
<div class="jia" @click="jia(item)">+</div>
</div>
</div>
</div>
</body>
</html>
<script src="vue-2.5.21.js"></script>
<script src="3.购物车.js"></script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/houwanjie/day2-job.git
[email protected]:houwanjie/day2-job.git
houwanjie
day2-job
day2作业
master

搜索帮助