979d30be by 田浩浩

111

1 parent e7367f21
...@@ -6,6 +6,16 @@ class data { ...@@ -6,6 +6,16 @@ class data {
6 columns () { 6 columns () {
7 return [ 7 return [
8 { 8 {
9 prop: "state",
10 label: "状态",
11 width: '100',
12 },
13 {
14 prop: "UPLOADTIME",
15 label: "汇交日期",
16 width: '150',
17 },
18 {
9 prop: "AREANAME", 19 prop: "AREANAME",
10 label: "区域名称", 20 label: "区域名称",
11 }, 21 },
...@@ -13,12 +23,7 @@ class data { ...@@ -13,12 +23,7 @@ class data {
13 prop: "ACCESSDATE", 23 prop: "ACCESSDATE",
14 label: "日期", 24 label: "日期",
15 width: '150', 25 width: '150',
16 }, 26 },
17 {
18 prop: "UPLOADTIME",
19 label: "汇交日期",
20 width: '150',
21 },
22 { 27 {
23 prop: "type", 28 prop: "type",
24 label: "类别", 29 label: "类别",
...@@ -47,9 +52,9 @@ class data { ...@@ -47,9 +52,9 @@ class data {
47 width: '120', 52 width: '120',
48 render: (h, scope) => { 53 render: (h, scope) => {
49 return ( 54 return (
50 <div class={'difference'}> 55 <div >
51 <p>{scope.row.BUSINESSTYPECOUNT}</p> 56 <p>{scope.row.registerBusinesstypecount}</p>
52 <p>{''}</p> 57 <p>{scope.row.accessBusinesstypecount}</p>
53 </div> 58 </div>
54 ) 59 )
55 }, 60 },
......