| 123456789101112131415161718192021222324252627 |
- <template>
- <web-view :src="url" :progress="false"></web-view>
- </template>
- <script>
- export default {
- data() {
- return {
- url: 'https://chtech.ncjti.edu.cn/carstop/dist5/#/'
- }
- },
- onLoad() {
- // 获取小程序中的用户信息
- const userInfo = uni.getStorageSync('userinfo_storage_key')
- if (userInfo) {
- // 如果在小程序中获取过用户信息
- const cardNumber = userInfo.card_number
- this.url = `${this.url}?card_number=${cardNumber}`
- } else {
- // 如果都没有获取过用户信息
- this.url = `${this.url}?type=weixin`
- }
- }
- }
- </script>
- <style></style>
|