Commit 3b3f7826 authored by wangqinghua's avatar wangqinghua

调整文件结构

parent 7925107d
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VagrantProjectSettings">
<option name="instanceFolder" value="" />
<option name="provider" value="" />
</component>
</project>
\ No newline at end of file
......@@ -259,5 +259,5 @@ ion-icon {
word-break: break-all;
}
.fontSize-15{
font-size: 1.5 rem;
font-size: 1.5rem;
}
\ No newline at end of file
import { LoadingController, AlertController, ToastController } from 'ionic-angular';
import { Injectable } from '@angular/core';
import { Http,Response, Headers, RequestOptions} from '@angular/http';
import { AppService } from '../service/appHttpService';
@Injectable()
export class ActivityStatisticService {
constructor(
public http: Http,
public loadingCtrl: LoadingController,
public appService: AppService,) { }
//未读通知统计
myNoticeNotreadCount(callback?){
this.appService.ObserverHttpPost("/wisdomgroup/modules/notice/getNotReadNotice",null)
.subscribe((res: Response) => {
let data = res.json();
callback(data == null ? "[]" : data);
}, error => {
this.appService.alert('网络异常!');
}
);
}
//尚未报备统计
myNotdoPremanagerCount(callback?){
this.appService.ObserverHttpPost("/wisdomgroup/modules/premanager/findMyNotdoPremanager",null)
.subscribe((res: Response) => {
let data = res.json();
callback(data == null ? "[]" : data);
}, error => {
this.appService.alert('网络异常!');
}
);
}
}
\ No newline at end of file
......@@ -19,12 +19,12 @@ export class AppGlobal {
//图片地址
// static picture = "http://101.89.112.92:80/wisdomgroup/manager/getIcon/"; //正式地址
static picture = "http://180.168.156.212:2931/wisdomgroup/manager/getIcon/"; //测试
// static picture = AppGlobal.domain + "/wisdomgroup/manager/getIcon/"; //正式地址
static picture = AppGlobal.domain + "/wisdomgroup/manager/getIcon/"; //测试
//通知公告图片参数
// static pictureNotice = "http://101.89.112.92:80"; //正式地址
static pictureNotice = "http://180.168.156.212:2931"; //测试
// static pictureNotice = AppGlobal.domain; //正式地址
static pictureNotice = AppGlobal.domain; //测试
//接口地址
static API: any = {
......
......@@ -24,27 +24,16 @@
.tab-button-text{
margin-top: 0 !important;
}
.color-333{
color: #333;
}
.color-666{
color: #666;
}
.color-999{
color: #999;
}
.color-fff{
color: #fff;
}
.color-red{
color: red;
}
.color-green{
color: #1ec659;
}
.color-24bafc{
color: #24bafc;
}
$main-colo:#e12724;
.color-333{color: #333;}
.color-666{color: #666;}
.color-999{color: #999;}
.color-fff{color: #fff;}
.color-red{color: red;}
.color-green{color: #1ec659;}
.color-24bafc{color: #24bafc;}
.border{border: 1px solid #ddd;}
@for $i from 0 through 101{
.margin-right-#{$i}{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment