feat: 问卷组件新增跳转逻辑

This commit is contained in:
DEV_DSW
2026-01-30 16:46:27 +08:00
parent e383bbbcf0
commit 2d3cd6796e

View File

@@ -15,17 +15,19 @@
前往填写 前往填写
</view> </view>
</view> </view>
</view> </view>
</template> </template>
<script setup> <script setup>
import { getAccessToken } from "@/constant/token";
const handleCall = () => { const handleCall = () => {
const token = getAccessToken();
uni.navigateTo({
url: `/pages/webview/index?token=${token}`,
});
}; };
</script> </script>
<style lang="scss" scoped></style <style lang="scss" scoped></style>