|
@@ -1,6 +1,5 @@
|
|
|
<template>
|
|
|
<view class="app-container">
|
|
|
- <button @click="close">返回</button>
|
|
|
<view class="bg">
|
|
|
<view flex around class="tabs">
|
|
|
<img v-for="(item, index) in tabs" :key="index" :src="item" @click="getActive(index)" />
|
|
@@ -8,6 +7,7 @@
|
|
|
</view>
|
|
|
<view style="height: 1094rpx" />
|
|
|
<view class="dev" v-show="active === 0">
|
|
|
+ <button @click="close">返回</button>
|
|
|
<view v-for="(item, index) in list" :key="index">
|
|
|
<view class="title">
|
|
|
<text>{{ item.title }}</text>
|
|
@@ -110,7 +110,7 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
close() {
|
|
|
closePage.postMessage('关闭页面')
|
|
|
}
|