Merge branch 'dev' of gitea.51mars.com:Oak-Team/oak-domain into dev
This commit is contained in:
commit
80bc19e0f3
|
|
@ -9,6 +9,6 @@ exports.style = {
|
||||||
userState: {
|
userState: {
|
||||||
normal: '#112233',
|
normal: '#112233',
|
||||||
merged: '#223344',
|
merged: '#223344',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ exports.entityDesc = {
|
||||||
normal: '正常',
|
normal: '正常',
|
||||||
merged: '已被合并',
|
merged: '已被合并',
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
style: {
|
style: {
|
||||||
|
|
@ -37,7 +37,7 @@ exports.entityDesc = {
|
||||||
userState: {
|
userState: {
|
||||||
normal: '#112233',
|
normal: '#112233',
|
||||||
merged: '#223344',
|
merged: '#223344',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { String, Int, Text, Image, Datetime } from '../types/DataType';
|
import { String, Text } from '../types/DataType';
|
||||||
import { EntityShape } from '../types/Entity';
|
import { EntityShape } from '../types/Entity';
|
||||||
import { ActionDef } from '../types/Action';
|
import { ActionDef } from '../types/Action';
|
||||||
import { EntityDesc } from '../types/EntityDesc';
|
import { EntityDesc } from '../types/EntityDesc';
|
||||||
|
|
@ -22,9 +22,14 @@ export const UserActionDef: ActionDef<UserAction, UserState> = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export const entityDesc: EntityDesc<Schema, Action, '', {
|
export const entityDesc: EntityDesc<
|
||||||
userState: UserState,
|
Schema,
|
||||||
}> = {
|
Action,
|
||||||
|
'',
|
||||||
|
{
|
||||||
|
userState: UserState;
|
||||||
|
}
|
||||||
|
> = {
|
||||||
locales: {
|
locales: {
|
||||||
zh_CN: {
|
zh_CN: {
|
||||||
name: '用户',
|
name: '用户',
|
||||||
|
|
@ -43,7 +48,7 @@ export const entityDesc: EntityDesc<Schema, Action, '', {
|
||||||
normal: '正常',
|
normal: '正常',
|
||||||
merged: '已被合并',
|
merged: '已被合并',
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
style: {
|
style: {
|
||||||
|
|
@ -54,7 +59,7 @@ export const entityDesc: EntityDesc<Schema, Action, '', {
|
||||||
userState: {
|
userState: {
|
||||||
normal: '#112233',
|
normal: '#112233',
|
||||||
merged: '#223344',
|
merged: '#223344',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
Loading…
Reference in New Issue