Lou
2024-04-02 1caacf383e1b4239156517af8dca0b3daca78cf6
更新
3 files modified
20 ■■■■ changed files
common/common.js 1 ●●●● patch | view | raw | blame | history
subPackage/article/detail.vue 4 ●●●● patch | view | raw | blame | history
subPackage/article/signature.vue 15 ●●●●● patch | view | raw | blame | history
common/common.js
@@ -130,7 +130,6 @@
            //     iconPath: '/static/img/tabbar-08.png',
            //     url: '/pages/circle/index'
            // },
            {
                name: '驾驶舱',
                iconPathSelected: '/static/img/tabbar-05-selected.png',
subPackage/article/detail.vue
@@ -543,6 +543,10 @@
            },
            confirmValidationCode() {
                if (!this.validationCode) {
                    this.$showTips("请输入验证码");
                    return
                }
                this.voteRequest()
            },
subPackage/article/signature.vue
@@ -137,11 +137,16 @@
            confirmValidationCode() {
                let pages = getCurrentPages();
                let prePage = pages[pages.length - 2];
                prePage.$vm.voteRequest(this.imgSrc, this.validationCode);
                this.isShowPopup = false;
                uni.navigateBack({
                    delta: 2
                })
                if (!this.validationCode) {
                    this.$showTips("请输入验证码");
                } else {
                    prePage.$vm.voteRequest(this.imgSrc, this.validationCode);
                    this.isShowPopup = false;
                    uni.navigateBack({
                        delta: 2
                    })
                }
            },