23 lines
283 B
Vue
23 lines
283 B
Vue
<template>
|
|
<view style="background-color: #000;"></view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
plus.screen.lockOrientation("portrait-primary");
|
|
uni.navigateBack({
|
|
delta:1
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|