no message
parent
569ff3cd1c
commit
c51434c9f6
@ -1,8 +1,70 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<view class="p-person-marge g_w_all g_h_all g_bg_f_5 g_kuaishou">
|
||||||
|
<view class="g_bg_f sticky" :style="{ boxShadow: '0px 4px 4px 0px rgba(218, 218, 218, 0.5)' }">
|
||||||
|
<u-tabs bg-color="transparent"
|
||||||
|
:list="menuList"
|
||||||
|
:is-scroll="false"
|
||||||
|
:current="menuActive"
|
||||||
|
:active-color="globalData.themeColor"
|
||||||
|
bar-width="64"
|
||||||
|
bar-height="6"
|
||||||
|
@change="handleUpdateMenu"
|
||||||
|
font-size="32"
|
||||||
|
duration="0.05"
|
||||||
|
height="76"
|
||||||
|
></u-tabs>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
export default {
|
||||||
|
onReady() {
|
||||||
|
this.G.setNavStyle();
|
||||||
|
},
|
||||||
|
onShareAppMessage() {
|
||||||
|
return this.G.shareFun();
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
globalData: getApp().globalData,
|
||||||
|
cdnBaseImg: this.G.store().cdnBaseImg,
|
||||||
|
localBaseImg: this.G.store().localBaseImg,
|
||||||
|
svgBaseImg: this.G.store().svgBaseImg,
|
||||||
|
menuList: [
|
||||||
|
{
|
||||||
|
name: "我收到的",
|
||||||
|
tip: "0",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "我发起的",
|
||||||
|
tip: "1",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
menuActive: 0,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
let that = this;
|
||||||
|
that.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getList(){
|
||||||
|
let that = this,
|
||||||
|
params = {
|
||||||
|
|
||||||
|
}
|
||||||
|
that.G.Get(that.api.person_marge,params,(res)=>{
|
||||||
|
console.log('合并记录:',res);
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleUpdateMenu(e){
|
||||||
|
console.log(e)
|
||||||
|
let that = this;
|
||||||
|
that.menuActive = e;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style></style>
|
||||||
</style>
|
|
||||||
|
|||||||
Loading…
Reference in New Issue