|
|
@ -1,5 +1,5 @@ |
|
|
<script setup lang="ts"> |
|
|
<script setup lang="ts"> |
|
|
import { getVoteprogress, voteMember } from '../../api/votingElection' |
|
|
import { getVoteprogress, voteMember, getMember_mobile } from '../../api/votingElection' |
|
|
import useUserStore from '@/store/user' |
|
|
import useUserStore from '@/store/user' |
|
|
import { isEmptyObject } from '@/utils/common' |
|
|
import { isEmptyObject } from '@/utils/common' |
|
|
|
|
|
|
|
|
@ -125,6 +125,18 @@ onShow(() => { |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
|
|
|
onLoad((options: any) => { |
|
|
|
|
|
console.log('扫码参数1:', options.scene); |
|
|
|
|
|
if(options.scene){ |
|
|
|
|
|
let params = { |
|
|
|
|
|
mobile: userStore.mobile, |
|
|
|
|
|
openid: userStore.openId, |
|
|
|
|
|
meeting: options.scene |
|
|
|
|
|
} |
|
|
|
|
|
getMember_mobile(params) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
}) |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<template> |
|
|
<template> |
|
|
|