zm
2021-03-25 d84ff6053b22269a6c59dc005e9efb8de6595988
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
<?php
/**
 * link: http://www.zjhejiang.com/
 * copyright: Copyright (c) 2018 浙江禾匠信息科技有限公司
 * author: wxf
 */
 
 
namespace app\forms;
 
use app\core\response\ApiCode;
use app\models\Model;
use app\plugins\Plugin;
 
 
class PickLinkForm extends Model
{
    const OPEN_TYPE_1 = 'redirect';
    const OPEN_TYPE_2 = 'navigate';
    const OPEN_TYPE_3 = 'app';
    const OPEN_TYPE_4 = 'contact';
    const OPEN_TYPE_5 = 'clear_cache';
    const OPEN_TYPE_6 = 'tel';
 
    // 忽略的场景
    const IGNORE_TITLE = 'title'; // 页面标题
    const IGNORE_NAVIGATE = 'navigate'; // 导航底栏
    // 适用场景
    const ONLY_PAGE = 'app_page'; // 页面
 
    public $ignore;
    public $only;
 
    /**
     * 小程序菜单跳转链接
     * @param $links
     * @return mixed|string
     */
    public function getList($links)
    {
//        $links = $this->links();
 
        $list = [];
        $id = 1;
        foreach ($links as $k => $item) {
            $item['id'] = $id++;
            $list[] = $item;
        }
 
        $newList = [];
        foreach ($list as $item) {
            if ($this->ignore && isset($item['ignore']) && in_array($this->ignore, $item['ignore'])) {
                continue;
            }
            if (isset($item['only']) && !in_array($this->only, $item['only'])) {
                continue;
            }
            if (isset($item['type']) && $item['type'] === 'base') {
                $newList['base'][] = $item;
            } elseif (isset($item['type']) && $item['type'] === 'marketing') {
                $newList['marketing'][] = $item;
            } elseif (isset($item['type']) && $item['type'] === 'order') {
                $newList['order'][] = $item;
            } elseif (isset($item['type']) && $item['type'] === 'diy') {
                $newList['diy'][] = $item;
            } else {
                $newList['plugin'][] = $item;
            }
        }
 
        return $newList;
    }
 
    /**
     * 导航链接
     * @return array
     * [
     * type: 所属的标签base--基础|marketing--营销|plugin--插件|order--订单|diy--diy
     * name: 链接名称
     * open_type: 链接操作方式 OPEN_TYPE_1--跳转|OPEN_TYPE_2--重定向|OPEN_TYPE_3--跳转小程序|OPEN_TYPE_4--客服
     *            |OPEN_TYPE_5--清除缓存|OPEN_TYPE_6--拨号
     * icon: 链接图标
     * value: 链接的路径
     * params: 链接上的参数
     * key: 链接的权限
     * ignore: 链接忽略场景 IGNORE_TITLE--页面标题|IGNORE_NAVIGATE--导航底栏
     * only: 链接只只用于这些场景 ONLY_PAGE--页面
     * ]
     */
    private function links()
    {
        $iconUrlPrefix = \Yii::$app->request->hostInfo . \Yii::$app->request->baseUrl .
            '/statics/img/mall/pick-link/';
 
        $list = [
            [
                'type' => 'base',
                'name' => '商城首页',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-index.png',
                'value' => '/pages/index/index',
            ],
            [
                'type' => 'marketing',
                'name' => '分销中心',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-share-center.png',
                'value' => '/pages/share/index/index',
                'key' => 'share',
            ],
            [
                'type' => 'marketing',
                'name' => '我的卡券',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-user-card.png',
                'value' => '/pages/card/index/index',
            ],
            [
                'type' => 'marketing',
                'name' => '我的优惠券',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-user-coupons.png',
                'value' => '/pages/coupon/index/index',
                'key' => 'coupon',
            ],
            [
                'type' => 'marketing',
                'name' => '领券中心',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-coupons.png',
                'value' => '/pages/coupon/list/list',
                'key' => 'coupon',
            ],
            [
                'type' => 'base',
                'name' => '我的收藏',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-favorite.png',
                'value' => '/pages/favorite/favorite',
            ],
            [
                'type' => 'marketing',
                'name' => '积分明细',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-integral.png',
                'value' => '/pages/user-center/integral-detail/integral-detail',
            ],
            [
                'type' => 'base',
                'name' => '联系我们',
                'open_type' => self::OPEN_TYPE_6,
                'icon' => $iconUrlPrefix . 'icon-contact.png',
                'value' => 'tel',
                'params' => [
                    [
                        'key' => 'tel',
                        'value' => '',
                        'desc' => '请填写联系电话',
                        'is_required' => true,
                        'data_type' => 'text'
                    ]
                ],
                'ignore' => [self::IGNORE_TITLE]
            ],
            [
                'type' => 'base',
                'name' => '文章中心',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-article.png',
                'value' => '/pages/article/article-list/article-list',
            ],
            [
                'type' => 'base',
                'name' => '文章详情',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-article-detail.png',
                'value' => '/pages/article/article-detail/article-detail',
                'params' => [
                    [
                        'key' => 'id',
                        'value' => '',
                        'desc' => '请填写文章ID',
                        'is_required' => true,
                        'data_type' => 'number',
                        'page_url' => 'mall/article/index',
                        'pic_url' => $iconUrlPrefix . 'example_image/article-id.png',
                        'page_url_text' => '内容管理->文章列表'
                    ]
                ]
            ],
            [
                'type' => 'base',
                'name' => '收货地址',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-address.png',
                'value' => '/pages/address/address',
            ],
            [
                'type' => 'base',
                'name' => '绑定手机号',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-user-bangding.png',
                'value' => '/pages/binding/binding',
            ],
            [
                'type' => 'base',
                'name' => '余额支付密码',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-password.png',
                'value' => '/pages/balance/password',
            ],
            [
                'type' => 'order',
                'name' => '我的订单',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-order.png',
                'value' => '/pages/order/index/index',
                'params' => [
                    [
                        'key' => 'status',
                        'value' => '',
                        'desc' => "status 请填写状态, 为空则跳转为 全部订单",
                        'is_required' => false,
                        'data_type' => 'number'
                    ]
                ],
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'order',
                'name' => '全部订单',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-order-all.png',
                'value' => '/pages/order/index/index?status=0',
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'order',
                'name' => '待付款',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-order-0.png',
                'value' => '/pages/order/index/index?status=1',
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'order',
                'name' => '待发货',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-order-1.png',
                'value' => '/pages/order/index/index?status=2',
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'order',
                'name' => '待收货',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-order-2.png',
                'value' => '/pages/order/index/index?status=3',
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'order',
                'name' => '待评价',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-order-3.png',
                'value' => '/pages/order/index/index?status=4',
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'order',
                'name' => '售后',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-order-4.png',
                'value' => '/pages/order/index/index?status=5',
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'base',
                'name' => '清除缓存',
                'open_type' => self::OPEN_TYPE_5,
                'icon' => $iconUrlPrefix . 'icon-clear-cache.png',
                'value' => self::OPEN_TYPE_5,
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'base',
                'name' => '购物车',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-cart.png',
                'value' => '/pages/cart/cart',
            ],
            [
                'type' => 'base',
                'name' => '分类',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-cats.png',
                'value' => '/pages/cats/cats',
                'params' => [
                    [
                        'key' => 'cat_id',
                        'value' => '',
                        'desc' => 'cat_id 请填写在商品分类中相关分类的ID',
                        'is_required' => false,
                        'data_type' => 'number',
                        'page_url' => 'mall/cat/index',
                        'pic_url' => $iconUrlPrefix . 'example_image/cat-id.png',
                        'page_url_text' => '商品管理->分类'
                    ]
                ]
            ],
            [
                'type' => 'base',
                'name' => '会员中心',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-member-center.png',
                'value' => '/pages/member/index/index',
            ],
            [
                'type' => 'base',
                'name' => '用户中心',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-user-center.png',
                'value' => '/pages/user-center/user-center',
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'base',
                'name' => '商品列表',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-goods.png',
                'value' => '/pages/goods/list',
                'params' => [
                    [
                        'key' => 'cat_id',
                        'value' => "",
                        'desc' => 'cat_id 请填写在商品分类中相关分类的ID',
                        'is_required' => false,
                        'data_type' => 'number',
                        'page_url' => 'mall/cat/index',
                        'pic_url' => $iconUrlPrefix . 'example_image/cat-id.png',
                        'page_url_text' => '商品管理->分类'
                    ]
                ]
            ],
            [
                'type' => 'base',
                'name' => '商品详情',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-goods-detail.png',
                'value' => '/pages/goods/goods',
                'params' => [
                    [
                        'key' => 'id',
                        'value' => '',
                        'desc' => 'id请填写在商品列表中相关商品的ID',
                        'is_required' => true,
                        'data_type' => 'number',
                        'page_url' => 'mall/goods/index',
                        'pic_url' => $iconUrlPrefix . 'example_image/goods-id.png',
                        'page_url_text' => '商品管理->商品列表'
                    ]
                ],
                'ignore' => [PickLinkForm::IGNORE_TITLE, PickLinkForm::IGNORE_NAVIGATE],
            ],
            [
                'type' => 'base',
                'name' => '专题列表',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-topic.png',
                'value' => '/pages/topic/list',
                'params' => [
                    [
                        'key' => 'type',
                        'value' => '',
                        'desc' => 'type请填写在专题分类中的ID',
                        'is_required' => false,
                        'data_type' => 'number',
                        'page_url' => 'mall/topic-type/index',
                        'pic_url' => $iconUrlPrefix . 'example_image/topic-cat-id.png',
                        'page_url_text' => '内容管理->专题分类'
                    ]
                ],
                'key' => 'topic',
            ],
            [
                'type' => 'base',
                'name' => '专题详情',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-topic-detail.png',
                'value' => '/pages/topic/topic',
                'params' => [
                    [
                        'key' => 'id',
                        'value' => '',
                        'desc' => 'id 请填写在专题列表中相关专题的ID',
                        'is_required' => true,
                        'data_type' => 'number',
                        'page_url' => 'mall/topic/index',
                        'pic_url' => $iconUrlPrefix . 'example_image/topic-id.png',
                        'page_url_text' => '内容管理->专题'
                    ]
                ],
                'key' => 'topic',
                'ignore' => [PickLinkForm::IGNORE_NAVIGATE],
            ],
            [
                'type' => 'base',
                'name' => '跳转小程序',
                'open_type' => self::OPEN_TYPE_3,
                'icon' => $iconUrlPrefix . 'icon-mini.png',
                'value' => self::OPEN_TYPE_3,
//                'page_url' => 'plugin/wxapp/app-upload',
//                'page_url_text' => '小程序发布->可跳转小程序设置',
                'remark' => '每次设置跳转,都需到小程序发布,重新添加跳转小程序appId,并重新发布。',
                'params' => [
                    [
                        'key' => 'username',
                        'value' => '',
                        'desc' => '[公众号]所需跳转的小程序原始id,即小程序对应的以gh_开头的id',
                        'is_required' => false
                    ],
                    [
                        'key' => 'we_path',
                        'value' => '',
                        'desc' => '[公众号]所需跳转的小程序内页面路径及参数',
                        'is_required' => false
                    ],
                    [
                        'key' => 'app_id',
                        'value' => '',
                        'desc' => '[微信]要打开的小程序AppId',
                        'is_required' => false
                    ],
                    [
                        'key' => 'path',
                        'value' => '',
                        'desc' => '[微信]打开的页面路径,如pages/index/index,开头请勿加“/”',
                        'is_required' => false
                    ],
 
                    [
                        'key' => 'ali_app_id',
                        'value' => '',
                        'desc' => '[支付宝]要打开的小程序AppId',
                        'is_required' => false
                    ],
                    [
                        'key' => 'ali_path',
                        'value' => '',
                        'desc' => '[支付宝]打开的页面路径,如pages/index/index,开头请勿加“/”',
                        'is_required' => false
                    ],
 
                    [
                        'key' => 'tt_app_id',
                        'value' => '',
                        'desc' => '[抖音头条]要打开的小程序AppId',
                        'is_required' => false
                    ],
                    [
                        'key' => 'tt_path',
                        'value' => '',
                        'desc' => '[抖音头条]打开的页面路径,如pages/index/index,开头请勿加“/”',
                        'is_required' => false
                    ],
 
                    [
                        'key' => 'bd_app_key',
                        'value' => '',
                        'desc' => '[百度]要打开的小程序AppKey',
                        'is_required' => false
                    ],
                    [
                        'key' => 'bd_path',
                        'value' => '',
                        'desc' => '[百度]打开的页面路径,如pages/index/index,开头请勿加“/”',
                        'is_required' => false
                    ],
                ],
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'base',
                'name' => '网页链接',
                'open_type' => 'web',
                'icon' => $iconUrlPrefix . 'icon-web-link.png',
                'value' => '/pages/web/web',
                'params' => [
                    [
                        'key' => 'url',
                        'value' => '',
                        'desc' => '打开的网页链接(注:域名必须已在微信官方小程序平台设置业务域名)',
                        'is_required' => true
                    ]
                ],
                'ignore' => [PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'base',
                'name' => '门店列表',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-store.png',
                'value' => '/pages/store/store',
            ],
            [
                'type' => 'base',
                'name' => '门店详情',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-store.png',
                'value' => '/pages/store/detail',
                'params' => [
                    [
                        'key' => 'id',
                        'value' => '',
                        'desc' => '门店ID',
                        'is_required' => true,
                        'page_url' => 'mall/store/index',
                        'page_url_text' => '店铺管理->门店管理'
                    ]
                ],
            ],
            [
                'type' => 'base',
                'name' => '快速购买',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-quick-shop.png',
                'value' => '/pages/quick-shop/quick-shop',
            ],
            [
                'type' => 'marketing',
                'name' => '充值中心',
                'new_name' => '',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-recharge.png',
                'value' => '/pages/balance/recharge',
            ],
            [
                'type' => 'marketing',
                'name' => '余额记录',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-recharge.png',
                'value' => '/pages/balance/balance',
            ],
            [
                'type' => 'base',
                'name' => '搜索页',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-search.png',
                'value' => '/pages/search/search',
            ],
            [
                'type' => 'base',
                'name' => '客服',
                'open_type' => self::OPEN_TYPE_4,
                'icon' => $iconUrlPrefix . 'icon-service.png',
                'value' => self::OPEN_TYPE_4,
                'ignore' => [self::IGNORE_TITLE]
            ],
            [
                'type' => 'base',
                'name' => '视频专区',
                'new_name' => '专区',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-search.png',
                'value' => '/pages/video/video',
                'key' => 'video',
            ],
            [
                'type' => 'base',
                'name' => '我的足迹',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-foot.png',
                'value' => '/pages/foot/index/index',
                'ignore' => [PickLinkForm::IGNORE_NAVIGATE],
            ],
            [
                'type' => 'base',
                'name' => '账单总结',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-summary.png',
                'value' => '/pages/foot/summary/summary',
                'ignore' => [PickLinkForm::IGNORE_NAVIGATE],
            ],
            [
                'type' => 'marketing',
                'name' => '优惠券详情',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-summary.png',
                'value' => '/pages/coupon/details/details',
                'params' => [
                    [
                        'key' => 'id',
                        'value' => '',
                        'desc' => '请填写优惠券ID',
                        'is_required' => true,
                        'data_type' => 'number',
                    ]
                ],
                'ignore' => [PickLinkForm::IGNORE_NAVIGATE],
                'key' => 'coupon',
            ],
            [
                'type' => 'marketing',
                'name' => '分销商专属链接',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-summary.png',
                'value' => '/pages/index/index',
                'params' => [
                    [
                        'key' => 'user_id',
                        'value' => '',
                        'desc' => '请填写分销商用户ID',
                        'is_required' => true,
                        'data_type' => 'number',
                    ]
                ],
                'ignore' => [PickLinkForm::IGNORE_NAVIGATE],
                'only' => [PickLinkForm::ONLY_PAGE],
            ],
            [
                'type' => 'marketing',
                'key' => 'live',
                'name' => '直播列表',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-live.png',
                'value' => '/pages/live/index',
            ],
            [
                'type' => 'marketing',
                'key' => 'live',
                'name' => '直播详情',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-live.png',
                'value' => 'plugin-private://wx2b03c6e691cd7370/pages/live-player-plugin',
                'params' => [
                    [
                        'key' => 'room_id',
                        'value' => '',
                        'desc' => '直播房间ID',
                        'is_required' => true,
                        'data_type' => 'number',
                    ]
                ],
                'ignore' => [PickLinkForm::ONLY_PAGE, PickLinkForm::IGNORE_TITLE],
            ],
            [
                'type' => 'marketing',
                'name' => '满减优惠',
                'open_type' => '',
                'icon' => $iconUrlPrefix . 'icon-full-reduce.png',
                'value' => '/pages/full_reduce/index/index',
            ],
        ];
 
        $newList = [];
        try {
            if (\Yii::$app->appPlatform != 'webapp') {
                throw new \Exception('小程序端');
            }
            foreach ($list as $item) {
                if (\Yii::$app->role->checkLink($item)) {
                    $newList[] = $item;
                }
            }
 
            $plugins = \Yii::$app->role->getPluginList();
            foreach ($plugins as $plugin) {
                if (method_exists($plugin, 'getPickLink')) {
                    $newList = array_merge($newList, $plugin->getPickLink());
                }
            }
        } catch (\Exception $exception) {
            $newList = $list;
            $plugins = \Yii::$app->plugin->list;
            foreach ($plugins as $plugin) {
                $PluginClass = 'app\\plugins\\' . $plugin->name . '\\Plugin';
                /** @var Plugin $pluginObject */
                if (!class_exists($PluginClass)) {
                    continue;
                }
                $object = new $PluginClass();
                if (method_exists($object, 'getPickLink')) {
                    $newList = array_merge($newList, $object->getPickLink());
                }
            }
        }
 
        foreach ($newList as &$item) {
            if (!$item['open_type']) {
                $item['open_type'] = 'navigate';
            }
        }
        unset($item);
 
        return $newList;
    }
 
    /**
     * @return array
     * 小程序页面链接(去掉一部分分页面链接)
     */
    public function appPage()
    {
        $list = $this->links();
        foreach ($list as $index => $item) {
            if (!($item['open_type'] == '' || $item['open_type'] == 'navigate' || $item['open_type'] == 'redirect')) {
                unset($list[$index]);
            }
        }
        $list = array_values($list);
        $list = $this->getList($list);
        $pluginList = \Yii::$app->mall->role->getPluginList();
        $webUri = [];
        foreach ($pluginList as $plugin) {
            if (method_exists($plugin, 'getWebUri')) {
                $webUri[$plugin->getName()] = rtrim($plugin->getWebUri(), '/');
            }
        }
        return [
            'code' => ApiCode::CODE_SUCCESS,
            'msg' => '请求成功',
            'data' => [
                'list' => $list,
                'webUri' => $webUri
            ]
        ];
    }
 
    /**
     * @return array
     * 跳转链接
     */
    public function getLink()
    {
        $list = $this->links();
        $list = $this->getList($list);
        return [
            'code' => ApiCode::CODE_SUCCESS,
            'msg' => '请求成功',
            'data' => [
                'list' => $list
            ]
        ];
    }
 
 
    /**
     * @return array
     * 小程序端页面标题
     */
    public function getTitle()
    {
        $res = $this->links();
 
        $newList = [];
        foreach ($res as $item) {
            // 删除不需要在标题中显示的内容
            if (isset($item['ignore']) && in_array('title', $item['ignore'])) {
                continue;
            }
            if ($item['value']) {
                $newList[] = [
                    'name' => $item['name'],
                    'value' => $item['value'],
                    'new_name' => $item['new_name'] ?? $item['name'],
                ];
            }
        }
 
        return $newList;
    }
 
    public static function getCommon()
    {
        return new self();
    }
}