dev
parent
17fcc41a74
commit
3911642222
Binary file not shown.
@ -0,0 +1,79 @@
|
|||||||
|
/**
|
||||||
|
* 配置
|
||||||
|
* 表格列
|
||||||
|
*/
|
||||||
|
|
||||||
|
export const detailColumns = [
|
||||||
|
{
|
||||||
|
title: "商品",
|
||||||
|
dataIndex: "skuName",
|
||||||
|
width: "18%",
|
||||||
|
scopedSlots: { customRender: "skuName"}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "商品来源",
|
||||||
|
dataIndex: "kind",
|
||||||
|
width: "15%",
|
||||||
|
customRender:function(kind){
|
||||||
|
switch (kind) {
|
||||||
|
case 0:
|
||||||
|
return '未知'
|
||||||
|
case 1:
|
||||||
|
return '自营'
|
||||||
|
case 2:
|
||||||
|
return '其他'
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "商品单价",
|
||||||
|
dataIndex: "sellPrice",
|
||||||
|
width: "10%",
|
||||||
|
customRender:function(sellPrice){
|
||||||
|
return '¥'+sellPrice
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "数量",
|
||||||
|
dataIndex: "num",
|
||||||
|
width: "10%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "订单总金额",
|
||||||
|
width: "15%",
|
||||||
|
customRender:function(data){
|
||||||
|
return '¥'+data.sellPrice*data.num
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "实收款",
|
||||||
|
dataIndex: "payPrice",
|
||||||
|
width: "15%",
|
||||||
|
customRender:function(payPrice){
|
||||||
|
return '¥'+payPrice
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "售后状态",
|
||||||
|
dataIndex: "status",
|
||||||
|
width: "240",
|
||||||
|
fixed: 'right'
|
||||||
|
},
|
||||||
|
]
|
||||||
|
// 搜索项
|
||||||
|
export const searchForm = {
|
||||||
|
code: "",
|
||||||
|
jcookCode: '',
|
||||||
|
tradeStatus:undefined
|
||||||
|
}
|
||||||
|
// 分页
|
||||||
|
export const pagination = {
|
||||||
|
current: 1,
|
||||||
|
total: 0,
|
||||||
|
pageSize: 10,
|
||||||
|
showTotal: (total) => `共 ${total} 条`,
|
||||||
|
showSizeChanger: true,
|
||||||
|
showQuickJumper: true,
|
||||||
|
}
|
@ -0,0 +1,148 @@
|
|||||||
|
export const columns = [
|
||||||
|
{
|
||||||
|
title: "订单状态",
|
||||||
|
dataIndex: "status",
|
||||||
|
width: "8%",
|
||||||
|
customRender: function (status) {
|
||||||
|
switch (status) {
|
||||||
|
case 0: return '待付款'
|
||||||
|
case 1: return '待发货'
|
||||||
|
case 2: return '待收货'
|
||||||
|
case 3: return '交易完成'
|
||||||
|
default: break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "商品编号",
|
||||||
|
dataIndex: "code",
|
||||||
|
width: "10%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "商品",
|
||||||
|
dataIndex: "itemName",
|
||||||
|
width: "10%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "所属分类",
|
||||||
|
dataIndex: "type",
|
||||||
|
width: "7%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "商品单价",
|
||||||
|
dataIndex: "price",
|
||||||
|
width: "6%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "数量",
|
||||||
|
dataIndex: "number",
|
||||||
|
width: "6%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "商品总价",
|
||||||
|
dataIndex: "totalPrice",
|
||||||
|
width: "6%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "实收款",
|
||||||
|
dataIndex: "receive",
|
||||||
|
width: "6%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "配送",
|
||||||
|
dataIndex: "ship",
|
||||||
|
width: "6%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "买家/收货人",
|
||||||
|
dataIndex: "custom",
|
||||||
|
width: "10%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "下单时间",
|
||||||
|
dataIndex: "orderTime",
|
||||||
|
width: "10%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "操作",
|
||||||
|
dataIndex: "action",
|
||||||
|
key: "action",
|
||||||
|
width: "250",
|
||||||
|
fixed: "right",
|
||||||
|
scopedSlots: { customRender: "action" },
|
||||||
|
},
|
||||||
|
]
|
||||||
|
export const detailColumns = [
|
||||||
|
{
|
||||||
|
title: "商品",
|
||||||
|
dataIndex: "skuName",
|
||||||
|
width: "16%",
|
||||||
|
scopedSlots: { customRender: "skuName"}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "商品类别",
|
||||||
|
dataIndex: "kind",
|
||||||
|
width: "15%",
|
||||||
|
customRender:function(kind){
|
||||||
|
switch (kind) {
|
||||||
|
case 0:
|
||||||
|
return '未知'
|
||||||
|
case 1:
|
||||||
|
return '自营'
|
||||||
|
case 2:
|
||||||
|
return '其他'
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "商品单价",
|
||||||
|
dataIndex: "sellPrice",
|
||||||
|
width: "10%",
|
||||||
|
customRender:function(sellPrice){
|
||||||
|
return '¥'+sellPrice
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "数量",
|
||||||
|
dataIndex: "num",
|
||||||
|
width: "8%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "单位",
|
||||||
|
dataIndex: "unit",
|
||||||
|
width: "12%",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "总金额",
|
||||||
|
width: "12%",
|
||||||
|
customRender:function(data){
|
||||||
|
return '¥'+data.sellPrice*data.num
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "实收款",
|
||||||
|
dataIndex: "payPrice",
|
||||||
|
width: "15%",
|
||||||
|
customRender:function(payPrice){
|
||||||
|
return '¥'+payPrice
|
||||||
|
}
|
||||||
|
},
|
||||||
|
]
|
||||||
|
// 搜索项
|
||||||
|
export const searchForm = {
|
||||||
|
code: "",
|
||||||
|
jcookCode: '',
|
||||||
|
tradeStatus:undefined
|
||||||
|
}
|
||||||
|
// 分页
|
||||||
|
export const pagination = {
|
||||||
|
current: 1,
|
||||||
|
total: 0,
|
||||||
|
pageSize: 10,
|
||||||
|
showTotal: (total) => `共 ${total} 条`,
|
||||||
|
showSizeChanger: true,
|
||||||
|
showQuickJumper: true,
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
<router-view></router-view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in new issue