|
@@ -1,20 +1,20 @@
|
|
|
import { ref } from 'vue';
|
|
|
//数据录入
|
|
|
export const dayColumns = ref([
|
|
|
- {field: 'platformNumber', title: '平台编号', align: 'center'},
|
|
|
- {field: 'platformName', title: '平台名称', align: 'center'},
|
|
|
- {field: 'country', title: '国家', align: 'center'},
|
|
|
- {field: 'brandName', title: '品牌', align: 'center'},
|
|
|
- {field: 'user_name', title: '运营', align: 'center'},
|
|
|
- {field: 'currencyCode', title: '回款币种', align: 'center'},
|
|
|
+ { field: 'platformNumber', title: '平台编号', align: 'center', width: 90, },
|
|
|
+ { field: 'platformName', title: '平台名称', align: 'center', width: 142, },
|
|
|
+ { field: 'country', title: '国家', align: 'center', width: 90, },
|
|
|
+ { field: 'brandName', title: '品牌', align: 'center', width: 90, },
|
|
|
+ { field: 'user_name', title: '运营', align: 'center', width: 100 },
|
|
|
+ { field: 'currencyCode', title: '回款币种', align: 'center', width: 100 },
|
|
|
{
|
|
|
title: '销售额', align: 'center', children: [
|
|
|
- {field: 'sales', title: '销售额',},
|
|
|
+ { field: 'sales', title: '销售额', align: 'center', minWidth: 120 },
|
|
|
{
|
|
|
field: 'sales_original',
|
|
|
title: '销售额(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'sales_original_edit'},
|
|
|
+ slots: { edit: 'sales_original_edit' },
|
|
|
width: 123,
|
|
|
align: 'center'
|
|
|
},
|
|
@@ -22,12 +22,12 @@ export const dayColumns = ref([
|
|
|
},
|
|
|
{
|
|
|
title: '广告销售额', align: 'center', children: [
|
|
|
- {field: 'ad_sales', title: '广告销售额', align: 'center'},
|
|
|
+ { field: 'ad_sales', title: '广告销售额', align: 'center', minWidth: 120 },
|
|
|
{
|
|
|
field: 'ad_sales_original',
|
|
|
title: '广告销售额(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'ad_sales_original_edit'},
|
|
|
+ slots: { edit: 'ad_sales_original_edit' },
|
|
|
width: 151,
|
|
|
align: 'center'
|
|
|
},
|
|
@@ -36,177 +36,222 @@ export const dayColumns = ref([
|
|
|
//{field: 'sales', title: '销售额', editRender: {}, slots: {edit: 'sales_edit', default: 'sales_default',header: 'sales_header'}},
|
|
|
{
|
|
|
title: '广告花费', align: 'center', children: [
|
|
|
- {field: 'ad_cost', title: '广告花费', align: 'center'},
|
|
|
+ { field: 'ad_cost', title: '广告花费', align: 'center', minWidth: 120 },
|
|
|
{
|
|
|
field: 'ad_cost_original',
|
|
|
title: '广告花费(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'ad_cost_original_edit'},
|
|
|
+ slots: { edit: 'ad_cost_original_edit' },
|
|
|
width: 138,
|
|
|
align: 'center'
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
- {title: '操作', width: 120, slots: {default: 'operate'}, align: 'center'},
|
|
|
+ { title: '操作', width: 120, slots: { default: 'operate' }, align: 'center' },
|
|
|
]);
|
|
|
|
|
|
export const weekColumns = ref([
|
|
|
- {field: 'platformNumber', title: '平台编号', fixed: 'left', width: 81,align: 'center'},
|
|
|
- {field: 'platformName', title: '平台名称', fixed: 'left', width: 142,align: 'center'},
|
|
|
- {field: 'country', title: '国家', fixed: 'left', width: 80,align: 'center'},
|
|
|
- {field: 'brandName', title: '品牌', fixed: 'left', width: 60},
|
|
|
- {field: 'user_name', title: '运营', fixed: 'left', width: 80,align: 'center'},
|
|
|
- {field: 'currencyCode', title: '回款币种', fixed: 'left', width: 80,align: 'center'},
|
|
|
+ { field: 'platformNumber', title: '平台编号', fixed: 'left', width: 81, align: 'center' },
|
|
|
+ { field: 'platformName', title: '平台名称', fixed: 'left', width: 142, align: 'center' },
|
|
|
+ { field: 'country', title: '国家', fixed: 'left', width: 80, align: 'center' },
|
|
|
+ { field: 'brandName', title: '品牌', fixed: 'left', width: 60 },
|
|
|
+ { field: 'user_name', title: '运营', fixed: 'left', width: 80, align: 'center' },
|
|
|
+ { field: 'currencyCode', title: '回款币种', fixed: 'left', width: 80, align: 'center' },
|
|
|
|
|
|
{
|
|
|
title: '销售额', align: 'center', children: [
|
|
|
- {field: 'sales', title: '销售额', width: 120},
|
|
|
+ { field: 'sales', title: '销售额', width: 120, align: 'center' },
|
|
|
{
|
|
|
field: 'sales_original',
|
|
|
title: '销售额(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'sales_original_edit'},
|
|
|
+ slots: { edit: 'sales_original_edit' },
|
|
|
width: 123,
|
|
|
+ align: 'center'
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
title: '广告销售额', align: 'center', children: [
|
|
|
- {field: 'ad_sales', title: '广告销售额', width: 120},
|
|
|
+ { field: 'ad_sales', title: '广告销售额', width: 120 },
|
|
|
{
|
|
|
field: 'ad_sales_original',
|
|
|
title: '广告销售额(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'ad_sales_original_edit'},
|
|
|
+ slots: { edit: 'ad_sales_original_edit' },
|
|
|
width: 151,
|
|
|
+ align: 'center'
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
title: '广告花费', align: 'center', children: [
|
|
|
- {field: 'ad_cost', title: '广告花费', width: 120},
|
|
|
+ { field: 'ad_cost', title: '广告花费', width: 120, align: 'center' },
|
|
|
{
|
|
|
field: 'ad_cost_original',
|
|
|
title: '广告花费(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'ad_cost_original_edit'},
|
|
|
+ slots: { edit: 'ad_cost_original_edit' },
|
|
|
width: 138,
|
|
|
+ align: 'center'
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
title: '当月累计销售额', align: 'center', children: [
|
|
|
- {field: 'total_sales_current_monthly', title: '当月累计销售额', width: 120},
|
|
|
+ { field: 'total_sales_current_monthly', title: '当月累计销售额', width: 120 },
|
|
|
{
|
|
|
field: 'total_sales_current_monthly_original',
|
|
|
title: '当月累计销售额(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'total_sales_current_monthly_edit'},
|
|
|
+ slots: { edit: 'total_sales_current_monthly_edit' },
|
|
|
width: 180,
|
|
|
+ align: 'center'
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
|
|
|
- {field: 'impression', title: '广告曝光', editRender: {}, slots: {edit: 'impression_edit'}, width: 120},
|
|
|
- {field: 'ad_click', title: '广告点击', editRender: {}, slots: {edit: 'ad_click_edit'}, width: 120},
|
|
|
- {field: 'ad_order', title: '广告订单', editRender: {}, slots: {edit: 'ad_order_edit'}, width: 120},
|
|
|
+ {
|
|
|
+ field: 'impression',
|
|
|
+ title: '广告曝光',
|
|
|
+ editRender: {},
|
|
|
+ slots: { edit: 'impression_edit' },
|
|
|
+ width: 100,
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'ad_click',
|
|
|
+ title: '广告点击',
|
|
|
+ editRender: {},
|
|
|
+ slots: { edit: 'ad_click_edit' },
|
|
|
+ width: 100,
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'ad_order',
|
|
|
+ title: '广告订单',
|
|
|
+ editRender: {},
|
|
|
+ slots: { edit: 'ad_order_edit' },
|
|
|
+ width: 95,
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
{
|
|
|
field: 'money_by_amazon',
|
|
|
title: 'Amazon回款金额',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'money_by_amazon_edit'},
|
|
|
- width: 134
|
|
|
+ slots: { edit: 'money_by_amazon_edit' },
|
|
|
+ width: 134, align: 'center'
|
|
|
},
|
|
|
- {field: 'currencyCodePlatform', title: '回款/余额币种', width: 115},
|
|
|
- {field: 'money_by_other', title: 'Other回款金额', editRender: {}, slots: {edit: 'money_by_other_edit'}, width: 134},
|
|
|
- {field: 'session', title: '流量', editRender: {}, slots: {edit: 'session_edit'}, width: 120},
|
|
|
- {field: 'order', title: '订单', editRender: {}, slots: {edit: 'order_edit'}, width: 120},
|
|
|
+ { field: 'currencyCodePlatform', title: '回款/余额币种', width: 115 ,align: 'center'},
|
|
|
+ {
|
|
|
+ field: 'money_by_other',
|
|
|
+ title: 'Other回款金额',
|
|
|
+ editRender: {},
|
|
|
+ slots: { edit: 'money_by_other_edit' },
|
|
|
+ width: 134, align: 'center'
|
|
|
+ },
|
|
|
+ { field: 'session', title: '流量', editRender: {}, slots: { edit: 'session_edit' }, width: 95, align: 'center' },
|
|
|
+ { field: 'order', title: '订单', editRender: {}, slots: { edit: 'order_edit' }, width: 95, align: 'center' },
|
|
|
{
|
|
|
field: 'availableSalesDay',
|
|
|
title: '当前存货可售天',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'availableSalesDay_edit'},
|
|
|
- width: 120
|
|
|
+ slots: { edit: 'availableSalesDay_edit'},
|
|
|
+ width: 120, align: 'center'
|
|
|
},
|
|
|
{
|
|
|
field: 'intransitInventory',
|
|
|
title: '当前在途库存',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'intransitInventory_edit'},
|
|
|
- width: 120
|
|
|
+ slots: { edit: 'intransitInventory_edit' },
|
|
|
+ width: 120, align: 'center'
|
|
|
},
|
|
|
{
|
|
|
field: 'overseasStorage',
|
|
|
title: '当前海外仓库存',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'overseasStorage_edit'},
|
|
|
- width: 120
|
|
|
+ slots: { edit: 'overseasStorage_edit' },
|
|
|
+ width: 120, align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ field: 'refundRate',
|
|
|
+ title: '最近90天平台退货率',
|
|
|
+ editRender: {},
|
|
|
+ slots: { edit: 'refundRate_edit' ,default: 'refundRate_default'},
|
|
|
+ width: 120,
|
|
|
+ align: 'center'
|
|
|
},
|
|
|
- {field: 'refundRate', title: '最近90天平台退货率', editRender: {}, slots: {edit: 'refundRate_edit'}, width: 120},
|
|
|
- {title: '操作', width: 120, slots: {default: 'operate'}, fixed: 'right'},
|
|
|
+ { title: '操作', width: 120, slots: { default: 'operate' }, fixed: 'right' },
|
|
|
]);
|
|
|
|
|
|
export const monthColumns = ref([
|
|
|
- {field: 'platformNumber', title: '平台编号', width: 90},
|
|
|
- {field: 'platformName', title: '平台名称', width: 90},
|
|
|
- {field: 'country', title: '国家', width: 90},
|
|
|
- {field: 'brandName', title: '品牌', width: 90},
|
|
|
- {field: 'user_name', title: '运营', width: 90},
|
|
|
- {field: 'currencyCode', title: '回款币种', width: 111},
|
|
|
+ { field: 'platformNumber', title: '平台编号', fixed: 'left', width: 81, align: 'center' },
|
|
|
+ { field: 'platformName', title: '平台名称', fixed: 'left', width: 142, align: 'center' },
|
|
|
+ { field: 'country', title: '国家', fixed: 'left', width: 80, align: 'center' },
|
|
|
+ { field: 'brandName', title: '品牌', fixed: 'left', width: 60 },
|
|
|
+ { field: 'user_name', title: '运营', fixed: 'left', width: 80, align: 'center' },
|
|
|
+ { field: 'currencyCode', title: '回款币种', fixed: 'left', width: 80, align: 'center' },
|
|
|
|
|
|
{
|
|
|
title: '销售额', align: 'center', children: [
|
|
|
- {field: 'sales', title: '销售额', width: 120},
|
|
|
+ { field: 'sales', title: '销售额', width: 120 },
|
|
|
{
|
|
|
field: 'sales_original',
|
|
|
title: '销售额(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'sales_original_edit'},
|
|
|
+ slots: { edit: 'sales_original_edit' },
|
|
|
width: 123,
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
title: '广告销售额', align: 'center', children: [
|
|
|
- {field: 'ad_sales', title: '广告销售额', width: 120},
|
|
|
+ { field: 'ad_sales', title: '广告销售额', width: 120 },
|
|
|
{
|
|
|
field: 'ad_sales_original',
|
|
|
title: '广告销售额(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'ad_sales_original_edit'},
|
|
|
+ slots: { edit: 'ad_sales_original_edit' },
|
|
|
width: 151,
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
{
|
|
|
title: '广告花费', align: 'center', children: [
|
|
|
- {field: 'ad_cost', title: '广告花费', width: 120},
|
|
|
+ { field: 'ad_cost', title: '广告花费', width: 120 },
|
|
|
{
|
|
|
field: 'ad_cost_original',
|
|
|
title: '广告花费(本币)',
|
|
|
editRender: {},
|
|
|
- slots: {edit: 'ad_cost_original_edit'},
|
|
|
+ slots: { edit: 'ad_cost_original_edit' },
|
|
|
width: 138,
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
|
|
|
- {field: 'impression', title: '广告曝光', editRender: {}, slots: {edit: 'impression_edit'}, width: 120},
|
|
|
- {field: 'ad_click', title: '广告点击', editRender: {}, slots: {edit: 'ad_click_edit'}, width: 120},
|
|
|
- {field: 'ad_order', title: '广告订单', editRender: {}, slots: {edit: 'ad_order_edit'}, width: 120},
|
|
|
- {title: '操作', width: 120, slots: {default: 'operate'}, fixed: 'right'},
|
|
|
+ { field: 'impression', title: '广告曝光', editRender: {}, slots: { edit: 'impression_edit' }, width: 120 },
|
|
|
+ { field: 'ad_click', title: '广告点击', editRender: {}, slots: { edit: 'ad_click_edit' }, width: 120 },
|
|
|
+ { field: 'ad_order', title: '广告订单', editRender: {}, slots: { edit: 'ad_order_edit' }, width: 120 },
|
|
|
+ { title: '操作', width: 120, slots: { default: 'operate' }, fixed: 'right' },
|
|
|
]);
|
|
|
|
|
|
export const universal = [
|
|
|
- {field: 'platformNumber', title: '平台编号', fixed: 'left',align: 'center', minWidth: 75, slots: {default: 'platformNumber_default'}},
|
|
|
+ {
|
|
|
+ field: 'platformNumber',
|
|
|
+ title: '平台编号',
|
|
|
+ fixed: 'left',
|
|
|
+ align: 'center',
|
|
|
+ minWidth: 75,
|
|
|
+ slots: { default: 'platformNumber_default' }
|
|
|
+ },
|
|
|
{
|
|
|
field: 'platformName',
|
|
|
title: '平台名称',
|
|
|
fixed: 'left',
|
|
|
minWidth: 93,
|
|
|
- slots: {default: 'platformName_default'},
|
|
|
+ slots: { default: 'platformName_default' },
|
|
|
align: 'center',
|
|
|
- titlePrefix: {icon: 'vxe-icon-goods-fill'},
|
|
|
+ titlePrefix: { icon: 'vxe-icon-goods-fill' },
|
|
|
},
|
|
|
{
|
|
|
field: 'user_name',
|
|
@@ -214,14 +259,14 @@ export const universal = [
|
|
|
fixed: 'left',
|
|
|
minWidth: 75,
|
|
|
align: 'center',
|
|
|
- titlePrefix: {icon: 'vxe-icon-user'}
|
|
|
+ titlePrefix: { icon: 'vxe-icon-user' }
|
|
|
},
|
|
|
{
|
|
|
field: 'country',
|
|
|
title: '国家',
|
|
|
fixed: 'left',
|
|
|
minWidth: 75,
|
|
|
- titlePrefix: {icon: 'vxe-icon-location'},
|
|
|
+ titlePrefix: { icon: 'vxe-icon-location' },
|
|
|
align: 'center'
|
|
|
},
|
|
|
{
|
|
@@ -230,7 +275,7 @@ export const universal = [
|
|
|
fixed: 'left',
|
|
|
minWidth: 75,
|
|
|
align: 'center',
|
|
|
- titlePrefix: {icon: 'vxe-icon-brand'},
|
|
|
+ titlePrefix: { icon: 'vxe-icon-brand' },
|
|
|
},
|
|
|
{
|
|
|
field: 'currencyCode',
|
|
@@ -238,7 +283,7 @@ export const universal = [
|
|
|
fixed: 'left',
|
|
|
minWidth: 75,
|
|
|
align: 'center',
|
|
|
- slots: {default: 'currencyCode_default'}
|
|
|
+ slots: { default: 'currencyCode_default' }
|
|
|
},
|
|
|
];
|
|
|
|