This commit is contained in:
wangshiming
2022-02-16 16:38:09 +08:00
parent 331c3207a7
commit f1dc67f92a
6 changed files with 69 additions and 99 deletions

View File

@ -28,10 +28,16 @@ export class SupplyManagementUpdatePriceComponent implements OnInit {
public service: SupplyManagementService
) { }
get reqParams() {
return {
operateObject: this.record?.resourceCode,
operateType: 7,
};
}
ngOnInit(): void {
this.initSF();
this.initSt();
console.log(this.record)
if (this.record?.id) this.getGoodsResourceShipperDeatail(this.record?.id);
}
@ -88,8 +94,8 @@ export class SupplyManagementUpdatePriceComponent implements OnInit {
*/
initSt() {
this.columns = [
{ title: '日志内容', width: 120, index: 'owner', className: 'text-center' },
{ title: '更新时间', index: 'goodsQuantity', width: 100, className: 'text-center' },
{ title: '日志内容', width: 120, index: 'operationContent', className: 'text-center' },
{ title: '更新时间', index: 'operatorTimestamp', width: 100, className: 'text-center' },
{ title: '操作人', width: 100, render: 'operator', className: 'text-center' },
];
}