Authored by zhangwenxue

fix: typo

@@ -28,7 +28,7 @@ @@ -28,7 +28,7 @@
28 28
29 <script> 29 <script>
30 import { Scroll } from 'cube-ui'; 30 import { Scroll } from 'cube-ui';
31 -import { sortBy } from 'lodash'; 31 +import { sortby } from 'lodash';
32 32
33 export default { 33 export default {
34 name: 'size-list', 34 name: 'size-list',
@@ -68,7 +68,7 @@ export default { @@ -68,7 +68,7 @@ export default {
68 } 68 }
69 69
70 if (!this.simplePrice) { 70 if (!this.simplePrice) {
71 - const list = sortBy(this.list, 'order_by').reverse(); 71 + const list = sortby(this.list, 'order_by').reverse();
72 72
73 return list.map(this.priceMap); 73 return list.map(this.priceMap);
74 } 74 }