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.
73 lines
1.2 KiB
73 lines
1.2 KiB
2 years ago
|
<template>
|
||
|
<view class="editInfo">
|
||
|
<u-navbar height="50" :autoBack="true">
|
||
|
<view
|
||
|
class="u-nav-slot"
|
||
|
slot="left"
|
||
|
>
|
||
|
<u-icon
|
||
|
name="arrow-left"
|
||
|
size="19"
|
||
|
></u-icon>
|
||
|
<view class="title">
|
||
|
我的收藏
|
||
|
</view>
|
||
|
</view>
|
||
|
</u-navbar>
|
||
|
<view class="editInfoContent">
|
||
|
<view class="lookItem" @click="godetails(item)" v-for="(item,index) in list" :key="index">
|
||
|
{{item.wxcategory.name}}
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import {collectRecord} from '@/common/api.js'
|
||
|
export default{
|
||
|
data(){
|
||
|
return{
|
||
|
list:[]
|
||
|
}
|
||
|
},
|
||
|
methods:{
|
||
|
godetails(item){
|
||
|
uni.navigateTo({
|
||
|
url:'/pages/detail/detail?id='+item.wx_category_id
|
||
|
})
|
||
|
},
|
||
|
collectRecord(){
|
||
|
collectRecord({ custom: { auth: true }}).then(res=>{
|
||
|
this.list = res.rows
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
onLoad(option) {
|
||
|
this.collectRecord()
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.u-nav-slot{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
.title{
|
||
|
font-size: 36upx;
|
||
|
color: #222222;
|
||
|
}
|
||
|
}
|
||
|
.editInfoContent{
|
||
|
margin-top:60px;
|
||
|
.lookItem{
|
||
|
font-size: 30upx;
|
||
|
font-family: PingFang SC;
|
||
|
font-weight: 500;
|
||
|
color: #333333;
|
||
|
padding:29upx 22upx;
|
||
|
background-color: #ffffff;
|
||
|
margin-bottom:20upx;
|
||
|
}
|
||
|
}
|
||
|
</style>
|