diff --git a/src/Add-on/twoD2threeD/Modals/R2b2.tsx b/src/Add-on/twoD2threeD/Modals/R2b2.tsx new file mode 100644 index 000000000..b949a00e0 --- /dev/null +++ b/src/Add-on/twoD2threeD/Modals/R2b2.tsx @@ -0,0 +1,121 @@ +import { Button, Card, H5, Intent } from '@blueprintjs/core'; +import { observer } from 'mobx-react'; +import React, { Component } from 'react'; +import { app } from '../../../ApplicationServices/Application'; +import { CheckObjectType } from '../../../Common/CheckoutVaildValue'; +import { Input5Or4Component, Notes, SetBoardDataBlock } from '../../../UI/Components/Board/BoardCommon'; +import { BoardModalType } from '../../../UI/Components/Board/BoardModal'; +import { CommonModal } from '../../../UI/Components/Modal/ModalContainer'; +import { ModalState } from '../../../UI/Components/Modal/ModalInterface'; +import { AppToaster } from '../../../UI/Components/Toaster'; +import { R2B2Store } from '../R2B2Store'; +import { SelectDrillType } from '../R2BCommon'; + +const CabPars = [ + ["depthExpr", "柜深"], ["maxThickness", "最大板厚"], +]; +const ShrinkPars = [ + ["vertialShrink", "立板"], ["layerShrink", "层板"], +]; + +@observer +export class R2b2Panel extends Component<{ store: R2B2Store; }> +{ + render() + { + const { store } = this.props; + return ( + +