unknown
2023-08-24 ddb0231ef7c5cf2bad9d3f1afc2f733674ad38a5
force-app/main/default/lwc/lexESignAcceptanceFranchiser/lexESignAcceptanceFranchiser.js
@@ -1,3 +1,10 @@
/*
 * @Author: zhangchunxu
 * @Date: 2023-06-27 16:51:15
 * @LastEditors: zhangchunxu
 * @LastEditTime: 2023-08-02 16:56:55
 *
 */
import { LightningElement,wire,track,api} from 'lwc';
import { CurrentPageReference } from "lightning/navigation";
import { CloseActionScreenEvent } from 'lightning/actions';
@@ -42,7 +49,6 @@
            this.OBA4_sinFor = result.OBA4_sinFor;
            this.IsLoading = false;
            this.AcceptanceFranchiser();
            this.dispatchEvent(new CloseActionScreenEvent());
        })       
    }
    //签收单 验收确认(经销商)
@@ -80,7 +86,8 @@
                return;
            }else{
                window.open ('/apex/AgencyConfirmPage?id='+this.recordId, '经销商确认',
                'height=440, width=750, top=150, left=300, toolbar=no, menubar=no, scrollbars=no, location=no, status=no');
                'height=440, width=1260, top=170, left=40, toolbar=no, menubar=no, scrollbars=no, location=no, status=no');
                this.dispatchEvent(new CloseActionScreenEvent());
            }
        }
    })
@@ -93,4 +100,4 @@
        this.dispatchEvent(event);
        this.dispatchEvent(new CloseActionScreenEvent());
    }
}
}