dengjie commit : 会员中心及其联系客服页面初步完成

This commit is contained in:
clay
2022-12-17 23:10:41 +08:00
parent 76b6d9e557
commit 6d4a43b417
14 changed files with 310 additions and 98 deletions

View File

@@ -0,0 +1,67 @@
<template>
<view style="margin-top: 20rpx; height: 1176rpx;background: #FFFFFF;">
<certifiedCj></certifiedCj>
<view v-if="cjsShow" class="no-data">已经到底啦</view>
</view>
</template>
<script>
export default {
data() {
return {
cjsShow: true,
}
},
methods: {
// this.cjsShow = this.list.length === 0 ? true : false
}
}
</script>
<style lang="scss">
.no-data {
text-align: center;
margin-top: 29rpx;
font-size: 20rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #BBBBBB;
line-height: 28rpx;
}
.xw_content {
background: #FFFFFF;
border: 1rpx solid #EEEEEE;
display: flex;
padding: 29rpx 19rpx;
.xw_right {
padding-left: 19rpx;
display: flex;
flex-direction: column;
.xw_title {
font-size: 30rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: bold;
color: #3E3E3E;
line-height: 42rpx;
-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.cj_tags {
font-size: 24rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #969696;
line-height: 33rpx;
padding-right: 10rpx;
margin-top: 35rpx;
}
}
}
</style>

View File

@@ -0,0 +1,34 @@
<template>
<view style="margin-top: 20rpx; height: 1176rpx;background: #FFFFFF;">
<news></news>
<view v-if="newsShow" class="no-data">已经到底啦</view>
</view>
</template>
<script>
export default {
data() {
return {
newsShow: true,
}
},
onLoad() {
},
methods: {
// this.newsShow = this.list.length === 0 ? true : false
}
}
</script>
<style lang="scss">
.no-data {
text-align: center;
margin-top: 29rpx;
font-size: 20rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #BBBBBB;
line-height: 28rpx;
}
</style>

View File

@@ -70,11 +70,11 @@
//点击行内新闻时
if (listIndex == 0) {
uni.navigateTo({
url: '/pages/news/news'
url: '/pages/report/news/news'
})
} else if (listIndex == 2) {
uni.navigateTo({
url: '/pages/certifiedCj/certifiedCj'
url: '/pages/report/certifiedCj/certifiedCj'
})
}
},