This commit is contained in:
parent
48018b340b
commit
cda31b548e
|
@ -1,6 +1,11 @@
|
|||
<!-- 未开通商户 -->
|
||||
<template>
|
||||
<view class="unregist">
|
||||
|
||||
<view class="icon" @click="handleBack">
|
||||
<u-icon name="arrow-left" color="#fff" size="20"></u-icon>
|
||||
</view>
|
||||
|
||||
<view class="head">
|
||||
<image src="@/static/images/f.png"></image>
|
||||
<text>暂无信息</text>
|
||||
|
@ -21,6 +26,16 @@
|
|||
<script>
|
||||
export default {
|
||||
methods: {
|
||||
handleBack() {
|
||||
console.log(1241)
|
||||
// #ifdef APP-PLUS
|
||||
uni.sendHostEvent('backApp', (ret) => {
|
||||
//发送消息成功回调
|
||||
console.log('关闭应用' + JSON.stringify(ret));
|
||||
});
|
||||
// #endif
|
||||
},
|
||||
|
||||
handleOpen() {
|
||||
// #ifdef APP-PLUS
|
||||
uni.sendHostEvent('closeAppToOpenShop', (ret) => {
|
||||
|
@ -35,6 +50,15 @@
|
|||
|
||||
<style lang="scss">
|
||||
.unregist {
|
||||
position: relative;
|
||||
|
||||
.icon {
|
||||
position: absolute;
|
||||
top: calc(30rpx + var(--status-bar-height));
|
||||
left: 30rpx;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
Loading…
Reference in New Issue