fix: 临时保存

This commit is contained in:
wanganmao
2022-12-14 10:54:50 +08:00
parent 937c5622d2
commit 750d62ebbb
3 changed files with 100 additions and 17 deletions

View File

@@ -0,0 +1,36 @@
export const THREE_D_TYPE = {
PANORAMA: 1,
ENV_3D: 2,
SHELF: 3,
EXHIBITION_BOOTH: 4,
WARE: 5,
RING_3D: 6,
}
export const THREE_D_TYPE_S = [
{
type: THREE_D_TYPE.PANORAMA,
name: "3D全景"
},
{
type: THREE_D_TYPE.ENV_3D,
name: "三维环境"
},
{
type: THREE_D_TYPE.SHELF,
name: "货架模型"
},
{
type: THREE_D_TYPE.EXHIBITION_BOOTH,
name: "展台模型"
},
{
type: THREE_D_TYPE.WARE,
name: "商品模型"
},
{
type: THREE_D_TYPE.RING_3D,
name: "3D环物"
},
];