|
@@ -30,6 +30,9 @@ func XcxApiControllersRegisterRouters() {
|
30
|
30
|
|
31
|
31
|
//获取排班数据
|
32
|
32
|
beego.Router("/xcx/api/mobile/schedule", &XcxApiController{}, "Get:GetScheduleInfo")
|
|
33
|
+
|
|
34
|
+ //获取病历信息
|
|
35
|
+ //beego.Router("/xcx/api/mobile/")
|
33
|
36
|
}
|
34
|
37
|
|
35
|
38
|
type XcxApiController struct {
|
|
@@ -138,7 +141,7 @@ func (this *XcxApiController) GetLoginInfor() {
|
138
|
141
|
fmt.Println(mobile)
|
139
|
142
|
info, err := service.GetMobilePatientInfo(mobile)
|
140
|
143
|
if info.ID == 0 {
|
141
|
|
- if err == nil {
|
|
144
|
+ if err != nil {
|
142
|
145
|
this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
|
143
|
146
|
return
|
144
|
147
|
}
|
|
@@ -181,10 +184,18 @@ func (this *XcxApiController) GetLoginInfor() {
|
181
|
184
|
}
|
182
|
185
|
|
183
|
186
|
func (this *XcxApiController) GetPatientList() {
|
184
|
|
- var appid = "wx20b60369111b063a"
|
185
|
|
- var key = "4BactRvIKCBXzvpyl2SQyQ=="
|
186
|
|
- var iv = "aXiAcKIWKfseTyzelqcZ0w=="
|
187
|
|
- var strs = "Gr5gmKz9OjWGipAxt3ujQtHBBXV/Uvhsm+qvvZy6gF+HBc8c6gZhZkqIqLbs8nHkId5zm/mGVNpghvM/egYTLOOI7LxhvjRsPE1691j+jltU9OIavGIWFp3I4m3OdP9CuPohhrpZPgwsGajJmtGNNjPvGA61ssErVZ7SBceq+leag532zCmgEXN3NpZP0TRgpIpwpegCAEW07oyI0LiRYA=="
|
|
187
|
+ //var appid = "wx4f4bc4dec97d474b"
|
|
188
|
+ //var key = "tiihtNczf5v6AKRyjwEUhQ=="
|
|
189
|
+ //var iv = "r7BXXKkLb8qrSNn05n0qiA=="
|
|
190
|
+ //var strs = "CiyLU1Aw2KjvrjMdj8YKliAjtP4gsMZMQmRzooG2xrDcvSnxIMXFufNstNGTyaGS9uT5geRa0W4oTOb1WT7fJlAC+oNPdbB+3hVbJSRgv+4lGOETKUQz6OYStslQ142dNCuabNPGBzlooOmB231qMM85d2/fV6ChevvXvQP8Hkue1poOFtnEtpyxVLW1zAo6/1Xx1COxFvrc2d7UL/lmHInNlxuacJXwu0fjpXfz/YqYzBIBzD6WUfTIF9GRHpOn/Hz7saL8xz+W//FRAUid1OksQaQx4CMs8LOddcQhULW4ucetDf96JcR3g0gfRK4PC7E/r7Z6xNrXd2UIeorGj5Ef7b1pJAYB6Y5anaHqZ9J6nKEBvB4DnNLIVWSgARns/8wR2SiRS7MNACwTyrGvt9ts8p12PKFdlqYTopNHR1Vf7XjfhQlVsAJdNiKdYmYVoKlaRv85IfVunYzO0IKXsyl7JCUjCpoG20f0a04COwfneQAGGwd5oa+T8yO5hzuyDb/XcxxmK01EpqOyuxINew=="
|
|
191
|
+
|
|
192
|
+ appid := "wx4f4bc4dec97d474b"
|
|
193
|
+ key := "4BactRvIKCBXzvpyl2SQyQ=="
|
|
194
|
+ strs := "Gr5gmKz9OjWGipAxt3ujQtHBBXV/Uvhsm+qvvZy6gF+HBc8c6gZhZkqIqLbs8nHkId5zm/mGVNpghvM/egYTLOOI7LxhvjRsPE1691j+jltU9OIavGIWFp3I4m3OdP9CuPohhrpZPgwsGajJmtGNNjPvGA61ssErVZ7SBceq+leag532zCmgEXN3NpZP0TRgpIpwpegCAEW07oyI0LiRYA=="
|
|
195
|
+ iv := "aXiAcKIWKfseTyzelqcZ0w=="
|
|
196
|
+ //data, err := service.Dncrypt(strs, key, iv)
|
|
197
|
+ //fmt.Println(err)
|
|
198
|
+
|
188
|
199
|
data, err := service.DecryptData(appid, key, iv, strs)
|
189
|
200
|
patient_id, _ := this.GetInt64("patient_id")
|
190
|
201
|
patient, err := service.GetPatientListByPatientId(patient_id)
|
|
@@ -203,17 +214,20 @@ func (this *XcxApiController) GetPatientList() {
|
203
|
214
|
func (this *XcxApiController) GetDataInfo() {
|
204
|
215
|
|
205
|
216
|
appid := this.GetString("appid")
|
|
217
|
+ fmt.Println(appid)
|
206
|
218
|
key := this.GetString("key")
|
207
|
219
|
iv := this.GetString("iv")
|
208
|
220
|
encryptedData := this.GetString("encryptedData")
|
209
|
221
|
list, _ := service.DecryptData(appid, key, iv, encryptedData)
|
210
|
|
- fmt.Println(list)
|
|
222
|
+ //list, err := service.Dncrypt(encryptedData, key, iv)
|
|
223
|
+
|
211
|
224
|
this.ServeSuccessJSON(map[string]interface{}{
|
212
|
225
|
"list": list,
|
213
|
226
|
})
|
214
|
227
|
}
|
215
|
228
|
|
216
|
229
|
func (this *XcxApiController) GetScheduleInfo() {
|
|
230
|
+ //patient_id, _ := this.GetInt64("patient_id")
|
217
|
231
|
thisWeekMonday := service.GetFirstDateOfWeek()
|
218
|
232
|
weekDayWeek := service.GetWeekDayOfWeek()
|
219
|
233
|
TimeMonday, _ := time.Parse("2006-01-02", thisWeekMonday)
|
|
@@ -229,8 +243,85 @@ func (this *XcxApiController) GetScheduleInfo() {
|
229
|
243
|
loc, _ := time.LoadLocation("Local")
|
230
|
244
|
|
231
|
245
|
startTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", weekMonday+" 00:00:00", loc)
|
232
|
|
-
|
|
246
|
+ fmt.Println("startiem", startTime)
|
233
|
247
|
endTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", weekDay+" 00:00:00", loc)
|
234
|
248
|
|
235
|
249
|
fmt.Println(startTime.Unix(), endTime.Unix())
|
|
250
|
+
|
|
251
|
+ schedule, err := service.GetScheduleInfo(1630252800, 1631980800, 2448)
|
|
252
|
+ if err != nil {
|
|
253
|
+ this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
|
|
254
|
+ return
|
|
255
|
+ }
|
|
256
|
+ array := []interface{}{
|
|
257
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1630252800", "schedule_week": "", "mode_id": ""},
|
|
258
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1630252800", "schedule_week": "", "mode_id": ""},
|
|
259
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1630252800", "schedule_week": "", "mode_id": ""},
|
|
260
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1630339200", "schedule_week": "", "mode_id": ""},
|
|
261
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1630339200", "schedule_week": "", "mode_id": ""},
|
|
262
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1630339200", "schedule_week": "", "mode_id": ""},
|
|
263
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1630425600", "schedule_week": "", "mode_id": ""},
|
|
264
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1630425600", "schedule_week": "", "mode_id": ""},
|
|
265
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1630425600", "schedule_week": "", "mode_id": ""},
|
|
266
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1630512000", "schedule_week": "", "mode_id": ""},
|
|
267
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1630512000", "schedule_week": "", "mode_id": ""},
|
|
268
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1630512000", "schedule_week": "", "mode_id": ""},
|
|
269
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1630598400", "schedule_week": "", "mode_id": ""},
|
|
270
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1630598400", "schedule_week": "", "mode_id": ""},
|
|
271
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1630598400", "schedule_week": "", "mode_id": ""},
|
|
272
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1630684800", "schedule_week": "", "mode_id": ""},
|
|
273
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1630684800", "schedule_week": "", "mode_id": ""},
|
|
274
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1630684800", "schedule_week": "", "mode_id": ""},
|
|
275
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1630771200", "schedule_week": "", "mode_id": ""},
|
|
276
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1630771200", "schedule_week": "", "mode_id": ""},
|
|
277
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1630771200", "schedule_week": "", "mode_id": ""},
|
|
278
|
+
|
|
279
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1630857600", "schedule_week": "", "mode_id": ""},
|
|
280
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1630857600", "schedule_week": "", "mode_id": ""},
|
|
281
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1630857600", "schedule_week": "", "mode_id": ""},
|
|
282
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1630944000", "schedule_week": "", "mode_id": ""},
|
|
283
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1630944000", "schedule_week": "", "mode_id": ""},
|
|
284
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1630944000", "schedule_week": "", "mode_id": ""},
|
|
285
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631030400", "schedule_week": "", "mode_id": ""},
|
|
286
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631030400", "schedule_week": "", "mode_id": ""},
|
|
287
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631030400", "schedule_week": "", "mode_id": ""},
|
|
288
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631116800", "schedule_week": "", "mode_id": ""},
|
|
289
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631116800", "schedule_week": "", "mode_id": ""},
|
|
290
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631116800", "schedule_week": "", "mode_id": ""},
|
|
291
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631203200", "schedule_week": "", "mode_id": ""},
|
|
292
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631203200", "schedule_week": "", "mode_id": ""},
|
|
293
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631203200", "schedule_week": "", "mode_id": ""},
|
|
294
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631289600", "schedule_week": "", "mode_id": ""},
|
|
295
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631289600", "schedule_week": "", "mode_id": ""},
|
|
296
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631289600", "schedule_week": "", "mode_id": ""},
|
|
297
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631376000", "schedule_week": "", "mode_id": ""},
|
|
298
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631376000", "schedule_week": "", "mode_id": ""},
|
|
299
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631376000", "schedule_week": "", "mode_id": ""},
|
|
300
|
+
|
|
301
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631462400", "schedule_week": "", "mode_id": ""},
|
|
302
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631462400", "schedule_week": "", "mode_id": ""},
|
|
303
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631462400", "schedule_week": "", "mode_id": ""},
|
|
304
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631548800", "schedule_week": "", "mode_id": ""},
|
|
305
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631548800", "schedule_week": "", "mode_id": ""},
|
|
306
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631548800", "schedule_week": "", "mode_id": ""},
|
|
307
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631635200", "schedule_week": "", "mode_id": ""},
|
|
308
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631635200", "schedule_week": "", "mode_id": ""},
|
|
309
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631635200", "schedule_week": "", "mode_id": ""},
|
|
310
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631721600", "schedule_week": "", "mode_id": ""},
|
|
311
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631721600", "schedule_week": "", "mode_id": ""},
|
|
312
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631721600", "schedule_week": "", "mode_id": ""},
|
|
313
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631808000", "schedule_week": "", "mode_id": ""},
|
|
314
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631808000", "schedule_week": "", "mode_id": ""},
|
|
315
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631808000", "schedule_week": "", "mode_id": ""},
|
|
316
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631894400", "schedule_week": "", "mode_id": ""},
|
|
317
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631894400", "schedule_week": "", "mode_id": ""},
|
|
318
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631894400", "schedule_week": "", "mode_id": ""},
|
|
319
|
+ map[string]string{"schedule_type": "1", "schedule_date": "1631980800", "schedule_week": "", "mode_id": ""},
|
|
320
|
+ map[string]string{"schedule_type": "2", "schedule_date": "1631980800", "schedule_week": "", "mode_id": ""},
|
|
321
|
+ map[string]string{"schedule_type": "3", "schedule_date": "1631980800", "schedule_week": "", "mode_id": ""},
|
|
322
|
+ }
|
|
323
|
+ this.ServeSuccessJSON(map[string]interface{}{
|
|
324
|
+ "list": schedule,
|
|
325
|
+ "array": array,
|
|
326
|
+ })
|
236
|
327
|
}
|