54 lines
855 B
Vue
54 lines
855 B
Vue
|
<!-- 默认复制 -->
|
||
|
|
||
|
<template>
|
||
|
<view class="content">
|
||
|
<view class="dil">
|
||
|
<view class="top-icon" @click="getback()">
|
||
|
<uni-icons type="left" size="18"></uni-icons>
|
||
|
</view>
|
||
|
<!-- 占位符 -->
|
||
|
<view style="width: 100%; height: 60px;"></view>
|
||
|
</view>
|
||
|
<tabBar></tabBar>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import tabBar from'../../components/tabBar/tabBar.vue'
|
||
|
import request from '../../utils/request';
|
||
|
export default{
|
||
|
data(){
|
||
|
return{
|
||
|
|
||
|
}
|
||
|
},
|
||
|
components:{
|
||
|
tabBar,
|
||
|
},
|
||
|
methods:{
|
||
|
getback(){
|
||
|
uni.navigateBack({
|
||
|
delta:1,
|
||
|
})
|
||
|
},
|
||
|
}
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.content{
|
||
|
width: 100%;
|
||
|
height: calc(100vh);
|
||
|
background-color: #F6F6F6;
|
||
|
box-sizing: border-box;
|
||
|
padding-top: 45px;
|
||
|
}
|
||
|
.top-icon{
|
||
|
margin-bottom: 45px;
|
||
|
}
|
||
|
.dil{
|
||
|
box-sizing: border-box;
|
||
|
padding: 0px 12px;
|
||
|
}
|
||
|
</style>
|