|
@@ -296,24 +296,24 @@ export const planColumns = 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: 'brandName', title: '品牌', fixed: 'left', width: 90 ,align: 'center'},
|
|
|
{ field: 'operater', title: '运营', fixed: 'left', width: 80, align: 'center' },
|
|
|
// { field: 'status', title: '状态', width: 80, formatter: ({ cellValue }) => cellValue === 1 ? '启用' : '禁用' },
|
|
|
// { field: 'line', title: '线', width: 80 },
|
|
|
// { field: 'ipaddress', title: 'IP 地址', width: 150 },
|
|
|
// { field: 'company', title: '公司', width: 200 },
|
|
|
// { field: 'platform', title: '平台', width: 100 },
|
|
|
- { field: '1月.planSales', title: '1月计划销售额', width: 120,editRender: {}, slots: { edit: 'january' }, align: 'center' },
|
|
|
- { field: '2月.planSales', title: '2月计划销售额', width: 120, editRender: {}, slots: { edit: 'february' }, align: 'center' },
|
|
|
- { field: '3月.planSales', title: '3月计划销售额', width: 120, editRender: {}, slots: { edit: 'march' }, align: 'center' },
|
|
|
- { field: '4月.planSales', title: '4月计划销售额', width: 120, editRender: {}, slots: { edit: 'april' }, align: 'center' },
|
|
|
- { field: '5月.planSales', title: '5月计划销售额', width: 120, editRender: {}, slots: { edit: 'may' }, align: 'center' },
|
|
|
- { field: '6月.planSales', title: '6月计划销售额', width: 120, editRender: {}, slots: { edit: 'june' }, align: 'center' },
|
|
|
- { field: '7月.planSales', title: '7月计划销售额', width: 120, editRender: {}, slots: { edit: 'july' }, align: 'center' },
|
|
|
- { field: '8月.planSales', title: '8月计划销售额', width: 120, editRender: {}, slots: { edit: 'august' }, align: 'center' },
|
|
|
- { field: '9月.planSales', title: '9月计划销售额', width: 120, editRender: {}, slots: { edit: 'september' }, align: 'center' },
|
|
|
- { field: '10月.planSales', title: '10月计划销售额', width: 120, editRender: {}, slots: { edit: 'october' }, align: 'center' },
|
|
|
- { field: '11月.planSales', title: '11月计划销售额', width: 120, editRender: {}, slots: { edit: 'november' }, align: 'center' },
|
|
|
- { field: '12月.planSales', title: '12月计划销售额', width: 120, editRender: {}, slots: { edit: 'december' }, align: 'center' },
|
|
|
+ { field: '1月', title: '1月计划销售额', width: 120,editRender: {}, slots: { edit: 'january' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--' },
|
|
|
+ { field: '2月', title: '2月计划销售额', width: 120, editRender: {}, slots: { edit: 'february' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '3月', title: '3月计划销售额', width: 120, editRender: {}, slots: { edit: 'march' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '4月', title: '4月计划销售额', width: 120, editRender: {}, slots: { edit: 'april' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '5月', title: '5月计划销售额', width: 120, editRender: {}, slots: { edit: 'may' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '6月', title: '6月计划销售额', width: 120, editRender: {}, slots: { edit: 'june' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '7月', title: '7月计划销售额', width: 120, editRender: {}, slots: { edit: 'july' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '8月', title: '8月计划销售额', width: 120, editRender: {}, slots: { edit: 'august' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '9月', title: '9月计划销售额', width: 120, editRender: {}, slots: { edit: 'september' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '10月', title: '10月计划销售额', width: 120, editRender: {}, slots: { edit: 'october' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '11月', title: '11月计划销售额', width: 120, editRender: {}, slots: { edit: 'november' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
+ { field: '12月', title: '12月计划销售额', width: 120, editRender: {}, slots: { edit: 'december' }, align: 'center' ,formatter: ({ cellValue }) => cellValue?.planSales || '--'},
|
|
|
{ title: '操作', width: 120, slots: { default: 'operate' }, align: 'center' , fixed: 'right'},
|
|
|
])
|