| xqd
@@ -120,6 +120,10 @@
|
|
|
<tnui-wx-user-info v-model="showAuthorizationModal" @updated="updatedUserInfoEvent"></tnui-wx-user-info>
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 备案信息 -->
|
|
|
+ <beian @click="toBeianWeb"></beian>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
| xqd
@@ -143,7 +147,7 @@
|
|
|
banner
|
|
|
} from '@/api/index/index.js'
|
|
|
|
|
|
-
|
|
|
+ import beian from '@/components/beian/index.vue'
|
|
|
// 判断是否为微信环境
|
|
|
const isWechat = () => {
|
|
|
return String(navigator.userAgent.toLowerCase().match(/MicroMessenger/i)) === "micromessenger";
|
| xqd
@@ -151,7 +155,8 @@
|
|
|
|
|
|
export default {
|
|
|
components: {
|
|
|
- TnuiWxUserInfo
|
|
|
+ TnuiWxUserInfo,
|
|
|
+ beian
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
| xqd
@@ -286,6 +291,9 @@
|
|
|
// }
|
|
|
},
|
|
|
methods: {
|
|
|
+ toBeianWeb() {
|
|
|
+ window.open('https://beian.miit.gov.cn/#/Integrated/index')
|
|
|
+ },
|
|
|
handleBannerJump(url) {
|
|
|
if (url) {
|
|
|
window.open(url)
|