|
|
|
<template>
|
|
|
|
<u-image :src="staticImage.fxxGuide" :lazy-load="true" width="100%" height="auto" mode="widthFix"></u-image>
|
|
|
|
<u-navbar
|
|
|
|
:title="title"
|
|
|
|
:auto-back="true"
|
|
|
|
left-icon-size="40rpx"
|
|
|
|
:safe-area-inset-top="true"
|
|
|
|
:placeholder="true"
|
|
|
|
bgColor="transparent"
|
|
|
|
></u-navbar>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {
|
|
|
|
imghost
|
|
|
|
} from '@/config/host.js'
|
|
|
|
import MzSubsection from '@/components/MzSubsection/Index.vue';
|
|
|
|
import api from '@/utils/functions.js';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
MzSubsection
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
list: [{
|
|
|
|
name: '最新资讯'
|
|
|
|
}, {
|
|
|
|
name: '表彰评优'
|
|
|
|
}, {
|
|
|
|
name: '活动回顾'
|
|
|
|
}],
|
|
|
|
// 或者如下,也可以配置keyName参数修改对象键名
|
|
|
|
// list: [{name: '未付款'}, {name: '待评价'}, {name: '已付款'}],
|
|
|
|
current: 1,
|
|
|
|
title: '丰行侠行动指南',
|
|
|
|
loading: true,
|
|
|
|
staticImage: {
|
|
|
|
bg: imghost + '/BG.png',
|
|
|
|
newIcon: imghost + '/new-icon.png',
|
|
|
|
fxxLogo: imghost + '/fxx-logo.png',
|
|
|
|
fxxDone: imghost + '/fxx-done.png',
|
|
|
|
fxx1: imghost + '/fxx-1.png',
|
|
|
|
fxxGuide: imghost + '/fxx-guide.png',
|
|
|
|
},
|
|
|
|
user: {
|
|
|
|
avatar: imghost + '/banner.png',
|
|
|
|
nickname: '清晨的风',
|
|
|
|
coupons: 221,
|
|
|
|
id: 88685,
|
|
|
|
},
|
|
|
|
isTop: false,
|
|
|
|
lists: [
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
thumb: imghost + '/new-1.png',
|
|
|
|
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
|
|
|
|
desc: '需要您带一点猫砂上门,谢谢',
|
|
|
|
time: '2023/06/16',
|
|
|
|
is_new: true
|
|
|
|
}, {
|
|
|
|
id: 2,
|
|
|
|
thumb: imghost + '/new-2.png',
|
|
|
|
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
|
|
|
|
desc: '需要您带一点猫砂上门,谢谢',
|
|
|
|
time: '2023/06/16',
|
|
|
|
is_new: true
|
|
|
|
}, {
|
|
|
|
id: 3,
|
|
|
|
thumb: imghost + '/new-3.png',
|
|
|
|
title: '全市公安机关夏季治安打击整治“彭安行动”111开',
|
|
|
|
desc: '需要您带一点猫砂上门,谢谢',
|
|
|
|
time: '2023/06/16',
|
|
|
|
is_new: false
|
|
|
|
},
|
|
|
|
],
|
|
|
|
size: {
|
|
|
|
height: 500,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
api() {
|
|
|
|
return api
|
|
|
|
},
|
|
|
|
sectionStyle() {
|
|
|
|
const style = {};
|
|
|
|
style.padding = '0 26rpx';
|
|
|
|
style.position = 'sticky';
|
|
|
|
style.zIndex = '9999';
|
|
|
|
style.top = api.navHeight().systemBarHeight + 'px'
|
|
|
|
return style;
|
|
|
|
},
|
|
|
|
listHeight() {
|
|
|
|
let that = this;
|
|
|
|
let height;
|
|
|
|
let info = uni.createSelectorQuery().in(this).select('.subsection');
|
|
|
|
info.boundingClientRect(function (data) {
|
|
|
|
that.size.height = data.height;
|
|
|
|
}).exec(function (res) {
|
|
|
|
|
|
|
|
});
|
|
|
|
// that.size.height = (api.navHeight().windowHeight - height);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
chatDetail(item) {
|
|
|
|
wx.navigateTo({
|
|
|
|
url: '/pages/ChatDetail/index?id=' + item.id
|
|
|
|
});
|
|
|
|
},
|
|
|
|
checkSection(index) {
|
|
|
|
this.current = index;
|
|
|
|
},
|
|
|
|
scrollToLower() {
|
|
|
|
|
|
|
|
},
|
|
|
|
sexChange(e){
|
|
|
|
this.model1.userInfo.sex = e;
|
|
|
|
},
|
|
|
|
navTo(url) {
|
|
|
|
wx.navigateTo({
|
|
|
|
url: url
|
|
|
|
})
|
|
|
|
},
|
|
|
|
},
|
|
|
|
onPageScroll(res) {
|
|
|
|
if (res.scrollTop <= 20) {
|
|
|
|
uni.$emit('isTop', true);
|
|
|
|
} else {
|
|
|
|
uni.$emit('isTop', false);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.listHeight();
|
|
|
|
// this.pagePadding = (api.navHeight().navPaddingTop +
|
|
|
|
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@import './components/done.scss';
|
|
|
|
</style>
|