21 lines
775 B
TypeScript
21 lines
775 B
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
||
|
||
@Component({
|
||
selector: 'app-logistics-time-line',
|
||
templateUrl: './logistics-time-line.component.html',
|
||
styleUrls: ['./logistics-time-line.component.less']
|
||
})
|
||
export class LogisticsTimeLineComponent implements OnInit {
|
||
@Input()
|
||
data: any = [
|
||
{ time: '2020-07-29 11:02:00', value: '到账成功', color: 'green' },
|
||
{ time: '2020-07-29 11:02:00', value: '银行处理中', color: 'gray' },
|
||
{ time: '2020-07-29 11:02:00', value: '审核通过<br/>操作人员:李四', color: 'gray' },
|
||
{ time: '2020-07-29 11:02:00', value: '提交提现申请<br/>提现1000.00元至招商银行(8889)<br/>操作人员:张三', color: 'gray' }
|
||
];
|
||
|
||
constructor() {}
|
||
|
||
ngOnInit(): void {}
|
||
}
|