保誠-保戶業務員媒合平台
Mila
2021-10-27 19e0e4458a4f7410c6970887c5cc2f89302219a8
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
 
import { CommonService } from '~/plugins/api/common';
 
export default () => ({
    recommendConsultantList(){
        const debugData = [
            {
                id: 0,
                name: '張小美',
                img: 'https://randomuser.me/api/portraits/women/31.jpg',
                new: false,
                tags: ['財務規劃', '資產轉移'],
                satisfaction: 4.8,
                reserve: false
            },
            {
                id: 1,
                name: '蔣帥哥',
                img: 'https://randomuser.me/api/portraits/men/32.jpg',
                new: true,
                tags: [],
                satisfaction: 4,
                reserve: false
            },
            {
                id: 2,
                name: '林美女',
                img: 'https://randomuser.me/api/portraits/women/33.jpg',
                new: false,
                tags: ['財務規劃', '資產轉移'],
                satisfaction: 5,
                reserve: true
            },
            {
                id: 3,
                name: '蔡美眉',
                img: 'https://randomuser.me/api/portraits/women/34.jpg',
                new: true,
                tags: ['財務規劃', '資產轉移'],
                satisfaction: 4.3,
                reserve: false
            },
            {
                id: 4,
                name: '張小美',
                img: 'https://randomuser.me/api/portraits/women/35.jpg',
                state: '忙碌',
                tags: [],
                satisfaction: 4.8,
                reserve: true
            },
            {
                id: 5,
                name: '蔣帥哥',
                img: 'https://randomuser.me/api/portraits/men/36.jpg',
                new: true,
                tags: ['財務規劃', '資產轉移'],
                satisfaction: 4,
                reserve: false
            },
            {
                id: 6,
                name: '林美女',
                img: 'https://randomuser.me/api/portraits/women/37.jpg',
                state: '忙碌',
                tags: [],
                satisfaction: 5,
                reserve: false
            },
            {
                id: 7,
                name: '蔡美眉',
                img: 'https://randomuser.me/api/portraits/women/38.jpg',
                new: false,
                tags: [],
                satisfaction: 4.3,
                reserve: true
            }
        ]
        return CommonService.prototype.withDebugData(debugData, 'https://randomuser.me/api/')
    }
})
 
export interface Agents {
    id: number,
    name: string,
    img: string,
    new: boolean,
    satisfaction: number,
    tags: string[],
    reserve: boolean
  }