Newer
Older
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
import { Response } from '@angular/http';
import { AppService, AppGlobal } from "../../../service/appHttpService";
import { OutGoingReportDetailPage } from '../outGoingReportDetail/outGoingReportDetail';
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
@IonicPage()
@Component({
selector: 'page-outGoingReportEdit',
templateUrl: 'outGoingReportEdit.html'
})
export class OutGoingReportEditPage {
isLeave = false;
//picture: string = "./assets/imgs/logo.png";
picture: string;
//报备详情显示处理
introduce: string;
edit_CityList ;
addressid:string = '';
syn_addressid:string = '';
//报备
premanager = {};
//个人报备
userpre = {
id:"",
managerId : "", //报备id
isorFromsh : 0, //默认不离沪
leaveTime : "", //离沪时间
backTime : "", //回沪时间
userpreDesc : "", //离沪说明
outaddressids : "" //个人报备选择的地点地址:保存id值
}
//报备截至日期
temp_endTime;
//临时离沪信息
temp_userpre = {}
//离沪时间差
dategap : any;
//离沪地点显示
locations : any;
constructor(
public navCtrl: NavController,
public navParams: NavParams,
public appService: AppService,
public storage: Storage
) {
//当前页面----个人报备1页面
//this.gettemp_userprePre();
}
ngOnInit():void{
//报备列表页面 到 个人报备1页面
this.storage.get("premanager").then((value)=>{
if(value != null && value != ''){
this.premanager = value;
//加载报备的图片
this.picture = AppGlobal.picture + this.premanager["uploadPic"];
//加载报备详细说明
this.subIntroduce(this.premanager["managerDesc"]);
this.userpre.managerId = this.premanager["id"]; //1.保存-报备id
this.temp_endTime = this.premanager["endTime"]; //报备截止时间
if(this.premanager["reported"]){ //已报备--修改操作,
//编辑初始化:查询
this.appService.ObserverHttpPost("/wisdomgroup/modules/userpre/getUserpre",{premanagerId:value.id})
.subscribe((res: Response) => {
let result = res.json();
this.userpre.id = result["id"]; //保存-id
//离沪勾选
if(result.isorFromsh == 1){ //离沪
this.userpre.isorFromsh = 1;
this.isLeave = true;
this.edit_CityList = result.areaList;
if( this.edit_CityList != null && this.edit_CityList.length > 0){
this.addressid = '';
this.locations = '';
for (let index = 0; index < this.edit_CityList.length; index++) {
const element = this.edit_CityList[index];
this.addressid += element["id"]+",";
this.locations += element["areaName"]+",";
}
this.addressid = this.addressid.substring(0,this.addressid.lastIndexOf(","));
this.locations = this.locations.substring(0,this.locations.lastIndexOf(",")); //回显地点
this.userpre.outaddressids = this.addressid; //保存-离沪地点
}
this.userpre.leaveTime = result["formshTime"]; //保存-离沪时间
this.userpre.backTime = result["comeshTime"]; //保存-回沪时间
if(result.userpreDesc != ''||typeof(result.userpreDesc)!='undefined'){
this.userpre.userpreDesc = result["userpreDesc"]; //保存-离沪说明
}
//页面显示 时间差
this.dategap = this.userpre.leaveTime+"~"+this.userpre.backTime; //回显时间差
}
}, error => {
this.appService.alert('网络异常!');
}
);
}
}
});
//此操作只从报备列表页面到此页面,仅执行一次(不然每次都初始化了)
this.storage.remove("premanager");
this.gettemp_userprePre();
}
gettemp_userprePre(){
//从个人报备2页面 到 个人报备1页面
this.storage.get("temp_userpre").then((value)=>{
if(value != null && value != ''){
this.isLeave = true;
this.userpre.isorFromsh = 1;
//temp_userpre 保存的是个人报备2 页面中选择的值
this.temp_userpre = value;
this.userpre.leaveTime = this.temp_userpre["leaveDate"];
this.userpre.backTime = this.temp_userpre["backDate"];
if(value.managerDesc != ''||typeof(value.managerDesc)!='undefined'){
this.userpre.userpreDesc = this.temp_userpre["managerDesc"];
}
this.userpre.outaddressids = this.temp_userpre["outaddressids"];
this.userpre.managerId = this.temp_userpre["managerId"];
//编辑 (存在个人报备id)
if(this.temp_userpre["id"]!=null&&this.temp_userpre["id"]!=''){
this.userpre.id = this.temp_userpre["id"];
}
//页面显示 时间差
this.dategap = this.temp_userpre["leaveDate"].substring(0,10)+"~"+this.temp_userpre["backDate"].substring(0,10);
this.locations = this.temp_userpre["areaName"];
this.temp_endTime = this.temp_userpre["entTime"];
this.picture = AppGlobal.picture + this.temp_userpre["premanagerImg"];
this.premanager["managerDesc"]=this.temp_userpre["premanagerIntroduce"];
this.subIntroduce(this.temp_userpre["premanagerIntroduce"]);
}
});
}
//详细说明展示
isCover: boolean = false;
//具体介绍
hidden() {
this.isCover = false;
}
show() {
this.isCover = true;
}
//报备详情限定一行17个字符串,两行57个字符串,多余以省略号代替
subIntroduce(str: string) {
console.log("introduce:"+str.length);
if (!str) this.introduce = '';
if (str.length <= 17) this.introduce = str;
if (str.length > 17 && str.length <= 25) this.introduce = str.substr(0, 17) + "...";
if (str.length > 25 && str.length <= 42) this.introduce = str.substr(0, 25) + "...";
if (str.length > 42) this.introduce = str.substr(0, 42) + "...";
}
//选择是否离沪
chooseLeave(status) {
if(status==1){ //不离沪
this.isLeave = false;
this.userpre.isorFromsh = 0;
this.userpre.leaveTime = "";
this.userpre.backTime = "";
this.userpre.userpreDesc = "";
this.userpre.outaddressids = "";
}else if(status==0){
this.isLeave = true;
this.userpre.isorFromsh = 1;
}
}
// 跳转到报备详情页面页面
editReport(){
this.storage.remove("city");
this.navCtrl.push("OutGoingReportDetailPage",{premanager:this.premanager});
}
//提交报备
savePremanager(){
if(this.userpre.isorFromsh == 1){
//判断离沪地点是否选择
if(this.userpre.outaddressids == null || this.userpre.outaddressids == ''){
this.appService.alert("请填写离沪详情信息!");
return false;
}
if(this.userpre.userpreDesc != null && this.userpre.userpreDesc != '' ){
//离沪乱码处理
let temp_userpreDesc = encodeURIComponent(this.userpre["userpreDesc"]) ;
this.userpre.userpreDesc = temp_userpreDesc;
}
}
//判断报备截止日期
let signflag = Date.parse(this.temp_endTime.toString()) > Date.parse(new Date().toString());
if(!signflag){
this.appService.alert('超过报备截至时间!');
return false;
}
// if(this.userpre.userpreDesc != null && this.userpre.userpreDesc != '' ){
// //离沪乱码处理
// let temp_userpreDesc = encodeURIComponent(this.userpre["userpreDesc"]) ;
// this.userpre.userpreDesc = temp_userpreDesc;
// }
this.appService.ObserverHttpPost("/wisdomgroup/modules/userpre/create",this.userpre)
.subscribe((res: Response) => {
let resultback = res.json();
if(resultback.code == '200'){
//this.appService.popToastView(resultback.msg,'middle',1000);
this.navCtrl.push("MyReportPage");
this.storage.remove("premanager");
this.storage.remove("temp_userpre");
this.storage.remove("managerId");
this.storage.remove("city");
this.storage.remove("cityList");
}else{
//失败
this.appService.popToastView(resultback.msg,'middle',1000);
}
}, error => {
this.appService.alert('网络异常!');
}
);
}
//修改报备
editPremanager(){
if(this.userpre.isorFromsh == 1){
//判断离沪地点是否选择
if(this.userpre.outaddressids == null || this.userpre.outaddressids == ''){
this.appService.alert("请填写离沪详情信息!");
return false;
}
if(this.userpre.userpreDesc != null && this.userpre.userpreDesc != '' ){
//离沪乱码处理
let temp_userpreDesc = encodeURIComponent(this.userpre["userpreDesc"]) ;
this.userpre.userpreDesc = temp_userpreDesc;
}
}
this.storage.get("cityList").then((value)=>{
if(value != null && value != ''){ //离沪
this.addressid = '';
for (let index = 0; index < value.length; index++) {
const element = value[index];
this.addressid += element["id"]+",";
}
this.addressid = this.addressid.substring(0,this.addressid.lastIndexOf(","));
this.userpre.outaddressids = this.addressid;
} //编辑或者是选择不离沪
this.savePremanager_sysn(this.userpre,result=>{
let resultback = result;
if(resultback.code == '200'){
//this.appService.popToastView(resultback.msg,'middle',1000);
this.navCtrl.push("MyReportPage");
}else{
//失败
this.appService.popToastView(resultback.msg,'middle',1000);
}
});
});
}
//防止异步
savePremanager_sysn(userprev,callback?): any {
this.appService.ObserverHttpPost("/wisdomgroup/modules/userpre/create",userprev)
.toPromise()
.then(res => {
this.storage.remove("premanager");
this.storage.remove("temp_userpre");
this.storage.remove("managerId");
this.storage.remove("city");
this.storage.remove("cityList");
let data = res.json();
callback(data == null ? "[]" : data);
})
.catch(error => {
});
}
}