|
@@ -265,6 +265,7 @@ export const imageSizeList = [
|
|
{value: 1, label: '512*512'},
|
|
{value: 1, label: '512*512'},
|
|
]
|
|
]
|
|
export const typeGroup = [
|
|
export const typeGroup = [
|
|
|
|
+ { label: '汽车', value: 'car' },
|
|
{ label: '珠宝', value: 'jewelry' },
|
|
{ label: '珠宝', value: 'jewelry' },
|
|
{ label: '电饭煲', value: 'electricCooker' },
|
|
{ label: '电饭煲', value: 'electricCooker' },
|
|
{ label: '冰箱', value: 'refrigerator' },
|
|
{ label: '冰箱', value: 'refrigerator' },
|
|
@@ -300,4 +301,17 @@ export const laptopComputer = [
|
|
{value: 'Gaming laptop', label: '游戏本'},
|
|
{value: 'Gaming laptop', label: '游戏本'},
|
|
{value: 'Tablet', label: '平板'},
|
|
{value: 'Tablet', label: '平板'},
|
|
]
|
|
]
|
|
|
|
+// 汽车
|
|
|
|
+export const carTypeList = [
|
|
|
|
+ {value: 'Sedan', label: '轿车'},
|
|
|
|
+ {value: 'Sports Car', label: '跑车'},
|
|
|
|
+ {value: 'City SUV', label: '城市越野'},
|
|
|
|
+ {value: 'Hardcore SUV', label: '硬派越野'},
|
|
|
|
+ {value: 'Minivan', label: '商务车'},
|
|
|
|
+ {value: 'Bus', label: '客车'},
|
|
|
|
+ {value: 'Van', label: '面包车'},
|
|
|
|
+ {value: 'Pickup Truck', label: '皮卡车'},
|
|
|
|
+ {value: 'Convertible', label: '敞篷车'},
|
|
|
|
+ {value: 'Race Car', label: '赛车'}
|
|
|
|
+]
|
|
|
|
|