今天看啥  ›  专栏  ›  一百个Chocolate

2020 Vue 基于Element-UI开发 常用模板使用 【整理】

一百个Chocolate  · CSDN  ·  · 2020-01-22 16:15

文章目录

1、引言

最近做Vue项目时,发现很多地方都是相同的,所以可以做成一个简单模板,供自己用,具体界面如下,然后分模块展示代码:
在这里插入图片描述
在这里插入图片描述

主界面:

<!--  -->
<template>
    <div>
    <!--面包屑导航区-->
    <el-breadcrumb separator="/">
        <el-breadcrumb-item :to="{ path: '/home' }">首页</el-breadcrumb-item>
        <el-breadcrumb-item>商品管理</el-breadcrumb-item>
        <el-breadcrumb-item>商品列表</el-breadcrumb-item>
    </el-breadcrumb>
    <!--卡片视图区域-->
    <el-card >
        <el-row :gutter="20">
            <el-col :span="8">
                <el-input placeholder="请输入内容" v-model="queryInfo.query" clearable @clear="getGoodsList">
                <el-button slot="append" icon="el-icon-search" @click="getGoodsList"></el-button>
                </el-input>
            </el-col>
            <el-col :span="4">
                <el-button type="primary" @click="goAddpage">添加商品</el-button>
            </el-col>
        </el-row>
        <!-- table表格区域 -->
        <el-table :data="goodsList" border stripe>
            <el-table-column type="index" label="#"></el-table-column>
            <el-table-column  label="商品名称" prop="goods_name"></el-table-column>
            <el-table-column  label="商品价格(元)" prop="goods_price" width="95px"></el-table-column>
            <el-table-column  label="商品重量" prop="goods_weight" width="70px"></el-table-column >
            <el-table-column  label="创建时间" prop="add_time" width="150px">
                <template slot-scope="scope">
                        {{scope.row.add_time | dateFormat}}
                </template>
            </el-table-column>
            <el-table-column  label="操作" width="130px">
                <template slot-scope="scope">
                    <el-button type="primary" icon="el-icon-edit" size="mini"></el-button>
                    <el-button type="danger" icon="el-icon-delete" size="mini" @click="removeById(scope.row.goods_id)"></el-button>
                </template>
            </el-table-column>
        </el-table>
        <!-- 分页区域 -->
        <el-pagination
            @size-change="handleSizeChange"
            @current-change="handleCurrentChange"
            :current-page="queryInfo.pagenum"
            :page-sizes="[5, 10, 15, 20]"
            :page-size="queryInfo.pagesize"
            layout="total, sizes, prev, pager, next, jumper"
            :total="total" background>
        </el-pagination>
    </el-card>
    </div>
</template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52

处理区域:

<script>
export default {
    data () {
        return {
            //查询参数对象
            queryInfo:{
                query: '',
                pagenum: 1,
                pagesize: 10
            },
            // 商品列表
            goodsList: [],
            // 总数据条数
            total: 0
        }
    },

    created(){
        this.getGoodsList()
    },
    methods: {
        // 根据分页获取对应的商品列表
        async getGoodsList(){
            const {data:res} = await this.$http.get('goods',{params:this.queryInfo})
            if(res.meta.status !== 200) return this.$message.error('获取商品列表失败!')
            //console.log(res.data)
            this.goodsList = res.data.goods
            this.total = res.data.total
            //return this.$message.success('获取商品列表成功!')
        },
        // 监听当前页数变化的事件
        handleSizeChange(newSize){
            this.queryInfo.pagesize = newSize
            this.getGoodsList()
        },
        // 监听当前页码变化的事件
        handleCurrentChange(newPage){
            this.queryInfo.pagenum = newPage
            this.getGoodsList()
        },
        // 根据id删除对应的商品
        async removeById(id){
            const confirmResult = await this.$confirm('此操作将永久删除该商品,是否继续?','提示',{
                confirmButtonText: '确定',
                cancelButtonText: '取消',
                type: 'warning'
            }).catch(err => err)
            // 用户取消了删除操作
            if(confirmResult !== 'confirm') return this.$message.info('已取消删除!')
            // 删除的业务逻辑
            const {data:res} = await this.$http.delete('goods/'+id)
            if(res.meta.status !== 200) return this.$message.error('删除商品失败!')
            // 删除成功就关闭对话框并重新刷新列表数据
            this.$message.success('删除商品成功!')
            this.getGoodsList()
        },
        //添加商品的编程式导航
        goAddpage(){
            this.$router.push('goods/add')
        }
    },
}

</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64

在这里插入图片描述

结束语

Vue全家桶开发电商管理系统码云地址,欢迎一起来学习~

https://gitee.com/Chocolate666/vue_shop


最后,看完本篇博客后,觉得挺有帮助的话,可以继续查看专栏其它内容嗷,一起来学习Vue吧~
在这里插入图片描述

点击进入Vue❤学习专栏~

学如逆水行舟,不进则退
  • 1



原文地址:访问原文地址
快照地址: 访问文章快照