vue基础购物车

简介: vue基础购物车

html:


<div id="box">
    <table border="1" cellspacing="0" cellpadding="20">
    <thead>
      <tr>
      <th>名称</th>
      <th>价格</th>
      <th>数量</th>
      <th>操作</th>
      </tr>
    </thead>
    <tbody id="tbody">
      <tr v-for="(item,index) in list" :key="item.id"
      :style="{'background-color':item.quantity>0?'#c4c4c4' : ''}">
      <td>{{item.name}}</td>
      <td>{{item.number}}</td>
      <td>
        <button @click="item.quantity--" v-show="item.quantity>0">-</button>
        <span>{{item.quantity}}</span>
        <button @click="item.quantity++">+</button>
      </td>
      <td>
        <button @click="edit(item,index)">编辑</button>
        <button @click="deletes(list,index)">删除</button>
        <!-- 删除头部,但只能删除头部 -->
      </td>
      </tr>
    </tbody>
    <tfoot>
      <tr>
      <th></th>
      <th>总价:¥{{all_price()}}</th>
      <th>总数:{{all_num()}}</th>
      <th></th>
      </tr>
    </tfoot>
    </table>
    <button @click="hi()">添加商品</button>
    <div v-show="add">
    <input type="text" v-model="product_name" placeholder="请输入商品名称">
    <input type="text" v-model.number="commodity_prices" placeholder="请输入商品价格">
    <input type="text" v-model.number="quantity_of_commodity" placeholder="请输入商品数量">
    <button @click="edit_save(list,product_name,commodity_prices,quantity_of_commodity)">确定</button>
    <button @click="hide()">取消</button>
    </div>
    <div v-show="add_s">
    <input type="text" v-model="edit_data.name" placeholder="请输入商品名称">
    <input type="text" v-model.number="edit_data.number" placeholder="请输入商品价格">
    <input type="text" v-model.number="edit_data.quantity" placeholder="请输入商品数量">
    <button @click="edit_savesss(item,index)">确定</button>
    <button @click="hidess()">取消</button>
    </div>
  </div>

vue:


<script>
    const {
    createApp,
    ref,
    reactive
    } = Vue;
    createApp({
    setup() {
      let add = ref(false)
      let add_all = ref(false)
      // 商品全部为false
      const list = ref([{
        id: 1,
        name: "衣服",
        quantity: 0,
        number: "120",
      },
      {
        id: 2,
        name: "鞋子",
        quantity: 0,
        number: "80",
      },
      {
        id: 3,
        name: "wa6子",
        quantity: 0,
        number: "860",
      },
      ])
      // 创建一个数组
      const edit_data = reactive({
      id: 1,
      name: "",
      quantity: 0,
      number: 0,
      })
      // 商品总数
      let all_num = () => {
      let quantity = 0;
      list.value.forEach(item => {
        quantity += item.quantity
      })
      return quantity;
      }
      // 定义下标
      const edit_index = ref('0')
      // 总价
      let all_price = () => {
      // console.log(JSON.parse(JSON.stringify(list.value)));
      // return JSON.parse(JSON.stringify(list.value)).reduce((a, b) => a + (b.quantity * b.number), 0);
      return list.value.reduce((a, b) => a + (b.quantity * b.number), 0);
      }
      // let all_price = () => {
      //  return list.value.reduce((a, b) =>a.quantity * a.number + b.quantity * b.number);
      // }
      // 点击添加商品显示输入框
      let commodities = () => {
      add.value = true;
      }
      // 点击添加商品
      const product_name = ref('')
      console.log(product_name);
      // 获取商品名称
      const commodity_prices = ref('')
      console.log(commodity_prices);
      // 获取商品价格
      const quantity_of_commodity = ref('')
      console.log(quantity_of_commodity);
      // 获取商品数量
      let edit = (item, index) => {
      add_all.value = true
      Object.assign(edit_data, item)
      // add.value = true;
      edit_index.value = index;
      }
      // 编辑确定
      let ensure = () => {
      list.value[edit_index.value] = edit_data;
      add_all.value = false;
      }
      // 编辑取消关闭
      let abolish = () => {
      add_all.value = false;
      }
      // 新增取消关闭
      let hide = () => {
      add.value = false
      console.log(add);
      }
      // 新增确认
      const edit_save = (list, product_name, commodity_prices, quantity_of_commodity) => {
      let ojj = {
        name: product_name,
        quantity: commodity_prices,
        number: quantity_of_commodity,
      }
      list.push(ojj)
      add.value = true;
      // counts()
      deletes()
      }
      // 删除
      function deletes(list, i) {
      list.splice(i, 1);
      }
      return {
      hide,
      product_name,
      commodity_prices,
      quantity_of_commodity,
      list,
      add,
      commodities,
      deletes,
      all_num,
      all_price,
      edit,
      edit_data,
      edit_index,
      edit_save,
      add_all,
      ensure,
      abolish
      }
    }
    }).mount('#box')
  </script>


相关文章
|
25天前
|
JavaScript API 开发者
Vue是如何进行组件化的
Vue是如何进行组件化的
|
27天前
|
JavaScript 前端开发 开发者
vue 数据驱动视图
总之,Vue 数据驱动视图是一种先进的理念和技术,它为前端开发带来了巨大的便利和优势。通过理解和应用这一特性,开发者能够构建出更加动态、高效、用户体验良好的前端应用。在不断发展的前端领域中,数据驱动视图将继续发挥重要作用,推动着应用界面的不断创新和进化。
|
1天前
|
JavaScript 关系型数据库 MySQL
基于VUE的校园二手交易平台系统设计与实现毕业设计论文模板
基于Vue的校园二手交易平台是一款专为校园用户设计的在线交易系统,提供简洁高效、安全可靠的二手商品买卖环境。平台利用Vue框架的响应式数据绑定和组件化特性,实现用户友好的界面,方便商品浏览、发布与管理。该系统采用Node.js、MySQL及B/S架构,确保稳定性和多功能模块设计,涵盖管理员和用户功能模块,促进物品循环使用,降低开销,提升环保意识,助力绿色校园文化建设。
|
28天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱前端的大一学生,专注于JavaScript与Vue,正向全栈进发。博客分享Vue学习心得、命令式与声明式编程对比、列表展示及计数器案例等。关注我,持续更新中!🎉🎉🎉
32 1
vue学习第一章
|
28天前
|
JavaScript 前端开发 索引
vue学习第三章
欢迎来到瑞雨溪的博客,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中的v-bind指令,包括基本使用、动态绑定class及style等,希望能为你的前端学习之路提供帮助。持续关注,更多精彩内容即将呈现!🎉🎉🎉
26 1
vue学习第三章
|
28天前
|
缓存 JavaScript 前端开发
vue学习第四章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中计算属性的基本与复杂使用、setter/getter、与methods的对比及与侦听器的总结。如果你觉得有用,请关注我,将持续更新更多优质内容!🎉🎉🎉
35 1
vue学习第四章
|
25天前
|
JavaScript 前端开发 开发者
Vue是如何劫持响应式对象的
Vue是如何劫持响应式对象的
22 1
|
25天前
|
JavaScript 前端开发 API
介绍一下Vue中的响应式原理
介绍一下Vue中的响应式原理
27 1
|
25天前
|
JavaScript 前端开发 开发者
Vue是如何进行组件化的
Vue是如何进行组件化的
|
25天前
|
存储 JavaScript 前端开发
介绍一下Vue的核心功能
介绍一下Vue的核心功能