Showing
1 changed file
with
2 additions
and
2 deletions
@@ -70,12 +70,12 @@ export default { | @@ -70,12 +70,12 @@ export default { | ||
70 | align: 'center' | 70 | align: 'center' |
71 | }, { | 71 | }, { |
72 | title: 'skn', | 72 | title: 'skn', |
73 | - width: 100, | ||
74 | key: 'productSkn', | 73 | key: 'productSkn', |
75 | align: 'center' | 74 | align: 'center' |
76 | }, { | 75 | }, { |
77 | title: '商品图片', | 76 | title: '商品图片', |
78 | key: 'imageUrl', | 77 | key: 'imageUrl', |
78 | + align: 'center', | ||
79 | render: (h, params) => { | 79 | render: (h, params) => { |
80 | return h('img', { | 80 | return h('img', { |
81 | attrs: { | 81 | attrs: { |
@@ -86,7 +86,6 @@ export default { | @@ -86,7 +86,6 @@ export default { | ||
86 | } | 86 | } |
87 | }, { | 87 | }, { |
88 | title: '商品信息', | 88 | title: '商品信息', |
89 | - width: 200, | ||
90 | key: 'productInfo', | 89 | key: 'productInfo', |
91 | render: (h, params) => { | 90 | render: (h, params) => { |
92 | return h('div', [ | 91 | return h('div', [ |
@@ -151,6 +150,7 @@ export default { | @@ -151,6 +150,7 @@ export default { | ||
151 | } | 150 | } |
152 | }, { | 151 | }, { |
153 | title: '操作', | 152 | title: '操作', |
153 | + align: 'center', | ||
154 | render: (h, params) => { | 154 | render: (h, params) => { |
155 | return ( | 155 | return ( |
156 | <action-group> | 156 | <action-group> |
-
Please register or login to post a comment