| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import brokenLineSVG from 'assets/svg/brokenLine.svg'
- import textSVG from 'assets/svg/text.svg'
- import tableSVG from 'assets/svg/table.svg'
- import rectSVG from 'assets/svg/rect.svg'
- import circularSVG from 'assets/svg/circular.svg'
- import arrowSVG from 'assets/svg/arrow.svg'
- import iconSVG from 'assets/svg/icon.svg'
- import cigaretteSVG from 'assets/svg/cigarette.svg'
- import fireointSVG from 'assets/svg/fireoint.svg'
- import footPrintSVG from 'assets/svg/footPrint.svg'
- import footPrintReverSVG from 'assets/svg/footPrintRever.svg'
- import shoePrintSVG from 'assets/svg/shoePrint.svg'
- import shoePrintReverSVG from 'assets/svg/shoePrintRever.svg'
- import fingerPrintSVG from 'assets/svg/fingerPrint.svg'
- import corpseSVG from 'assets/svg/corpse.svg'
- import theBloodSVG from 'assets/svg/theBlood.svg'
- export const brokenLine = 'Wall'
- export const text = 'Tag'
- export const table = 'Table'
- export const rect = 'Rectangle'
- export const circular = 'Circle'
- export const arrow = 'Arrow'
- export const icon = 'Icon'
- export const cigarette = 'Cigaret'
- export const fireoint = 'FirePoint'
- export const footPrint = 'LeftFootPrint'
- export const footPrintRever = 'RightFootPrint'
- export const shoePrint = 'LeftShoePrint'
- export const shoePrintRever = 'RightShoePrint'
- export const fingerPrint = 'FingerPrint'
- export const corpse = 'DeadBody'
- export const theBlood = 'BloodStain'
- export const labels = [
- brokenLine,
- text,
- table,
- rect,
- circular,
- arrow,
- icon
- ]
- export const images = [
- cigarette,
- fireoint,
- footPrint,
- shoePrint,
- fingerPrint,
- shoePrintRever,
- footPrintRever,
- corpse,
- theBlood
- ]
- export const metas = {
- [brokenLine]: { desc: '折现', icon: brokenLineSVG },
- [text]: { desc: '文本', icon: textSVG },
- [table]: { desc: '表格', icon: tableSVG },
- [rect]: { desc: '矩形', icon: rectSVG },
- [circular]: { desc: '圆形', icon: circularSVG },
- [arrow]: { desc: '箭头', icon: arrowSVG },
- [icon]: { desc: '图标', icon: iconSVG },
- [cigarette]: { desc: '烟头', icon: cigaretteSVG },
- [fireoint]: { desc: '起火点', icon: fireointSVG },
- [footPrint]: { desc: '脚印', icon: footPrintSVG },
- [footPrintRever]: { desc: '脚印', icon: footPrintReverSVG },
- [shoePrint]: { desc: '鞋印', icon: shoePrintSVG },
- [shoePrintRever]: { desc: '鞋印', icon: shoePrintReverSVG },
- [fingerPrint]: { desc: '指纹', icon: fingerPrintSVG },
- [corpse]: { desc: '尸体', icon: corpseSVG },
- [theBlood]: { desc: '血迹', icon: theBloodSVG },
- }
|