fix: 素材库借口联调

This commit is contained in:
wanganmao
2022-12-16 15:33:23 +08:00
parent 8bbccf0ecd
commit 7566a5cc18
6 changed files with 106 additions and 43 deletions

View File

@@ -6,12 +6,23 @@ export const THREE_D_TYPE = {
EXHIBITION_BOOTH: 4,
WARE: 5,
RING_3D: 6,
EMPTY_3D: 7,
CHARTLET: 8,
}
export const THREE_D_TYPE_S = [
{
type: THREE_D_TYPE.PANORAMA,
name: "3D全景"
name: "3D全景",
data: {
"url": "",
"urlSmall": "",
"urlThumb": "",
"urlDepth": "",
"urlShelfExr": "",
"rotationY": 0,
"multiply": 3
}
},
{
type: THREE_D_TYPE.ENV_3D,
@@ -33,4 +44,12 @@ export const THREE_D_TYPE_S = [
type: THREE_D_TYPE.RING_3D,
name: "3D环物"
},
{
type: THREE_D_TYPE.EMPTY_3D,
name: "空白模型"
},
{
type: THREE_D_TYPE.CHARTLET,
name: "贴图"
},
];