| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="content">
- <view style="background-color: #bfb1fc; height: 60px;"></view>
- <image class="w" style="height: 480px;" src="/static/image/source/tousu_jieguo.jpg"></image>
- <view class="btn" @click="outApp">退出应用</view>
- </view>
- </template>
- <script setup>
- import { ref, onMounted } from "vue";
- import { onShow } from "@dcloudio/uni-app";
- const outApp = ()=>{
- uni.showToast({
- title:'退出成功'
- })
- // UTSAndroid.exit()
- }
- </script>
- <style lang="scss" scoped>
- .btn{
- width: 40vw;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- color: #fff;
- border-radius: 12rpx;
- background-color: #f03433;
- transform: translate(30vw,50%);
- }
- </style>
|