Merge remote-tracking branch 'origin/release/2.0' into release/2.0
Showing
1 changed file
with
18 additions
and
3 deletions
@@ -6,6 +6,10 @@ | @@ -6,6 +6,10 @@ | ||
6 | 6 | ||
7 | import timeFormat from 'filters/time-format'; | 7 | import timeFormat from 'filters/time-format'; |
8 | 8 | ||
9 | +const statusMap = { | ||
10 | + 10: 'todo' | ||
11 | +}; | ||
12 | + | ||
9 | export default function() { | 13 | export default function() { |
10 | return { | 14 | return { |
11 | filters: { | 15 | filters: { |
@@ -84,7 +88,12 @@ export default function() { | @@ -84,7 +88,12 @@ export default function() { | ||
84 | }, | 88 | }, |
85 | { | 89 | { |
86 | title: '物流信息', | 90 | title: '物流信息', |
87 | - align: 'center' | 91 | + align: 'center', |
92 | + render() { | ||
93 | + return ( | ||
94 | + <span>-</span> | ||
95 | + ); | ||
96 | + } | ||
88 | }, | 97 | }, |
89 | { | 98 | { |
90 | title: '备注', | 99 | title: '备注', |
@@ -93,7 +102,12 @@ export default function() { | @@ -93,7 +102,12 @@ export default function() { | ||
93 | }, | 102 | }, |
94 | { | 103 | { |
95 | title: '审核状态', | 104 | title: '审核状态', |
96 | - align: 'center' | 105 | + align: 'center', |
106 | + render(h, params) { | ||
107 | + return ( | ||
108 | + <span>{statusMap[params.row.status]}</span> | ||
109 | + ); | ||
110 | + } | ||
97 | }, | 111 | }, |
98 | { | 112 | { |
99 | title: '请退/退库时间', | 113 | title: '请退/退库时间', |
@@ -106,7 +120,8 @@ export default function() { | @@ -106,7 +120,8 @@ export default function() { | ||
106 | }, | 120 | }, |
107 | { | 121 | { |
108 | title: '申请人', | 122 | title: '申请人', |
109 | - align: 'center' | 123 | + align: 'center', |
124 | + key: 'founderName' | ||
110 | }, | 125 | }, |
111 | { | 126 | { |
112 | title: '操作', | 127 | title: '操作', |
-
Please register or login to post a comment