edit
This commit is contained in:
@ -35,7 +35,18 @@ export class ContractManagementService extends BaseService {
|
||||
$api_listPartner_page = `/api/sdc/contract/listPartner/page`;
|
||||
// 获取订单合同表
|
||||
$api_contract_get = `/api/sdc/contract/get`;
|
||||
|
||||
// 发起E签宝跟据合同ID
|
||||
$api_startTheProcessToESignById = `/api/sdc/contract/startTheProcessToESignById`;
|
||||
constructor(public injector: Injector) {
|
||||
super(injector);
|
||||
}
|
||||
|
||||
StartTheProcessToESignById(id: string, callback: () => void) {
|
||||
this.request(this.$api_startTheProcessToESignById, { id }).subscribe(res => {
|
||||
if (res) {
|
||||
callback();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user