feat: first commit

This commit is contained in:
2025-03-27 19:33:39 +08:00
commit af5072e5ef
64 changed files with 7356 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
/** 图片预览图片索引切换类型值 */
declare type TImgPreviewIdx = -1 | 1;
/**
* 图片类型
* 图片类型, 0:人脸, 1:自行车, 2:巴士, 3:小汽车, 4:电动车|摩托车, 5:人体, 6:三轮车,7货车、8车牌、9推车,10鸟、11猫,12 狗,13老鼠
* "0 face","1 bicycle","2 bus","3 car","4 motorbike","5 person","6 tricycle","7 truck","8 carplate","9 pram","10 bird","11 cat", "12 dog", "13 mouse"
*/
declare type TObjectType = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13;
/**
* 订单状态
* 0:待完成 1:已完成 2:已取消
*/
declare type TStatus = 0 | 1 | 2;