保誠-保戶業務員媒合平台
PAMapp/store/index.ts
@@ -1,12 +1,12 @@
import { Module, VuexModule, Mutation, Action } from 'vuex-module-decorators'
import { ClientInfo, getMyAppointmentList, getMyReviewLog, allAppointmentsView } from '~/assets/ts/api/appointment';
// import * as consultant from '~/assets/ts/api/consultant';
import { recommend, AgentOfStrictQuery, getFavoriteConsultant, addFavoriteConsultant, deleteConsultant, strictQuery } from '~/assets/ts/api/consultant';
import { Consultant } from '~/assets/ts/models/consultant.model';
import { isLogin } from '~/assets/ts/auth';
import { AppointmentLog } from '~/assets/ts/models/appointment.model';
import { ClientInfo, getMyAppointmentList, getMyReviewLog } from '~/assets/ts/api/appointment';
import { recommend, AgentOfStrictQuery, addFavoriteConsultant, deleteConsultant, strictQuery } from '~/assets/ts/api/consultant';
import { getFavoriteFromStorage, setFavoriteToStorage } from '~/assets/ts/storageConsultant';
import  myConsultantService from '~/assets/ts/services/my-consultant.service';
import { Consultant } from '~/assets/ts/models/consultant.model';
import { AppointmentLog } from '~/assets/ts/models/appointment.model';
@Module
export default class Store extends VuexModule {
    recommendList: Consultant[] = [];
@@ -16,6 +16,10 @@
    myAppointmentList: ClientInfo[] = [];
    myAppointmentReviewLogList: AppointmentLog[] = [];
    get isUserLogin() {
        return this.context.getters['localStorage/isUserLogin'];
    }
    @Mutation updateRecommend(data: Consultant[]) {
        this.recommendList = data;
@@ -46,7 +50,8 @@
    @Action
    async storeConsultantList() {
        const localData = getFavoriteFromStorage();
        if (!isLogin()) {
        if (!this.isUserLogin) {
            this.context.commit('updateConsultantList', localData)
            return;
        };
@@ -59,8 +64,8 @@
            })
        }
        getFavoriteConsultant().then(data => {
            this.context.commit('updateConsultantList', data)
        myConsultantService.getFavoriteConsultantList().then(data => {
            this.context.commit('updateConsultantList', data);
        })
    }
@@ -71,7 +76,7 @@
        // no agent was removed
        if (left.length === this.myConsultantList.length) return false;
        if (!isLogin()) {
        if (!this.isUserLogin) {
            setFavoriteToStorage(left);
        } else {
            await deleteConsultant(agentNo)
@@ -88,8 +93,7 @@
            const found = this.myConsultantList.find(item => item.agentNo === consultantToAdd.agentNo);
            if (!found) {
                const newData = [consultantToAdd].concat(this.myConsultantList);
                if (isLogin()) {
                if (this.isUserLogin) {
                    await addFavoriteConsultant([consultantToAdd.agentNo])
                } else {
                    setFavoriteToStorage(newData);
@@ -141,4 +145,4 @@
        });
    }
}
}