This commit is contained in:
parent
cc568d9124
commit
6555449109
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
33
pages.json
33
pages.json
|
@ -47,7 +47,38 @@
|
||||||
"enablePullDownRefresh": true,
|
"enablePullDownRefresh": true,
|
||||||
// #endif
|
// #endif
|
||||||
"app-plus": {
|
"app-plus": {
|
||||||
"scrollIndicator": false //禁用原生导航栏
|
"scrollIndicator": false, //禁用原生导航栏
|
||||||
|
"subNVues": [{
|
||||||
|
"id": "concat", // 唯一标识
|
||||||
|
"path": "pages/index/subnvue/concat", // 页面路径
|
||||||
|
"type": "popup",
|
||||||
|
"style": {
|
||||||
|
"position": "absolute",
|
||||||
|
"dock": "right",
|
||||||
|
"width": "750rpx",
|
||||||
|
"height": "1500rpx",
|
||||||
|
"background": "rgba(0,0,0,0.2)"
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/test/index", //首页
|
||||||
|
"style": {
|
||||||
|
"app-plus": {
|
||||||
|
"subNVues": [{
|
||||||
|
"id": "concat", // 唯一标识
|
||||||
|
"path": "pages/test/subnvue/concat", // 页面路径
|
||||||
|
/*"type": "popup", 这里不需要*/
|
||||||
|
"style": {
|
||||||
|
"position": "absolute",
|
||||||
|
"dock": "right",
|
||||||
|
"width": "100rpx",
|
||||||
|
"height": "150rpx",
|
||||||
|
"background": "transparent"
|
||||||
|
}
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
|
<button @click="test">叫我按钮></button>
|
||||||
<view class="content-top">
|
<view class="content-top">
|
||||||
<view class="content-tops">
|
<view class="content-tops">
|
||||||
<view class="content-top_img" v-if="Object.keys(userInfoData).length>0">
|
<view class="content-top_img" v-if="Object.keys(userInfoData).length>0">
|
||||||
|
@ -846,6 +847,16 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
async onLoad() {
|
async onLoad() {
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
console.log("执行了")
|
||||||
|
const subNVue = uni.getSubNVueById('concat')
|
||||||
|
subNVue.show('slide-in-left', 200, () => {
|
||||||
|
console.log('subNVue 原生子窗体显示成功');
|
||||||
|
})
|
||||||
|
}, 500)
|
||||||
|
|
||||||
|
|
||||||
this.Fheight = uni.getSystemInfoSync().windowHeight + 'px';
|
this.Fheight = uni.getSystemInfoSync().windowHeight + 'px';
|
||||||
await this.$onLaunched;
|
await this.$onLaunched;
|
||||||
this.list1();
|
this.list1();
|
||||||
|
@ -877,6 +888,11 @@
|
||||||
this.$bus.$off('value-updated')
|
this.$bus.$off('value-updated')
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
test() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/test/index'
|
||||||
|
})
|
||||||
|
},
|
||||||
// 提现页面
|
// 提现页面
|
||||||
handleToWithDraw(item, index) {
|
handleToWithDraw(item, index) {
|
||||||
if (index == 4) return;
|
if (index == 4) return;
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
<template>
|
||||||
|
<view class="" style="width: 750rpx;height: 2000rpx;">
|
||||||
|
<view class="" style="top: 500rpx;left: 100rpx;">
|
||||||
|
<image src="/static/images/adds.png" style="width: 50rpx;height: 50rpx" alt="" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
|
@ -0,0 +1,27 @@
|
||||||
|
<template>
|
||||||
|
<view class="" style="width: 750rpx;height: 100vh;background-color: pink;">
|
||||||
|
我已经吐了,傻逼是的
|
||||||
|
<button @click="tests">anniu1</button>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
tests() {
|
||||||
|
const subNVue = uni.getSubNVueById('concat')
|
||||||
|
subNVue.show('slide-in-left', 200, () => {
|
||||||
|
console.log('subNVue 原生子窗体显示成功');
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
|
@ -0,0 +1,15 @@
|
||||||
|
<template>
|
||||||
|
<view class="" style="padding: 200rpx;background-color: red; width: 500rpx;height: 500rpx;">
|
||||||
|
<image src="/static/images/f.png" alt="" />
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in New Issue