Authored by zhangwenxue

fix: typo

... ... @@ -28,7 +28,7 @@
<script>
import { Scroll } from 'cube-ui';
import { sortBy } from 'lodash';
import { sortby } from 'lodash';
export default {
name: 'size-list',
... ... @@ -68,7 +68,7 @@ export default {
}
if (!this.simplePrice) {
const list = sortBy(this.list, 'order_by').reverse();
const list = sortby(this.list, 'order_by').reverse();
return list.map(this.priceMap);
}
... ...