解决冲突

This commit is contained in:
wangshiming
2022-02-28 20:03:30 +08:00
parent 438484699d
commit b22ef98056
7 changed files with 58 additions and 32 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming
* @Date : 2022-01-06 15:01:40
* @LastEditors : Shiming
* @LastEditTime : 2022-02-28 19:34:38
* @LastEditTime : 2022-02-28 19:58:01
* @FilePath : \\tms-obc-web\\src\\app\\routes\\supply-management\\components\\tran-agreement\\tran-agreement.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved.
*/
@ -25,7 +25,14 @@ export class TranAgreementComponent {
}
ngOnInit() {
this.service.request(this.service.$api_getContractContent,{type:'6'}).subscribe((res) => {
const params = {
contractType:'1',
enterpriseInfoId: '',
parametersDTO: {}
}
this.service.request(this.service.$api_getContractContent,params).subscribe((res) => {
if (res) {
this.agreement = res;
}