保誠-保戶業務員媒合平台
Mila
2021-12-10 2ca1a76c216ad83d14121519478b8453b14f9b58
PAMapp/components/QuickFilter/QuickFilterConsultantList.vue
@@ -91,13 +91,18 @@
    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;
        this.endYPosition = event.changedTouches[0].clientY;
        if (Math.abs(this.endYPosition - this.startYPosition) < 50) {
        if (this.endPosition < this.startPosition) {
            this.nextCard();
            return;
@@ -107,6 +112,7 @@
            this.prevCard();
        }
    }
    }
    nextCard() {
        (this.$refs.carouselRef as ElCarousel).next();