vue(品牌管理)案例-结合_computed计算属性_watch深度侦听_moment第三方时间管理模块_bootstrap.css

使用vue-cli创建的vue框架,代码如下

App.vue

<template>
  <div id="app">
    <div class="container">
      <!-- 顶部框模块 -->
      <div class="form-group">
        <div class="input-group">
          <h4>品牌管理</h4>
        </div>
      </div>

      <!-- 数据表格 -->
      <table class="table table-bordered table-hover mt-2">
        <thead>
          <tr>
            <th>编号</th>
            <th>资产名称</th>
            <th>价格</th>
            <th>创建时间</th>
            <th>操作</th>
          </tr>
        </thead>
        <tbody>
          <tr v-for="obj in list" :key="obj.id">
            <td>{{ obj.id }}</td>
            <td>{{ obj.name }}</td>

            <!-- 如果价格超过100,就有red这个类 -->
            <td :class="{ red: obj.price >= 100 }">{{ obj.price }}</td>
            <td>{{ formatDate(obj.time) }}</td>
            <td><a href="#" @click="delbtn(obj.id)">删除</a></td>
          </tr>
          <tr style="background-color: #eee">
            <td>统计:</td>
            <td colspan="2">总价钱为: {{ allPrice }}</td>
            <td colspan="2">平均价: {{ svgPrice }}</td>
          </tr>
        </tbody>
        <!-- 
        <tfoot >
          <tr>
            <td colspan="5" style="text-align: center">暂无数据</td>
          </tr>
        </tfoot>
            -->
      </table>

      <!-- 添加资产 -->
      <form class="form-inline">
        <div class="form-group">
          <div class="input-group">
            <input
              type="text"
              class="form-control"
              placeholder="资产名称"
              v-model="name"
            />
          </div>
        </div>
        &nbsp;&nbsp;&nbsp;&nbsp;
        <div class="form-group">
          <div class="input-group">
            <input
              type="text"
              class="form-control"
              placeholder="价格"
              v-model.number="price"
            />
          </div>
        </div>
        &nbsp;&nbsp;&nbsp;&nbsp;
        <!-- 阻止表单提交 -->
        <button class="btn btn-primary" @click.prevent="addbtn">
          添加资产
        </button>
      </form>
    </div>
  </div>
</template>
<script>
import moment from "moment"; //引入时间格式化模块
export default {
  data() {
    return {
      name: "", // 名称
      price: 0, // 价格
      list: JSON.parse(localStorage.getItem("pList")) || [],
      // list: [
      //   { id: 100, name: "外套", price: 199, time: new Date("2010-08-12") },
      //   { id: 101, name: "裤子", price: 34, time: new Date("2013-09-01") },
      //   { id: 102, name: "鞋", price: 25.4, time: new Date("2018-11-22") },
      //   { id: 103, name: "头发", price: 19900, time: new Date("2020-12-12") },
      // ],
    };
  },
  methods: {
    addbtn() {
      //提示,空信息不能插入
      if (this.name === "" || this.price === 0) {
        alert("请输入信息");
        return;
      }
      //设置id 如果id值为0,从1开始
      let theId =
        this.list.length === 0 ? 1 : this.list[this.list.length - 1].id + 1;
      this.list.push({
        id: theId,
        name: this.name,
        price: this.price,
        time: new Date(),
      });
    },
    delbtn(id) {
      //findIndex获取下标
      let index = this.list.findIndex((obj) => obj.id === id);
      this.list.splice(index, 1);
    },
    formatDate(time) {
      return moment(time).format("YYYY-MM-DD");
    },
  },
  computed: {
    allPrice() {
      //总价
      return this.list.reduce((sum, obj) => {
        sum += obj.price;
        return sum;
      }, 0);
    },
    svgPrice() {
      //平均价
      //toFixed保留几位小数
      return (this.allPrice / this.list.length).toFixed(2);
    },
  },
  //深度侦听
  watch: {
    list: {
      handler() {
        // 2. 存入本地
        localStorage.setItem("pList", JSON.stringify(this.list));
      },
      deep: true,
    },
  },
};
</script>

<style >
.red {
  color: red;
}
</style>

main.js

import Vue from 'vue'
import App from './App.vue'
import "bootstrap/dist/css/bootstrap.css"
Vue.config.productionTip = false

new Vue({
  render: h => h(App),
}).$mount('#app')

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值