You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
547 B
37 lines
547 B
<!-- 管理员登录页 -->
|
|
<template>
|
|
<view class="page1" style="overflow: scroll;">
|
|
|
|
<button @click="tiaozhuanHD()">跳转到HD</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
//跳转到平板版
|
|
tiaozhuanHD() {
|
|
uni.navigateToMiniProgram({
|
|
appId: 'wxa0749c7edd4cc96f',
|
|
path: 'pages/index/home',
|
|
success(res) {
|
|
// 打开成功
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page,
|
|
.page1 {
|
|
background: #eee;
|
|
height: 100%;
|
|
}
|
|
</style>
|