|
|
@@ -25,6 +25,7 @@ const typeName = {
|
|
|
|
|
|
const colSet = {
|
|
|
[type.expenses]: [
|
|
|
+ { name: '合同类型', field: 'type', fixed: ['alias'], gd: true },
|
|
|
{ name: '累计应付', field: 'yf_price', fixed: ['alias'] },
|
|
|
{ name: '应付进度', field: 'stackedBar', fixed: ['alias'] },
|
|
|
{ name: '累计实付', field: 'sf_price', fixed: ['alias'] },
|
|
|
@@ -35,6 +36,7 @@ const colSet = {
|
|
|
{ name: '计算2', field: 'calc2', fixed: [] },
|
|
|
],
|
|
|
[type.income]: [
|
|
|
+ { name: '合同类型', field: 'type', fixed: ['alias'], gd: true },
|
|
|
{ name: '累计应回', field: 'yf_price', fixed: ['alias'] },
|
|
|
{ name: '应回进度', field: 'stackedBar', fixed: ['alias'] },
|
|
|
{ name: '累计实回', field: 'sf_price', fixed: ['alias'] },
|
|
|
@@ -48,6 +50,7 @@ const colSet = {
|
|
|
|
|
|
const defaultColSet = {
|
|
|
[type.expenses]: [
|
|
|
+ { field: 'type', show: 1, gd: true },
|
|
|
{ field: 'yf_price', show: 1 },
|
|
|
{ field: 'stackedBar', show: 1 },
|
|
|
{ field: 'sf_price', show: 0 },
|
|
|
@@ -58,6 +61,7 @@ const defaultColSet = {
|
|
|
{ field: 'calc2', show: 0, alias: '计算2' },
|
|
|
],
|
|
|
[type.income]: [
|
|
|
+ { field: 'type', show: 1, gd: true },
|
|
|
{ field: 'yf_price', show: 1 },
|
|
|
{ field: 'stackedBar', show: 1 },
|
|
|
{ field: 'sf_price', show: 0 },
|