dashboard
repositories
filestore
activity
search
login
main
/
screen_demo3
招投标-北京密云
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Merge branch 'develop' of http://blit.7drlb.com:8888/r/screen-frontend into...
fengxiang
2017-12-20
124766132b01645c9942f4cadd7cb88953bfc728
[screen_demo3.git]
/
src
/
app
/
core
/
services
/
date.service.ts
1
2
3
4
5
6
7
8
9
10
11
import {Injectable} from '@angular/core';
import * as moment from 'moment';
@Injectable()
export class DateService {
date_format(date: string, format: string) {
return moment(date).format('YYYY-MM-DD');
}
}