保誠-保戶業務員媒合平台
Mila
2021-12-10 2ca1a76c216ad83d14121519478b8453b14f9b58
fixed TODO#132097 快速篩選滑動顧問時會觸發頁面上下滑動
修改1個檔案
18 ■■■■■ 已變更過的檔案
PAMapp/components/QuickFilter/QuickFilterConsultantList.vue 18 ●●●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
PAMapp/components/QuickFilter/QuickFilterConsultantList.vue
@@ -91,20 +91,26 @@
    popUpTxt = '成功加入顧問清單';
    startPosition = 0;
    endPosition = 0;
    startYPosition = 0;
    endYPosition = 0;
    moveStart(event: TouchEvent) {
        this.startPosition = event.changedTouches[0].clientX;
        this.startYPosition = event.changedTouches[0].clientY;
    }
    moveEnd(event: TouchEvent) {
        this.endPosition = event.changedTouches[0].clientX;
        if (this.endPosition < this.startPosition) {
            this.nextCard();
            return;
        }
        this.endYPosition = event.changedTouches[0].clientY;
        if (Math.abs(this.endYPosition - this.startYPosition) < 50) {
            if (this.endPosition < this.startPosition) {
                this.nextCard();
                return;
            }
        if (this.endPosition > this.startPosition) {
            this.prevCard();
            if (this.endPosition > this.startPosition) {
                this.prevCard();
            }
        }
    }