开发环境同步
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<input v-if="!!$route.query.code" class="codeText" :value="$route.query.code"/>
|
||||
<div class="codeBtn" @click="handleLogin">去登录</div>
|
||||
<div flex class="appsPane wrap">
|
||||
<b v-for="app in apps" :key="app.key" @tap="redirectTo(app.path)">{{ app.name }}</b>
|
||||
<b v-for="app in apps" :key="app.key" @tap="handleGotoApp(app)">{{ app.name }}</b>
|
||||
</div>
|
||||
</section>
|
||||
</template>0
|
||||
@@ -46,6 +46,10 @@ export default {
|
||||
}
|
||||
})
|
||||
},
|
||||
handleGotoApp(app) {
|
||||
console.log(app)
|
||||
uni.navigateTo({url: `./mainEntry?app=${app.key}`})
|
||||
},
|
||||
handleLogin() {
|
||||
uni.navigateTo({url: "./login"})
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user