You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
350 lines
7.2 KiB
350 lines
7.2 KiB
3 years ago
|
<template>
|
||
|
<view class="body">
|
||
|
<zero-filter-bar ref="zeroFilterBar" :width="width" :extraBtn="extraBtn" :needSticky="needSticky"
|
||
|
:backgroundColor="backgroundColor" :defaultColor="defaultColor" :selectColor="selectColor"
|
||
|
:dataList="filterList" @filter='handleFilterItem' @extraClick='showDrawer()'>
|
||
|
</zero-filter-bar>
|
||
|
<view class="inputstyle">
|
||
|
<image src="../../static/se.png" mode=""></image>
|
||
|
<input type="text" v-model="form.query" placeholder="検索" @blur="search" />
|
||
|
</view>
|
||
|
<view class="arts">
|
||
|
<view class="item" v-for="(item,index) in artlist" :key="index" @click="artist(item.id)">
|
||
|
<view class="itempic" :style="{backgroundImage:`url(${item.background})`}">
|
||
|
</view>
|
||
|
<image :src="item.headPhoto" mode=""></image>
|
||
|
<view class="text">
|
||
|
{{item.artistName}}
|
||
|
</view>
|
||
|
<view class="textname">
|
||
|
{{item.artistIntroduction}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<view class="content">
|
||
|
<view class="item" v-for="item in list" :key="item.id" @click="detail(item.id)">
|
||
|
<view class="itempic" :style="{backgroundImage:`url(${item.thumbnail})`}">
|
||
|
<view class="left-cover">
|
||
|
<image v-if="!item.whetherLike" @click.stop="like(item.id)" src="../../static/heat.png" mode=""></image>
|
||
|
<image v-if="item.whetherLike" @click.stop="unlike(item.id)" src="../../static/278.png" mode=""></image>
|
||
|
<view class="number">
|
||
|
{{item.likeNumInt}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="text">
|
||
|
{{item.collectionName}}
|
||
|
</view>
|
||
|
<view class="textname">
|
||
|
{{item.artistName}} #{{item.issueNumber}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
artlist:[],
|
||
|
form:{
|
||
|
"id":"2",
|
||
|
"pageNum":1,
|
||
|
"pageSize":10,
|
||
|
"query":"",
|
||
|
},
|
||
|
list: [],
|
||
|
filterList: [{
|
||
|
id: 0,
|
||
|
name: '熱',
|
||
|
sort: true,
|
||
|
},
|
||
|
{
|
||
|
id: 1,
|
||
|
name: '時間',
|
||
|
sort: true,
|
||
|
},
|
||
|
{
|
||
|
id: 2,
|
||
|
name: '価格',
|
||
|
sort: true,
|
||
|
},
|
||
|
{
|
||
|
id: 3,
|
||
|
name: 'カテゴリ',
|
||
|
sort: true,
|
||
|
}
|
||
|
],
|
||
|
// 如果顶部还有内容,且需要吸顶效果,可以传入needSticky
|
||
|
needSticky: false,
|
||
|
offsetTop: 30,
|
||
|
defaultColor: "#FFFFFF",
|
||
|
selectColor: "#ABAE20",
|
||
|
backgroundColor: "#000000",
|
||
|
extraBtn: false,
|
||
|
width: 70,
|
||
|
|
||
|
}
|
||
|
},
|
||
|
onLoad() {
|
||
|
this.query();
|
||
|
this.allartists();
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
//跳转作者详情页
|
||
|
artist(id) {
|
||
|
uni.navigateTo({
|
||
|
url: "./details?id=" + id
|
||
|
})
|
||
|
},
|
||
|
// 排序查询
|
||
|
async query() {
|
||
|
const res = await this.$myRequest({
|
||
|
url: '/api/foreignAuth/query',
|
||
|
method: "post",
|
||
|
header: {
|
||
|
token: uni.getStorageSync("token"),
|
||
|
Authorization: uni.getStorageSync("Authorization"),
|
||
|
},
|
||
|
data: this.form
|
||
|
})
|
||
|
if (res.data.code == 200) {
|
||
|
this.list=res.data.rows
|
||
|
}
|
||
|
},
|
||
|
|
||
|
//排序条件
|
||
|
handleFilterItem(index, desc, item) {
|
||
|
console.log(index, desc, item)
|
||
|
let num=desc?0:1
|
||
|
this.form.id=(index+1)*2-num
|
||
|
this.query()
|
||
|
|
||
|
},
|
||
|
//搜索框
|
||
|
search(){
|
||
|
this.query()
|
||
|
},
|
||
|
//查询所有艺术家
|
||
|
async allartists(){
|
||
|
const res = await this.$myRequest({
|
||
|
url: '/open/foreignHomePage/allartists',
|
||
|
header: {
|
||
|
token: uni.getStorageSync("token"),
|
||
|
},
|
||
|
})
|
||
|
this.artlist=res.data.rows
|
||
|
},
|
||
|
//点赞
|
||
|
async like(id){
|
||
|
const res = await this.$myRequest({
|
||
|
url: '/api/foreignAuth/giveLike?id='+id,
|
||
|
header: {
|
||
|
token: uni.getStorageSync("token"),
|
||
|
Authorization: uni.getStorageSync("Authorization"),
|
||
|
},
|
||
|
})
|
||
|
if(res.data.code==200){
|
||
|
uni.showToast({
|
||
|
title: res.data.msg
|
||
|
})
|
||
|
this.query()
|
||
|
}
|
||
|
},
|
||
|
//跳转详情页
|
||
|
detail(id){
|
||
|
uni.navigateTo({
|
||
|
url:"./workshow?id="+id
|
||
|
})
|
||
|
},
|
||
|
//取消点赞
|
||
|
async unlike(id){
|
||
|
const res = await this.$myRequest({
|
||
|
url: '/api/foreignAuth/donPraise?id='+id,
|
||
|
header: {
|
||
|
token: uni.getStorageSync("token"),
|
||
|
Authorization: uni.getStorageSync("Authorization"),
|
||
|
},
|
||
|
})
|
||
|
if(res.data.code==200){
|
||
|
uni.showToast({
|
||
|
title: res.data.msg
|
||
|
})
|
||
|
this.query()
|
||
|
}
|
||
|
},
|
||
|
|
||
|
handleFilterExtra() {
|
||
|
// 确认自定义筛选事件后,高亮右侧按钮
|
||
|
this.$refs.zeroFilterBar.setCurrentExtraOn()
|
||
|
this.closeDrawer();
|
||
|
},
|
||
|
showDrawer() {
|
||
|
this.$refs.showRight.open();
|
||
|
},
|
||
|
closeDrawer() {
|
||
|
this.$refs.showRight.close();
|
||
|
},
|
||
|
Scroll(e) {
|
||
|
let top = this.$refs.zeroFilterBar.scrollTop
|
||
|
this.needSticky = e.scrollTop > top
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.body {
|
||
|
padding-top: 0rpx;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
background-color: #000000;
|
||
|
min-height: 1340rpx;
|
||
|
font-family: Arial-Regular;
|
||
|
|
||
|
.inputstyle {
|
||
|
margin-left: 54rpx;
|
||
|
width: 660rpx;
|
||
|
height: 80rpx;
|
||
|
background: #1C1C1C;
|
||
|
border-radius: 14rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
color: #FFFFFF;
|
||
|
image {
|
||
|
margin-left: 18rpx;
|
||
|
width: 30rpx;
|
||
|
height: 30rpx;
|
||
|
margin-right: 16rpx;
|
||
|
}
|
||
|
}
|
||
|
.arts{
|
||
|
display: flex;
|
||
|
overflow-x: auto;
|
||
|
|
||
|
.item {
|
||
|
color: #FFFFFF;
|
||
|
width: 396rpx;
|
||
|
height: 442rpx;
|
||
|
background-color: #1C1C1C;
|
||
|
border-radius: 24rpx;
|
||
|
margin-top: 48rpx;
|
||
|
margin-left: 36rpx;
|
||
|
flex-shrink: 0;
|
||
|
image{
|
||
|
margin-left: 36rpx;
|
||
|
margin-top: -30rpx;
|
||
|
border-radius: 40rpx;
|
||
|
width: 80rpx;
|
||
|
height: 80rpx;
|
||
|
border: 1rpx solid #FFFFFF;
|
||
|
}
|
||
|
|
||
|
.itempic {
|
||
|
width: 396rpx;
|
||
|
height: 230rpx;
|
||
|
background-repeat: no-repeat;
|
||
|
background-size: cover;
|
||
|
overflow: hidden;
|
||
|
border-radius:12rpx;
|
||
|
|
||
|
|
||
|
.left-cover {
|
||
|
margin-top: 36rpx;
|
||
|
width: 118rpx;
|
||
|
height: 48rpx;
|
||
|
background:rgba(0,0,0,0.5);
|
||
|
border-radius: 8rpx;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
font-size: 28rpx;
|
||
|
align-items: center;
|
||
|
margin-left: 36rpx;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.text {
|
||
|
font-size: 28rpx;
|
||
|
margin-left: 36rpx;
|
||
|
margin-top: 30rpx;
|
||
|
}
|
||
|
|
||
|
.textname {
|
||
|
width: 268rpx;
|
||
|
margin-top: 16rpx;
|
||
|
font-size: 24rpx;
|
||
|
margin-left: 36rpx;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
.content {
|
||
|
display: flex;
|
||
|
margin-top: 28rpx;
|
||
|
flex-wrap: wrap;
|
||
|
|
||
|
.item {
|
||
|
color: #FFFFFF;
|
||
|
width: 324rpx;
|
||
|
height: 446rpx;
|
||
|
background-color: #1C1C1C;
|
||
|
border-radius: 24rpx;
|
||
|
margin-left: 36rpx;
|
||
|
margin-top: 30rpx;
|
||
|
.itempic {
|
||
|
width: 324rpx;
|
||
|
height: 324rpx;
|
||
|
background-repeat: no-repeat;
|
||
|
background-size: cover;
|
||
|
overflow: hidden;
|
||
|
border-radius:12rpx;
|
||
|
|
||
|
.left-cover {
|
||
|
margin-top: 18rpx;
|
||
|
width: 94rpx;
|
||
|
height: 40rpx;
|
||
|
background:rgba(0,0,0,0.5);
|
||
|
border-radius: 8rpx;
|
||
|
font-size: 24rpx;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
margin-left: 24rpx;
|
||
|
image {
|
||
|
width: 24rpx;
|
||
|
height: 24rpx;
|
||
|
margin-left: 12rpx;
|
||
|
margin-top: 0rpx;
|
||
|
}
|
||
|
|
||
|
.number {
|
||
|
margin-left: 8rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.text {
|
||
|
font-size: 28rpx;
|
||
|
margin-left: 24rpx;
|
||
|
margin-top: 16rpx;
|
||
|
}
|
||
|
|
||
|
.textname {
|
||
|
margin-top: 16rpx;
|
||
|
font-size: 28rpx;
|
||
|
margin-left: 24rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
</style>
|