保誠-保戶業務員媒合平台
Mila
2021-10-27 19e0e4458a4f7410c6970887c5cc2f89302219a8
PAMapp/plugins/api/home.ts
@@ -8,57 +8,73 @@
                id: 0,
                name: '張小美',
                img: 'https://randomuser.me/api/portraits/women/31.jpg',
                loginState: '上線',
                satisfaction: 4.8
                new: false,
                tags: ['財務規劃', '資產轉移'],
                satisfaction: 4.8,
                reserve: false
            },
            {
                id: 1,
                name: '蔣帥哥',
                img: 'https://randomuser.me/api/portraits/men/32.jpg',
                loginState: '上線',
                satisfaction: 4
                new: true,
                tags: [],
                satisfaction: 4,
                reserve: false
            },
            {
                id: 2,
                name: '林美女',
                img: 'https://randomuser.me/api/portraits/women/33.jpg',
                loginState: '離線',
                satisfaction: 5
                new: false,
                tags: ['財務規劃', '資產轉移'],
                satisfaction: 5,
                reserve: true
            },
            {
                id: 3,
                name: '蔡美眉',
                img: 'https://randomuser.me/api/portraits/women/34.jpg',
                loginState: '上線',
                satisfaction: 4.3
                new: true,
                tags: ['財務規劃', '資產轉移'],
                satisfaction: 4.3,
                reserve: false
            },
            {
                id: 4,
                name: '張小美',
                img: 'https://randomuser.me/api/portraits/women/35.jpg',
                loginState: '忙碌',
                satisfaction: 4.8
                state: '忙碌',
                tags: [],
                satisfaction: 4.8,
                reserve: true
            },
            {
                id: 5,
                name: '蔣帥哥',
                img: 'https://randomuser.me/api/portraits/men/36.jpg',
                loginState: '離線',
                satisfaction: 4
                new: true,
                tags: ['財務規劃', '資產轉移'],
                satisfaction: 4,
                reserve: false
            },
            {
                id: 6,
                name: '林美女',
                img: 'https://randomuser.me/api/portraits/women/37.jpg',
                loginState: '忙碌',
                satisfaction: 5
                state: '忙碌',
                tags: [],
                satisfaction: 5,
                reserve: false
            },
            {
                id: 7,
                name: '蔡美眉',
                img: 'https://randomuser.me/api/portraits/women/38.jpg',
                loginState: '上線',
                satisfaction: 4.3
                new: false,
                tags: [],
                satisfaction: 4.3,
                reserve: true
            }
        ]
        return CommonService.prototype.withDebugData(debugData, 'https://randomuser.me/api/')
@@ -69,6 +85,8 @@
    id: number,
    name: string,
    img: string,
    loginState: string,
    satisfaction: number
    new: boolean,
    satisfaction: number,
    tags: string[],
    reserve: boolean
  }