Blame view

src/pages/custom-service/components/policy-head-list.js 7.16 KB
joe committed
1 2
import api from '@/api/api';
import {
1  
joe committed
3 4
    httpPost,
    requestDomain
joe committed
5 6 7 8 9
} from '@/api/fetch-api.js';

import {
    mapState
} from 'vuex';
joe committed
10
import { formatMoney } from "@/utils/biz.js";
joe committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

export default {
    props: {
        multiSelectable: {
            type: Boolean,
            default: false
        },
        model: {
            type: String,
            // checkbox
            default: "download"
        }
    },
    name: "InsuranceQuery",
    data() {
        return {
            myPolicyList: [],
            maxShow: 2,
            selectPolicyCode: "",
            selectPolicyCodes: {},
joe committed
31
            hide: false
joe committed
32 33 34 35 36 37 38 39
        }
    },
    computed: {
        ...mapState({
            policyList: state => state.policyList
        }),
    },
    methods: {
joe committed
40 41 42 43 44 45 46 47
        toContactUs() {
            this.$router.push({
                path: "/custom/service",
                query: {
                    q: "m1"
                }
            });
        },
joe committed
48 49 50 51 52 53 54 55
        queryList() {
            if (this.policyList && this.policyList.length > 0) {
                this.myPolicyList = this.policyList;
                this.myPolicyList.forEach(element => {
                    element.activity = false;
                })
                this.initSelected();
            } else {
joe committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
                this.checkCustomer().then(() => {
                    httpPost({ url: api.policyList, sid: true }).then(res => {
                        if (!res || res.length == 0) {
                            this.myPolicyList = null;
                        } else {
                            res.forEach(element => {
                                element.activity = false;
                                // let len = element.policyCode.length;
                                // element.policyCodeStr = element.policyCode && len > 5 ?
                                //     element.policyCode.substring(0, 2) + "**********"
                                //     + element.policyCode.substring(len - 4, len) : element.policyCode;
                            });
                            this.$store.commit("CACHE_POLICY_LIST", res);
                            this.myPolicyList = res;
                        }
                        this.initSelected();
                    }).catch(e => {
joe committed
73
                        this.myPolicyList = null;
joe committed
74 75 76 77 78 79 80 81
                        switch (e.code) {
                            case "2002":
                                // 不是客户,没有购买保单
                                break;
                        }
                    });
                });

joe committed
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
            }
        },
        initSelected() {
            let selectPolicy = null;
            try {
                let data = sessionStorage.getItem("_hklife_policy");
                if (data) {
                    sessionStorage.removeItem("_hklife_policy");
                    selectPolicy = JSON.parse(decodeURIComponent(data));
                    if (selectPolicy) {
                        if (this.multiSelectable) {
                            this.selectPolicyCodes[selectPolicy.code] = selectPolicy;
                        } else {
                            this.selectPolicyCode = selectPolicy.code;
                        }
                        this.$emit("onSelect", [selectPolicy]);

                        // 判断最大显示
                        let index = -1;
                        for (let i = 0; i < this.myPolicyList.length; i++) {
                            if (selectPolicy.code == this.myPolicyList[i].policyCode) {
                                this.myPolicyList[i].activity = true;
                                index = i;
                            }
                        }
                        this.$set(this, "myPolicyList", this.myPolicyList);
                        if (index > 2) {
                            this.maxShow = this.myPolicyList.length;
                        }
                    }
                }
            } catch (e) {

            }
1  
joe committed
116 117 118 119 120 121 122 123 124 125 126
            if (!selectPolicy) {
                let firstPolicy = this.myPolicyList[0];
                this.myPolicyList[0].activity = true;
                selectPolicy = { id: firstPolicy.policyId, code: firstPolicy.policyCode };
                if (this.multiSelectable) {
                    this.selectPolicyCodes[selectPolicy.code] = selectPolicy;
                } else {
                    this.selectPolicyCode = selectPolicy.code;
                }
                this.$emit("onSelect", [selectPolicy]);
            }
joe committed
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
        },
        handlePolicySelect(item, index) {
            let code = item.policyCode;
            if (this.multiSelectable) {
                let c = this.selectPolicyCodes[code];
                if (!c || typeof c == "undefined") {
                    item.activity = true;
                    this.selectPolicyCodes[code] = { code: code, id: item.policyId };
                } else {
                    item.activity = false;
                    delete this.selectPolicyCodes[code];
                }
                // this.$set(this, 'myPolicyList', this.myPolicyList);
                let data = [];
                for (let key in this.selectPolicyCodes) {
                    data.push(this.selectPolicyCodes[key]);
                }
                this.$emit("onSelect", data);
            } else {
                if (code != this.selectPolicyCode) {
                    this.selectPolicyCode = code;
                    this.$emit("onSelect", [{ code: code, id: item.policyId }]);
                }
            }
        },
        isPolicySelect(item, index) {
            let code = item.policyCode;
            if (this.multiSelectable) {
                let c = this.selectPolicyCodes[code];
                if (!c || typeof c == "undefined") {
                    return false;
                } else {
                    return true;
                }
            }
            return false;
joe committed
163 164 165
        },
        checkCustomer() {
            return new Promise(resolve => {
1  
joe committed
166 167 168 169 170 171 172 173
                resolve();
                // httpPost({ url: api.profile, sid: true }).then(res => {
                //     if (res.isCustomer == 1) {
                //         resolve();
                //     } else {
                //         this.gotoCustomerAuthPage();
                //     }
                // }).catch(res => {
joe committed
174

1  
joe committed
175
                // });
joe committed
176 177 178 179 180 181 182 183 184 185
            });
        },
        gotoCustomerAuthPage() {
            let c = this.$route.fullPath;
            this.$router.push({
                name: "customerAuth",
                query: {
                    c: c
                }
            });
joe committed
186 187 188 189 190 191 192
        },
        formatMoney(s, t) {
            if (typeof t == "undefined") {
                t = 1;
            }
            return formatMoney(s, t);
        },
joe committed
193 194 195 196 197 198 199 200 201 202
        downloadPolicy(policy) {
            if (policy) {
                httpPost({ url: api.getDownloadPath, sid: true, data: { policyCode: policy.policyCode } }).then(res => {
                    if (res) {
                        let url = requestDomain() + api.downloadPolicy + "/" + res;
                        window.open(url);
                    }
                });
            }
        }
joe committed
203 204 205 206 207 208 209
    },
    components: {
    },
    mounted() {
        this.queryList();
    },
}