96 lines
1.5 KiB
TypeScript
96 lines
1.5 KiB
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { values } from 'd3';
|
|
|
|
@Component({
|
|
selector: 'app-projects',
|
|
templateUrl: './projects.component.html',
|
|
styleUrls: ['./projects.component.scss']
|
|
})
|
|
export class ProjectsComponent implements OnInit {
|
|
isRequired = false;
|
|
isDisabled = false;
|
|
currentDrink: string;
|
|
|
|
drinks = [{
|
|
value: 'coke-0',
|
|
viewValue: 'Coke'
|
|
}, {
|
|
value: 'sprite-1',
|
|
viewValue: 'Sprite'
|
|
}, {
|
|
value: 'water-2',
|
|
viewValue: 'Water'
|
|
}, {
|
|
value: 'pepper-3',
|
|
viewValue: 'Dr. Pepper'
|
|
}, {
|
|
value: 'coffee-4',
|
|
viewValue: 'Coffee'
|
|
}, {
|
|
value: 'tea-5',
|
|
viewValue: 'Tea'
|
|
}, {
|
|
value: 'juice-6',
|
|
viewValue: 'Orange juice'
|
|
}, {
|
|
value: 'wine-7',
|
|
viewValue: 'Wine'
|
|
}, {
|
|
value: 'milk-8',
|
|
viewValue: 'Milk'
|
|
}];
|
|
districtList=[{
|
|
id:"1",
|
|
value:"Chennai"
|
|
},{
|
|
id:"2",
|
|
value:"Vellore"
|
|
},{
|
|
id:"3",
|
|
value:"Thiruvannamalai"
|
|
},{
|
|
id:"4",
|
|
value:"Kanchipuram"
|
|
},{
|
|
id:"5",
|
|
value:"Nagapattinam"
|
|
},]
|
|
schoolList=[{
|
|
id:"1",
|
|
value:"Govt High School"
|
|
},
|
|
{
|
|
id:"2",
|
|
value:"Govt Primary School"
|
|
}]
|
|
categoryList=[{
|
|
id:"1",
|
|
value:"Building"
|
|
},
|
|
{
|
|
id:"2",
|
|
value:"Furnitures"
|
|
},
|
|
{
|
|
id:"2",
|
|
value:"Students kit"
|
|
}]
|
|
blockList=[{
|
|
id:"1",
|
|
value:"Adyar"
|
|
},
|
|
{
|
|
id:"2",
|
|
value:"Mylapore"
|
|
},
|
|
{
|
|
id:"3",
|
|
value:"Royapuram"
|
|
}];
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|