123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- function OnInitializeData(reload, preview) {
-
- PUI(()=>{
-
-
-
-
- });
- }
- function OnReady(reload, preview) {
-
- PUI(()=>{
-
-
-
-
- });
- }
- function OnCloseForm() {
- }
- function OnException(err) {
-
- }
- function OnTest(){
- unit.form.createAnsys.pane.Close();
-
- unit.form.mainfrm.OnCueline('窗体已关闭!', 'blue');
- }
- function OnYes(){
-
- model.setNums(20);
- model.setOrder(ui.pb_order.value);
-
- if(model.getMat() !== 0 && model.getMidu() !== 0 && model.getPoi() !== 0){
- unit.form.mainfrm.OnChangePicture(2, 2);
- }else{
- unit.form.mainfrm.OnChangePicture(2, 1);
- }
-
- unit.form.mainfrm.OnCueline('恭喜您,数值保存成功!', 'green');
- }
- function OnParentDockerMessage(type, para) {
- }
- function onDragFile(filepath) {
- }
- function PUI(cb) {
- if(pui){cb();}
- }
- function BLOCK_EVENT(cb) {
- ui.block_event = true;
-
- cb();
-
- ui.block_event = false;
- }
- function CW_DeclareVariable(name, setter, getter) {
- if(typeof(__DeclareVariable) === 'function') {
- __DeclareVariable(name, setter, getter);
- }
- }
- function CW_DeclareOuterVariable(name) {
- if(typeof(__DeclareOuterVariable) === 'function') {
- __DeclareOuterVariable(name);
- }
- }
|