-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
1046 lines (1046 loc) · 23.4 KB
/
Copy pathdb.json
File metadata and controls
1046 lines (1046 loc) · 23.4 KB
1
2
3
4
5
6
7
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"userlist": [
{
"id": "001",
"username": "张三",
"sex": "男",
"age": "77",
"tel": "13468092456",
"regist_time": "2022-09-30",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": "001"
},
{
"id": "002",
"username": "晓晓",
"sex": "女",
"age": "21",
"tel": "14356783456",
"regist_time": "2021-01-04",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": "002"
},
{
"id": "003",
"username": "小梅",
"sex": "女",
"age": "22",
"tel": "13465353456",
"regist_time": "2019-06-05",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": "003"
},
{
"id": "004",
"tel": "15427547865",
"username": "柱子",
"age": "33",
"sex": "男",
"regist_time": "2017-02-07",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 3
},
{
"id": "006",
"tel": "17809345782",
"username": "小芳",
"age": "23",
"sex": "女",
"regist_time": "2021-02-13",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 4
},
{
"id": "007",
"tel": "16534566554",
"username": "狗剩",
"age": "45",
"sex": "男",
"regist_time": "2018-07-19",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 5
},
{
"id": "008",
"tel": "13454342345",
"username": "红梅",
"age": "23",
"sex": "女",
"regist_time": "2020-03-07",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 6
},
{
"id": "009",
"tel": "13454452345",
"username": "绿梅",
"age": "21",
"sex": "女",
"regist_time": "2017-03-07",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 7
},
{
"id": "010",
"tel": "13954342345",
"username": "石飞",
"age": "28",
"sex": "男",
"regist_time": "2010-08-17",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 8
},
{
"id": "011",
"tel": "18754934345",
"username": "叶凡",
"age": "34",
"sex": "男",
"regist_time": "2016-10-24",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 9
},
{
"id": "012",
"tel": "17084242343",
"username": "小费",
"age": "12",
"sex": "男",
"regist_time": "2007-11-07",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 10
},
{
"id": "013",
"tel": "18493722345",
"username": "吴晗",
"age": "43",
"sex": "男",
"regist_time": "2021-03-09",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 11
},
{
"id": "014",
"tel": "18902648245",
"username": "姬紫月",
"age": "21",
"sex": "女",
"regist_time": "2001-03-27",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 12
},
{
"id": "015",
"tel": "19023072345",
"username": "安澜",
"age": "26",
"sex": "女",
"regist_time": "2003-7-18",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 13
},
{
"id": "017",
"tel": "13278930423",
"username": "莉莉",
"age": "19",
"sex": "女",
"regist_time": "2020-12-31",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 14
},
{
"id": "018",
"tel": "14378092398",
"username": "芳芳",
"age": "15",
"sex": "女",
"regist_time": "2021-02-23",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 15
},
{
"id": "019",
"tel": "14387092384",
"username": "严莉莉",
"age": "34",
"sex": "女",
"regist_time": "2004-02-04",
"ligin_count": "15",
"code": "700",
"ip_adress": "127.0.0.1",
"key": 16
},
{
"id": "020",
"username": "李爽",
"sex": "男",
"age": "23",
"tel": "15849644915",
"regist_time": "2022-09-23",
"ligin_count": "151",
"code": "100000",
"ip_adress": "192.168.0.0",
"key": "020"
},
{
"id": "021",
"username": "李轩逸",
"sex": "男",
"age": "23",
"tel": "15849644915",
"regist_time": "2022-09-23",
"ligin_count": "151",
"code": "100000",
"ip_adress": "192.168.0.0",
"key": "021"
}
],
"commuinfo": [
{
"id": "001",
"username": "张三",
"tel": "17347832992",
"adress": "宇智波街道23号",
"mailcode": "786900",
"local": "火之国木叶村",
"qqcode": "121212",
"states": "未审核",
"email": "121212@qq.com"
},
{
"id": "002",
"username": "李四1",
"tel": "17347832992",
"adress": "宇智波街道23号",
"email": "121212@qq.com",
"local": "火之国木叶村",
"qqcode": "121212",
"states": "已审核",
"mailcode": "786900"
},
{
"id": "003",
"username": "王二",
"tel": "17347832992",
"adress": "宇智波街道23号",
"email": "121212@qq.com",
"local": "火之国木叶村",
"qqcode": "121212",
"states": "待审核",
"mailcode": "786900"
},
{
"id": "004",
"username": "鼬子",
"tel": "17347832992",
"adress": "宇智波街道23号",
"email": "121212@qq.com",
"local": "火之国木叶村",
"qqcode": "121212",
"states": "待审核",
"mailcode": "786900"
},
{
"id": "005",
"username": "春野樱",
"tel": "13209788638",
"states": "待审核",
"local": "长版区",
"adress": "死亡大街",
"mailcode": "454455",
"qqcode": "2132313",
"email": "2132313@qq.com"
},
{
"id": "006",
"username": "谢连芬",
"tel": "18756327653",
"states": "待审核",
"local": "西安市雁塔区",
"adress": "科技四路",
"mailcode": "784384",
"qqcode": "34658253",
"email": "34658253@qq.com",
"key": 3
},
{
"id": "007",
"username": "小丽",
"tel": "14390872834",
"states": "待审核",
"local": "天津市长乐区",
"adress": "拐子街98号",
"mailcode": "456445",
"qqcode": "3564245",
"email": "3564245@qq.com"
},
{
"id": "009",
"username": "江姐2",
"tel": "18939932454",
"states": "待审核",
"local": "陕西省延安市",
"adress": "浦路街44号",
"mailcode": "433232",
"qqcode": "542453",
"email": "542453@qq.com",
"key": 6
},
{
"id": "010",
"username": "淑艳芬",
"tel": "18434240883",
"states": "待审核",
"local": "陕西省汉中市",
"adress": "大帆大道天子街3号",
"mailcode": "909898",
"qqcode": "5445543",
"email": "5445543@qq.com"
},
{
"id": "011",
"username": "江姐2",
"tel": "18939932454",
"states": "待审核",
"local": "陕西省延安市",
"adress": "浦路街44号",
"mailcode": "433232",
"qqcode": "542453",
"email": "542453@qq.com",
"key": 6
},
{
"id": "012",
"username": "淑艳芬",
"tel": "18434240883",
"states": "待审核",
"local": "陕西省汉中市",
"adress": "大帆大道天子街3号",
"mailcode": "909898",
"qqcode": "5445543",
"email": "5445543@qq.com"
},
{
"id": "013",
"username": "淑艳芬",
"tel": "18434240883",
"states": "待审核",
"local": "陕西省汉中市",
"adress": "大帆大道天子街3号",
"mailcode": "909898",
"qqcode": "5445543",
"email": "5445543@qq.com"
},
{
"id": "014",
"username": "淑艳芬",
"tel": "18434240883",
"states": "待审核",
"local": "陕西省汉中市",
"adress": "大帆大道天子街3号",
"mailcode": "909898",
"qqcode": "5445543",
"email": "5445543@qq.com"
},
{
"id": "015",
"username": "淑艳芬",
"tel": "18434240883",
"states": "待审核",
"local": "陕西省汉中市",
"adress": "大帆大道天子街3号",
"mailcode": "909898",
"qqcode": "5445543",
"email": "5445543@qq.com"
},
{
"id": "1",
"username": "李轩逸",
"tel": "15849644915",
"adress": "呼和浩特民族学院",
"local": "呼和浩特",
"qqcode": "1648525695",
"states": "已审核",
"mailcode": "010000",
"email": "1648525695@qq.com"
}
],
"merchanlist": [
{
"id": "001",
"merchanname": "魏家凉皮",
"type": "早餐类",
"cost": "15",
"commrating": "98",
"local": "西安市火车站",
"num": "2",
"tranroute": "地铁3号线",
"tel": "0915-3223454",
"username": "陈老板",
"key": "001"
},
{
"id": "002",
"merchanname": "岐山臊子面",
"type": "面食类",
"cost": "18",
"commrating": "95",
"local": "山东省岐山县",
"num": "23",
"tranroute": "78路公交",
"tel": "0823-7656364",
"username": "马老板"
},
{
"id": "004",
"merchanname": "羊肉泡馍",
"type": "泡馍类",
"cost": "35",
"commrating": "91",
"local": "西安市雁塔区",
"num": "4",
"tranroute": "地铁2号线-地铁3号线",
"tel": "0734-2343783",
"username": "刘老板",
"key": 2
},
{
"id": "003",
"merchanname": "乾县豆腐脑",
"type": "早餐类",
"cost": "8",
"commrating": "78",
"local": "乾县",
"num": "7",
"tranroute": "步行",
"tel": "0342-6543232",
"username": "陈老板",
"key": 3
},
{
"id": "006",
"merchanname": "手抓饼",
"type": "小吃类",
"cost": "8",
"commrating": "88",
"local": "沛县疙瘩村",
"num": "36",
"tranroute": "驴拉车",
"tel": "0000-2323343",
"username": "无名氏",
"key": 4
},
{
"id": "005",
"merchanname": "水盆羊肉",
"type": "小吃类",
"cost": "250",
"commrating": "96",
"local": "渭南市",
"num": "2",
"tranroute": "34路公交",
"tel": "0873-2343263",
"username": "林老板"
},
{
"id": "007",
"merchanname": "羊肉馅饺子",
"type": "饺子类",
"cost": "20",
"commrating": "87",
"local": "老胡同",
"num": "8",
"tranroute": "滴滴快车",
"tel": "0232-4398923",
"username": "钱老板",
"key": 6
},
{
"id": "008",
"merchanname": "北京烤鸭",
"type": "烧烤类",
"cost": "199",
"commrating": "99",
"local": "北京市光明区",
"num": "1",
"tranroute": "地铁12号线-地铁8号线",
"tel": "0387-2398743",
"username": "魏老板"
},
{
"id": "009",
"merchanname": "蒸面",
"type": "早餐类",
"cost": "9",
"commrating": "95",
"local": "陕西省安康市",
"num": "2",
"tranroute": "高新8路公交",
"tel": "0915-3289032",
"username": "周老板"
},
{
"id": "010",
"merchanname": "烩菜煮馍",
"type": "小吃类",
"cost": "12",
"commrating": "81",
"local": "西安市雁塔区",
"num": "22",
"tranroute": "918路公交",
"tel": "0914-2424932",
"username": "冯老板"
},
{
"id": "011",
"merchanname": "自助火锅111",
"type": "火锅类",
"cost": "78",
"commrating": "89",
"local": "陕西省咸阳市",
"num": "9",
"tranroute": "滴滴",
"tel": "0876-3443982",
"username": "魏老板",
"key": "011"
},
{
"id": "012",
"merchanname": "牛肉面",
"type": "面食类",
"cost": "17",
"commrating": "90",
"local": "甘肃省",
"num": "5",
"tranroute": "地铁3号线",
"tel": "0934-3423543",
"username": "刘老板",
"key": "012"
}
],
"loginaccou": [
{
"id": "001",
"name": "北京烤鸭",
"tel": 13289763483,
"registime": "2022-09-25",
"root": "管理员",
"roottype": "中级",
"state": "启用",
"username": "张三",
"workcode": "0981",
"department": "行政部",
"position": "经理",
"logincount": "23",
"order": "240",
"safelevel": "中级",
"key": "001"
},
{
"id": "003",
"name": "正宗陕西泡馍",
"accouname": "hfytef",
"tel": "13468092456",
"registime": "2021-09-24",
"root": "管理员",
"roottype": "中级",
"state": "启用",
"username": "ccc",
"workcode": "0943",
"department": "餐饮部",
"position": "总经理",
"logincount": "123",
"order": "34",
"safelevel": "最高",
"key": "003"
},
{
"id": "002",
"name": "宏记商铺S",
"accouname": "767ghww",
"tel": "14378072737",
"registime": "2021-02-08",
"root": "管理员",
"roottype": "高级",
"state": "启用",
"username": "李振东",
"workcode": "2322",
"department": "人事部",
"position": "总策划",
"logincount": "34",
"order": "54",
"safelevel": "中级",
"key": "002"
},
{
"id": "004",
"name": "羊肉泡馍",
"accouname": "gubeils",
"tel": "13409268456",
"registime": "2021-09-24",
"root": "管理员",
"roottype": "高级",
"state": "启用",
"username": "ccc",
"workcode": "0943",
"department": "餐饮部",
"position": "总经理",
"logincount": "123",
"order": "34",
"safelevel": "最高",
"key": "004"
},
{
"id": "005",
"name": "乾县豆腐脑",
"accouname": "qweasd",
"tel": "13409268456",
"registime": "2021-09-24",
"root": "管理员",
"roottype": "中级",
"state": "启用",
"username": "ccc",
"workcode": "0943",
"department": "餐饮部",
"position": "总经理",
"logincount": "123",
"order": "34",
"safelevel": "最高",
"key": "005"
},
{
"id": "006",
"name": "水盆羊肉",
"accouname": "dream",
"tel": "13409268456",
"registime": "2021-09-24",
"root": "管理员",
"roottype": "高级",
"state": "启用",
"username": "ccc",
"workcode": "0943",
"department": "餐饮部",
"position": "总经理",
"logincount": "123",
"order": "34",
"safelevel": "最高",
"key": "006"
},
{
"id": "007",
"name": "蒸面",
"accouname": "dream",
"tel": "13409268456",
"registime": "2021-09-24",
"root": "管理员",
"roottype": "初级",
"state": "启用",
"username": "ccc",
"workcode": "0943",
"department": "餐饮部",
"position": "总经理",
"logincount": "123",
"order": "34",
"safelevel": "最高",
"key": "007"
},
{
"id": "008",
"name": "手抓饼",
"accouname": "dream",
"tel": "13409268456",
"registime": "2021-09-24",
"root": "管理员",
"roottype": "初级",
"state": "启用",
"username": "ccc",
"workcode": "0943",
"department": "餐饮部",
"position": "总经理",
"logincount": "123",
"order": "34",
"safelevel": "最高",
"key": "008"
},
{
"id": "009",
"name": "魏家凉皮",
"accouname": "dream",
"tel": "13409268456",
"registime": "2021-09-24",
"root": "管理员",
"roottype": "初级",
"state": "启用",
"username": "ccc",
"workcode": "0943",
"department": "餐饮部",
"position": "总经理",
"logincount": "123",
"order": "34",
"safelevel": "最高",
"key": "009"
},
{
"id": "010",
"name": "牛肉面",
"accouname": "dream",
"tel": "13409268456",
"registime": "2021-09-24",
"root": "管理员",
"roottype": "中级",
"state": "启用",
"username": "ccc",
"workcode": "0943",
"department": "餐饮部",
"position": "总经理",
"logincount": "123",
"order": "34",
"safelevel": "最高",
"key": "010"
},
{
"id": "011",
"name": "羊肉馅饺子1",
"accouname": "dream",
"tel": "13409268456",
"registime": "2021-09-24",
"root": "管理员",
"roottype": "中级",
"state": "启用",
"username": "ccc",
"workcode": "0943",
"department": "餐饮部",
"position": "总经理",
"logincount": "123",
"order": "34",
"safelevel": "最高",
"key": "011"
},
{
"id": "012",
"name": "全聚德",
"accouname": "quanjude",
"tel": "15520670857",
"registime": "2022-09-25",
"root": "管理员",
"roottype": "初级",
"state": "启用",
"username": "admin",
"workcode": "0981",
"department": "行政部",
"position": "经理",
"logincount": "123",
"order": "34",
"safelevel": "中级",
"key": "012"
},
{
"id": "013",
"name": "海底捞",
"accouname": "haidilao",
"tel": "15849644915",
"registime": "2022-09-25",
"root": "管理员",
"roottype": "高级",
"state": "启用",
"username": "admin",
"workcode": "0981",
"department": "行政部",
"position": "经理",
"logincount": "23",
"order": "240",
"safelevel": "最高",
"key": "013"
}
],
"orderlist": [
{
"id": "001",
"ordercode": "ewrwadw",
"ordertime": "2022-09-26",
"ordermoney": "99",
"goodsname": "牛市",
"goodscount": "6",
"ordertype": "支付宝",
"username": "小丽",
"state": "待配送",
"key": "001"
},
{
"id": "002",
"ordercode": "8gfd667gh6",
"ordertime": "2021-09-12",
"ordermoney": "49",
"goodsname": "鸡排",
"goodscount": "7",
"ordertype": "支付宝",
"username": "小芳",
"state": "配送中",
"key": "002"
},
{
"id": "003",
"ordercode": "8gfd667gh6",
"ordertime": "2021-09-12",
"ordermoney": "70",
"goodsname": "米线",
"goodscount": "7",
"ordertype": "支付宝",
"username": "小芳",
"state": "已收货",
"key": "003"
},
{
"id": "004",
"ordercode": "sdsdsfdfd",
"ordertime": "2021-09-12",
"ordermoney": "460",
"goodsname": "北京烤鸭",
"goodscount": "4",
"ordertype": "微信",
"username": "小芳",
"state": "已收货",
"key": 4
},
{
"id": "005",
"ordercode": "gtyyyhdgd",
"ordertime": "2021-09-12",
"ordermoney": "120",
"goodsname": "牛肉面",
"goodscount": "10",
"ordertype": "支付宝",
"username": "小芳",
"state": "已收货",
"key": 5
},
{
"id": "006",
"ordercode": "grsrrsrs",
"ordertime": "2021-09-12",
"ordermoney": "120",
"goodsname": "羊肉馅饺子",
"goodscount": "6",
"ordertype": "微信",
"username": "小芳",
"state": "已收货",
"key": 6
},
{
"id": "007",
"ordercode": "mikulujh",
"ordertime": "2021-09-12",
"ordermoney": "250",
"goodsname": "水盆羊肉",
"goodscount": "1",
"ordertype": "支付宝",
"username": "小芳",
"state": "已收货",
"key": 7
},
{
"id": "008",
"ordercode": "dwfdsvdg",
"ordertime": "2021-09-12",
"ordermoney": "120",
"goodsname": "手抓饼",
"goodscount": "30",
"ordertype": "支付宝",
"username": "小芳",
"state": "已收货",
"key": 8
},
{
"id": "009",
"ordercode": "gttjuki",
"ordertime": "2021-09-12",
"ordermoney": "120",
"goodsname": "乾县豆腐脑",
"goodscount": "20",
"ordertype": "支付宝",
"username": "小芳",
"state": "已收货",
"key": 9
},
{
"id": "010",
"ordercode": "grthyjuu",
"ordertime": "2021-09-12",
"ordermoney": "120",
"goodsname": "羊肉泡馍",
"goodscount": "3",
"ordertype": "微信",
"username": "小芳",
"state": "已收货",
"key": 10
},
{
"id": "011",
"ordercode": "gfeefef",
"ordertime": "2021-09-12",
"ordermoney": "167",
"goodsname": "岐山臊子面",
"goodscount": "18",
"ordertype": "支付宝",
"username": "小芳",
"state": "已收货",
"key": 11
},
{
"id": "012",
"ordercode": "vcbghgr",
"ordertime": "2021-09-12",
"ordermoney": "120",
"goodsname": "魏家凉皮",
"goodscount": "9",
"ordertype": "微信",
"username": "小芳",
"state": "已收货",
"key": 12
},
{
"id": "013",
"ordercode": "djsdskdo",
"ordertime": "2022-09-27",
"ordermoney": "20",
"goodsname": "汉堡",
"goodscount": "1",
"ordertype": "支付宝",
"username": "小李",
"state": "已收货",
"key": "013"
}
],
"loginadmin": [
{
"id": "0001",
"username": "李爽",
"userpass": "123",
"paths": [
{
"path": "/layouts/userlist"
},
{
"path": "/layouts/commuinfo"
},
{
"path": "/layouts/userstati"
}
]
},
{
"id": "0002",
"email": "123456@qq.com",
"userpass": "123",
"paths": [
{
"path": "/layouts/orderlist"
},
{
"path": "/layouts/orderstati"
}
]
},
{
"id": "0003",
"username": "小芬",
"userpass": "123",
"paths": [
{
"path": "/layouts/merchanlist"
},
{
"path": "/layouts/loginaccou"
},
{
"path": "/layouts/merchas"
}
]
},
{
"id": "0004",
"username": "root",
"userpass": "123",
"paths": [
{
"path": "/layouts/userlist"