Compare commits
7 Commits
da1fbce575
...
8a2bf1bad2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8a2bf1bad2 | ||
|
|
0c9587b100 | ||
|
|
9de11a5f52 | ||
|
|
09e794b2ef | ||
|
|
90407680af | ||
|
|
34a338fa55 | ||
|
|
3a547c16de |
@ -22,35 +22,22 @@ function vote(){
|
|||||||
// return
|
// return
|
||||||
const token = localStorage.getItem('bearer-tokens');
|
const token = localStorage.getItem('bearer-tokens');
|
||||||
|
|
||||||
if(typeof token === "undefined"||token ==null|| token == ""|| token == "undefined")
|
if (typeof token === "undefined" || token == null || token == "" || token == "undefined") {
|
||||||
{
|
|
||||||
|
|
||||||
const ticket= localStorage.getItem('qr-tickets');
|
|
||||||
|
|
||||||
if(typeof ticket === "undefined"||ticket ==null|| ticket == ""|| ticket == "undefined")
|
|
||||||
{
|
|
||||||
|
|
||||||
goAuth()
|
goAuth()
|
||||||
}
|
// const ticket = localStorage.getItem('qr-tickets');
|
||||||
else
|
// if (typeof ticket === "undefined" || ticket == null || ticket == "" || ticket == "undefined") {
|
||||||
{
|
// goAuth()
|
||||||
|
// }else {
|
||||||
emits('vote-click',ticket)
|
// emits('vote-click', ticket)
|
||||||
localStorage.setItem('qr-tickets', "");
|
// localStorage.setItem('qr-tickets', "");
|
||||||
}
|
// }
|
||||||
|
}else {
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
emits('vote-click', '1')
|
emits('vote-click', '1')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
.votbg {
|
.votbg {
|
||||||
|
|
||||||
height: 56px;
|
height: 56px;
|
||||||
@ -69,5 +56,4 @@ font-style: normal;
|
|||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -54,7 +54,8 @@ router.beforeEach((to, from, next) => {
|
|||||||
const urlToBeAccessed = to.fullPath; // 获取即将跳转的完整URL
|
const urlToBeAccessed = to.fullPath; // 获取即将跳转的完整URL
|
||||||
// alert(urlToBeAccessed+' 11111')
|
// alert(urlToBeAccessed+' 11111')
|
||||||
console.log('即将跳转到:', urlToBeAccessed);
|
console.log('即将跳转到:', urlToBeAccessed);
|
||||||
if(urlToBeAccessed.includes('subscribe')){
|
|
||||||
|
if(1==1){
|
||||||
const token=localStorage.getItem('bearer-tokens');
|
const token=localStorage.getItem('bearer-tokens');
|
||||||
if(typeof token === "undefined"||token ==null|| token == ""|| token == "undefined")
|
if(typeof token === "undefined"||token ==null|| token == ""|| token == "undefined")
|
||||||
{
|
{
|
||||||
@ -62,7 +63,7 @@ router.beforeEach((to, from, next) => {
|
|||||||
let queryParams = to.query;
|
let queryParams = to.query;
|
||||||
let subscribe = queryParams.subscribe
|
let subscribe = queryParams.subscribe
|
||||||
// alert(subscribe+' 3333')
|
// alert(subscribe+' 3333')
|
||||||
if(subscribe == '1'){
|
if(1==1){
|
||||||
|
|
||||||
// let openid = queryParams.openid
|
// let openid = queryParams.openid
|
||||||
let openid = getCookie('wechat_user_openid')
|
let openid = getCookie('wechat_user_openid')
|
||||||
|
|||||||
@ -33,7 +33,7 @@
|
|||||||
<votButton v-text="'投票'" @vote-click="vote" ></votButton>
|
<votButton v-text="'投票'" @vote-click="vote" ></votButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<votView :show =show :shows =shows @onchange="handlechange" @onchanges="handlechange" :ticket=tickets ></votView>
|
<!-- <votView :show =show :shows =shows @onchange="handlechange" @onchanges="handlechange" :ticket=tickets ></votView> -->
|
||||||
</template>
|
</template>
|
||||||
<script setup >
|
<script setup >
|
||||||
|
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; justify-content: center;margin-top: 16px;">
|
<div style="display: flex; justify-content: center;margin-top: 16px;">
|
||||||
<votButton v-text="'开始投票'" @vote-click="voet"></votButton>
|
<votButton v-text="'开始投票'" @vote-click="voet"></votButton>
|
||||||
</div>
|
</div>
|
||||||
<votView :show=show :ticket=ticket @onchange="handlechange" ></votView>
|
<!-- <votView :show=sho :ticket=ticket @onchange="handlechange" ></votView> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -34,7 +34,7 @@
|
|||||||
<votButton v-text="'投票'" @vote-click="vote" ></votButton>
|
<votButton v-text="'投票'" @vote-click="vote" ></votButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<votView :show =show :shows =shows @onchange="handlechange" @onchanges="handlechange" :ticket=tickets ></votView>
|
<!-- <votView :show =show :shows =shows @onchange="handlechange" @onchanges="handlechange" :ticket=tickets ></votView> -->
|
||||||
</template>
|
</template>
|
||||||
<script setup >
|
<script setup >
|
||||||
import { useRouter,useRoute } from 'vue-router';
|
import { useRouter,useRoute } from 'vue-router';
|
||||||
|
|||||||
@ -194,7 +194,7 @@ v-show="voting">
|
|||||||
<van-empty description="暂无数据" />
|
<van-empty description="暂无数据" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<votView :show =show :shows =shows @onchange="handlechange" @onchanges="handlechange" :ticket=tickets ></votView>
|
<!-- <votView :show =show :shows =shows @onchange="handlechange" @onchanges="handlechange" :ticket=tickets ></votView> -->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup >
|
<script setup >
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user