powerbank/pages/abbr/index.vue

193 lines
4.3 KiB
Vue
Raw Normal View History

2024-05-11 10:57:53 +08:00
<template>
<view class="page">
2024-06-07 18:02:00 +08:00
<u-navbar title="常见问题" :border-bottom="false" :background="bgc" title-color='#000' back-icon-color="#000" title-size='36' height='50'></u-navbar>
2024-05-11 10:57:53 +08:00
<view class="serch">
2024-05-22 18:04:44 +08:00
<u-search placeholder="搜索问题" height="72" :showAction="false" v-model="keyword" @change="sousuo"></u-search>
2024-05-11 10:57:53 +08:00
</view>
2024-05-22 18:04:44 +08:00
<view class="list" v-if="!listitem.length == 0">
2024-05-11 10:57:53 +08:00
<view class="tab">
2024-05-22 18:04:44 +08:00
<u-tabs :list="list" :is-scroll="true" :current="current" active-color="#38D492" bar-width="80"
gutter="40" item-width="200" @change="change"></u-tabs>
2024-05-11 10:57:53 +08:00
</view>
2024-05-22 18:04:44 +08:00
<view class="wenti" v-for="(item,index) in listitem" :key="index">
<view class="wzwt" @click="btnxq(item.articleId)">
<text>{{item.title}}</text> <u-icon name="arrow-right"></u-icon>
2024-05-11 10:57:53 +08:00
</view>
2024-05-22 18:04:44 +08:00
2024-05-11 10:57:53 +08:00
</view>
2024-05-22 18:04:44 +08:00
<view class="huan" @click="btnhuan" v-if="list[0].name == '猜你想问'">
<image src="https://api.ccttiot.com/smartmeter/img/static/uQyHxbK49U3S5f4uLU6m" mode=""></image> 换一换
2024-05-11 10:57:53 +08:00
</view>
</view>
2024-05-25 18:06:00 +08:00
<view class="" v-if="flag" style="width: 100%;margin-top: 50rpx;text-align: center;">
2024-05-22 18:04:44 +08:00
<image src="https://api.ccttiot.com/smartmeter/img/static/uO8bv6yv8Icg5hlbKccj" mode="" style="width: 430rpx;height: 430rpx;"></image>
<text
style="display: block;font-size: 36rpx;color: #666;margin-top: 30rpx;font-weight: 600;">您搜索的问题暂无相关分类</text>
</view>
2024-05-11 10:57:53 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2024-05-22 18:04:44 +08:00
list: [],
current: 0,
classifyId: '',
listitem: [],
huanindex: 1,
2024-05-25 18:06:00 +08:00
keyword: '',
flag:false
2024-05-11 10:57:53 +08:00
}
},
onLoad() {
2024-05-22 18:04:44 +08:00
this.getfenlei()
setTimeout(() => {
this.getlists()
}, 1000)
2024-05-11 10:57:53 +08:00
},
methods: {
2024-05-22 18:04:44 +08:00
sousuo() {
this.huanindex = 1
this.getfenlei()
},
getfenlei() {
this.$u.get('/app/article/problem/list', {
keyword: this.keyword
}).then(res => {
if (res.rows.length != 0) {
2024-05-25 18:06:00 +08:00
this.flag = false
2024-05-22 18:04:44 +08:00
this.list = res.rows.map(row => ({
name: row.classifyName,
classifyId: row.classifyId
}))
if (this.list.length != 0) {
this.classifyId = this.list[1].classifyId
this.getlists()
}
} else {
this.listitem = []
2024-05-25 18:06:00 +08:00
this.flag = true
2024-05-22 18:04:44 +08:00
}
})
},
btnhuan() {
if (this.list.length != 0) {
this.classifyId = this.list[this.huanindex++].classifyId
// this.current++
if (this.huanindex == this.list.length) {
this.huanindex = 1
}
// if(this.current == this.list.length){
// this.current = 0
// }
this.getlists()
}
},
btnxq(id) {
uni.navigateTo({
url: '/page_user/aboutxq?id=' + id
})
},
change(index) {
if (index == 0) {
this.classifyId = this.list[index + 1].classifyId
2024-06-08 18:05:07 +08:00
this.current = index
2024-05-22 18:04:44 +08:00
this.getlists()
} else {
this.classifyId = this.list[index].classifyId
2024-06-08 18:05:07 +08:00
this.current = index
2024-05-22 18:04:44 +08:00
this.getlists()
}
},
getlists() {
this.$u.get('/app/article/list?classifyId=' + this.classifyId + '&pageNum=' + 1 + '&pageSize=' + 6).then(
res => {
if (res.code == 200) {
this.listitem = res.rows
}
})
2024-05-11 10:57:53 +08:00
}
}
}
</script>
<style lang="scss">
2024-05-25 18:06:00 +08:00
/deep/ .u-title,
/deep/ .uicon-nav-back {
2024-06-07 18:02:00 +08:00
padding-bottom: 22rpx;
2024-05-25 18:06:00 +08:00
}
2024-05-11 10:57:53 +08:00
page {
// background-color: ;
2024-05-22 18:04:44 +08:00
background: linear-gradient(180deg, #38D492 0%, rgba(255, 255, 255, 0) 100%);
2024-05-11 10:57:53 +08:00
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
.page {
width: 750rpx;
padding-left: 34rpx;
padding-right: 34rpx;
box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
.serch {
margin-top: 44rpx;
}
2024-05-22 18:04:44 +08:00
.list {
2024-05-11 10:57:53 +08:00
width: 680rpx;
height: 654rpx;
background: #FFFFFF;
2024-05-22 18:04:44 +08:00
margin-top: 46rpx;
2024-05-11 10:57:53 +08:00
border-radius: 50rpx;
padding: 10rpx 32rpx;
box-sizing: border-box;
overflow: hidden;
2024-05-22 18:04:44 +08:00
2024-05-11 10:57:53 +08:00
// overflow-x: scroll;
2024-05-22 18:04:44 +08:00
.tab {
2024-05-11 10:57:53 +08:00
width: 650rpx;
margin-bottom: 38rpx;
// display: flex;
2024-05-22 18:04:44 +08:00
2024-05-11 10:57:53 +08:00
}
2024-05-22 18:04:44 +08:00
.wenti {
.wzwt {
2024-05-11 10:57:53 +08:00
display: flex;
justify-content: space-between;
margin-bottom: 38rpx;
font-weight: 500;
font-size: 28rpx;
color: #3D3D3D;
}
}
2024-05-22 18:04:44 +08:00
.huan {
image {
width: 28rpx;
2024-05-11 10:57:53 +08:00
height: 28rpx;
vertical-align: middle;
margin-right: 10rpx;
}
2024-05-22 18:04:44 +08:00
2024-05-11 10:57:53 +08:00
width: 100%;
text-align: center;
font-weight: 500;
font-size: 28rpx;
color: #666666;
}
}
}
2024-05-22 18:04:44 +08:00
.active {
border-bottom: 6rpx solid #D9D8FF;
2024-05-11 10:57:53 +08:00
padding-bottom: 10rpx;
border-radius: 3rpx 3rpx 3rpx 3rpx;
}
</style>