伙伴云客服论坛»论坛 S区 S客户管理 查看内容

0 评论

0 收藏

分享

Vue电商项目—订单管理—订单列表模块-10

Vue电商项目—订单管理订单列表模块-10

1.1 订单管理概述

订单管理模块用于维护商品的订单信息,
可以查看订单的商品信息、物流信息,
并且可以根据实际的运营情况对订单做适当的调整。
Vue电商项目—订单管理—订单列表模块-10-1.jpg


1.2 订单列表

1. 订单列表展示

 订单数据加载
 订单列表规划
  1. // 订单恳求参数
  2. queryInfo:{
  3.     query:'',
  4.     pagenum:1,
  5.     pagesize:10}
复制代码
  1. // 获取订单列表数据asyncgetOrderList(){// 发送恳求const{data: res}=awaitthis.$http.get('orders',{params:this.queryInfo});if(res.meta.status !==200){returnthis.$message.error('获取订单数据失败!');}this.$message.success('获取订单数据胜利!');this.orderList = res.data.goods;this.total = res.data.total;
  2.             console.log(res);}
复制代码
2. 查看订单地址信息

1. 省市区三级联动效果

Vue电商项目—订单管理—订单列表模块-10-2.jpg

  1. // 导入省市区联动数据import cityData from'./citydata.js'
复制代码
  1. // 省市区联动数据
  2. cityData
复制代码
  1. <el-form-item label="省市区/县" prop='address1'><!-- 级联选择器 --><el-cascader :options="cityData" v-model="editAddressForm.address1"></el-cascader></el-form-item>
复制代码
Vue电商项目—订单管理—订单列表模块-10-3.jpg


3. 查看订单物流信息

注意:由于给定的测试接口不能使用了,就模仿了个 Data数据
Vue电商项目—订单管理—订单列表模块-10-4.jpg

  1. // 物流数据
  2. logisticsList:[{"time":"2018-05-10 09:39:00","ftime":"2018-05-10 09:39:00","context":"已签收,感激使用顺丰,期待再次为您效劳","location":""},{"time":"2018-05-10 08:23:00","ftime":"2018-05-10 08:23:00","context":"[北京市]北京海淀育新小区营业点派件员 顺丰速运 95338正在为您派件","location":""},{"time":"2018-05-10 07:32:00","ftime":"2018-05-10 07:32:00","context":"快件到达 [北京海淀育新小区营业点]","location":""},{"time":"2018-05-10 02:03:00","ftime":"2018-05-10 02:03:00","context":"快件在[北京顺义集散中心]已装车,准备发往 [北京海淀育新小区营业点]","location":""},{"time":"2018-05-09 23:05:00","ftime":"2018-05-09 23:05:00","context":"快件到达 [北京顺义集散中心]","location":""},{"time":"2018-05-09 21:21:00","ftime":"2018-05-09 21:21:00","context":"快件在[北京宝胜营业点]已装车,准备发往 [北京顺义集散中心]","location":""},{"time":"2018-05-09 13:07:00","ftime":"2018-05-09 13:07:00","context":"顺丰速运 已收取快件","location":""},{"time":"2018-05-09 12:25:03","ftime":"2018-05-09 12:25:03","context":"卖家发货","location":""},{"time":"2018-05-09 12:22:24","ftime":"2018-05-09 12:22:24","context":"您的订单将由HLA(北京海淀区清河中街店)门店布置发货。","location":""},{"time":"2018-05-08 21:36:04","ftime":"2018-05-08 21:36:04","context":"商品已经下单","location":""}]
复制代码
Timeline 时间线组件,在 2.6.0,三月份才有
Vue电商项目—订单管理—订单列表模块-10-5.jpg


而目前装置的 vue-cli-plugin-element 插件,最后一次更新在 二月份
Vue电商项目—订单管理—订单列表模块-10-6.jpg


引入文件
Vue电商项目—订单管理—订单列表模块-10-7.jpg


在 Element.js,注册下就好了
当前使用的版本是 2.6.3
  1. <!-- 物流进度对话框 --><el-dialog
  2.             title="物流进度":visible.sync="ProgresDialogVisible"
  3.             width="50%"><!-- 物流信息展示区域 --><el-timeline :reverse="reverse"><!-- timestamp 时间戳 string --><el-timeline-item
  4.                 v-for="(activity, index) in logisticsList":key="index":timestamp="activity.time">{{activity.context}}</el-timeline-item></el-timeline></el-dialog>
复制代码
Vue电商项目—订单管理—订单列表模块-10-8.jpg


该模块完好代码
  1. <template><div><!-- 面包屑导航区域 --><el-breadcrumb separator-class="el-icon-arrow-right"><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><el-col :span="8"><el-input placeholder="请输入内容" v-model="queryInfo.query" clearable @clear='getOrderList'><el-button slot="append" icon="el-icon-search" @click="getOrderList"></el-button></el-input></el-col></el-row><!-- 表格显示区域 --><el-table :data="orderList" border stripe><el-table-column type='index' label='#'></el-table-column><el-table-column label='订单编号' prop='order_number'></el-table-column><el-table-column label='订单价格' prop='order_price'></el-table-column><el-table-column label='是否付款' prop='pay_status'><!-- 作用域插槽 --><template slot-scope="scope"><el-tag type="success" v-if="scope.row.pay_status === '1' ">已付款</el-tag><el-tag type="danger" v-else>未付款</el-tag></template></el-table-column><el-table-column label='是否发货' prop='is_send'></el-table-column><el-table-column label='下单时间' prop='create_time'><!-- 作用域插槽 --><template slot-scope="scope">{{scope.row.create_time | dateFormat}}</template></el-table-column><el-table-column label='操作'><!-- 作用域插槽 --><template><el-button type="primary" icon="el-icon-edit" size="mini" @click="showDialogVisible"></el-button><el-button type="success" icon="el-icon-location" size="mini" @click="showProgressBox"></el-button></template></el-table-column></el-table><!-- 分页区域 --><el-pagination
  2.             @size-change="handleSizeChange"
  3.             @current-change="handleCurrentChange":current-page="queryInfo.pagenum":page-sizes="[3, 5, 10, 15]":page-size="queryInfo.pagesize"
  4.             layout="total, sizes, prev, pager, next, jumper":total="total"></el-pagination><!-- 修改地址对话框 --><el-dialog
  5.             title="修改地址":visible.sync="editDialogVisible"
  6.             width="50%"
  7.             @close='editDialogClosed'><!-- 表单区域 --><el-form :model="editAddressForm":rules="editAddressRules" ref="editAddressRef" label-width="100px"class="demo-ruleForm"><el-form-item label="省市区/县" prop='address1'><!-- 级联选择器 --><el-cascader
  8.                     :options="cityData"
  9.                     v-model="editAddressForm.address1"></el-cascader></el-form-item><el-form-item label="详细地址" prop='address2'><el-input v-model="editAddressForm.address2"></el-input></el-form-item></el-form><!-- 底部区域 --><span slot="footer"class="dialog-footer"><el-button @click="editDialogVisible = false">取 消</el-button><el-button type="primary" @click="editDialogVisible = false">确 定</el-button></span></el-dialog><!-- 物流进度对话框 --><el-dialog
  10.             title="物流进度":visible.sync="ProgresDialogVisible"
  11.             width="50%"><!-- 物流信息展示区域 --><el-timeline :reverse="reverse"><!-- timestamp 时间戳 string --><el-timeline-item
  12.                 v-for="(activity, index) in logisticsList":key="index":timestamp="activity.time">{{activity.context}}</el-timeline-item></el-timeline></el-dialog></el-card></div></template><script>// 导入省市区联动数据import cityData from'./citydata.js'exportdefault{data(){return{// 订单恳求参数
  13.             queryInfo:{
  14.                 query:'',
  15.                 pagenum:1,
  16.                 pagesize:10},// 存储订单列表数据
  17.             orderList:[],// 总数据条数
  18.             total:0,// 控制修改地址对话框的显示与隐藏
  19.             editDialogVisible:false,// 修改地址表单对象
  20.             editAddressForm:{
  21.                 address1:[],
  22.                 address2:''},// 修改地址表单对象验证规则
  23.             editAddressRules:{
  24.                 address1:[{required:true, message:'请选择省市区/县', trigger:'blur'}],
  25.                 address2:[{required:true, message:'请选择详细地址', trigger:'blur'}]},// 省市区联动数据
  26.             cityData,// 控制物流进度对话框显示与隐藏
  27.             ProgresDialogVisible:false,// 物流数据
  28.             logisticsList:[{"time":"2018-05-10 09:39:00","ftime":"2018-05-10 09:39:00","context":"已签收,感激使用顺丰,期待再次为您效劳","location":""},{"time":"2018-05-10 08:23:00","ftime":"2018-05-10 08:23:00","context":"[北京市]北京海淀育新小区营业点派件员 顺丰速运 95338正在为您派件","location":""},{"time":"2018-05-10 07:32:00","ftime":"2018-05-10 07:32:00","context":"快件到达 [北京海淀育新小区营业点]","location":""},{"time":"2018-05-10 02:03:00","ftime":"2018-05-10 02:03:00","context":"快件在[北京顺义集散中心]已装车,准备发往 [北京海淀育新小区营业点]","location":""},{"time":"2018-05-09 23:05:00","ftime":"2018-05-09 23:05:00","context":"快件到达 [北京顺义集散中心]","location":""},{"time":"2018-05-09 21:21:00","ftime":"2018-05-09 21:21:00","context":"快件在[北京宝胜营业点]已装车,准备发往 [北京顺义集散中心]","location":""},{"time":"2018-05-09 13:07:00","ftime":"2018-05-09 13:07:00","context":"顺丰速运 已收取快件","location":""},{"time":"2018-05-09 12:25:03","ftime":"2018-05-09 12:25:03","context":"卖家发货","location":""},{"time":"2018-05-09 12:22:24","ftime":"2018-05-09 12:22:24","context":"您的订单将由HLA(北京海淀区清河中街店)门店布置发货。","location":""},{"time":"2018-05-08 21:36:04","ftime":"2018-05-08 21:36:04","context":"商品已经下单","location":""}]}},created(){// 调用 获取订单列表数据函数this.getOrderList();},
  29.     methods:{// 获取订单列表数据asyncgetOrderList(){// 发送恳求const{data: res}=awaitthis.$http.get('orders',{params:this.queryInfo});if(res.meta.status !==200){returnthis.$message.error('获取订单数据失败!');}this.$message.success('获取订单数据胜利!');this.orderList = res.data.goods;this.total = res.data.total;
  30.             console.log(res);},// 分页条数改变事件handleSizeChange(newSize){this.queryInfo.pagesize = newSize;this.getOrderList();},// 当前页码改变事件handleCurrentChange(newNum){this.queryInfo.pagenum = newNum;this.getOrderList();},// 点击 修改,显示修改地址对话框showDialogVisible(){this.editDialogVisible =true;},// 修改地址对话框关闭事件editDialogClosed(){// 清空表单数据this.$refs.editAddressRef.resetFields();},// 点击 地址按钮,显示 物流进度对话框showProgressBox(){// 显示 物流进度对话框this.ProgresDialogVisible =true;}}}</script><style lang="less" scoped>.el-table {
  31.     margin:15px 0;}.el-cascader {
  32.     width:100%;}</style>
复制代码

回复

举报 使用道具

相关帖子
全部回复
暂无回帖,快来参与回复吧
本版积分规则 高级模式
B Color Image Link Quote Code Smilies

风过耳
注册会员
主题 9
回复 20
粉丝 0
|网站地图
快速回复 返回顶部 返回列表