Merge branch 'bugfix' into dev

This commit is contained in:
dy 2023-12-22 21:28:08 +08:00
commit 5eee059c1e
2 changed files with 16 additions and 4 deletions

View File

@ -20265,7 +20265,21 @@ export const serviceProto: ServiceProto<ServiceType> = {
"id": 2, "id": 2,
"name": "t", "name": "t",
"type": { "type": {
"type": "Number" "type": "Union",
"members": [
{
"id": 0,
"type": {
"type": "Number"
}
},
{
"id": 1,
"type": {
"type": "String"
}
}
]
} }
}, },
{ {

View File

@ -1,5 +1,3 @@
/** /**
* open接口 * open接口
*/ */
@ -32,7 +30,7 @@ export type shopItem = {
/** 掉落类型 */ /** 掉落类型 */
'a': string; 'a': string;
/** 掉落id */ /** 掉落id */
't': number; 't': number | string;
/** 掉落数量 */ /** 掉落数量 */
'n': number; 'n': number;
/** 权重 */ /** 权重 */