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.
145 lines
2.3 KiB
145 lines
2.3 KiB
<template>
|
|
<view>
|
|
<AQTabber></AQTabber>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import user from '@/api/user.js';
|
|
import fuiIcon from "@/components/firstui/fui-icon/fui-icon.vue"
|
|
import AQTabber from "@/components/AQ/AQTabber.vue"
|
|
export default {
|
|
components: {
|
|
fuiIcon,
|
|
AQTabber
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
},
|
|
methods: {
|
|
// fetchData(um_id) {
|
|
// user.activity_index({
|
|
// um_id: um_id
|
|
// }).then(res => {
|
|
// console.log(res)
|
|
// if(res.status == 200){
|
|
// if(res.data == null){
|
|
// this.list = []
|
|
// }else{
|
|
// this.list = res.data
|
|
// }
|
|
// }else{
|
|
// uni.showToast({
|
|
// title: res.msg,
|
|
// icon: 'none'
|
|
// })
|
|
// }
|
|
// });
|
|
// },
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.empty {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
height: 85vh;
|
|
align-items: center;
|
|
}
|
|
.top{
|
|
background-color: #fff;
|
|
height: 100rpx;
|
|
width: 100%;
|
|
}
|
|
.top_1{
|
|
display: inline-block;
|
|
font-size: 55rpx;
|
|
font-weight: bold;
|
|
margin-left: 30rpx;
|
|
line-height: 100rpx;
|
|
}
|
|
.top_2{
|
|
margin-left: 600rpx;
|
|
position: absolute;
|
|
top: 15rpx;
|
|
}
|
|
.middle{
|
|
width: 95%;
|
|
background-color: #fff;
|
|
margin: auto;
|
|
margin-top: 20rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
.middles{
|
|
height: 150rpx;
|
|
/* background-color: aqua; */
|
|
margin-top: 20rpx;
|
|
}
|
|
.middles_1{
|
|
height: 100%;
|
|
width: 24%;
|
|
/* background-color: red; */
|
|
display: inline-block;
|
|
}
|
|
.middles_2{
|
|
width: 70%;
|
|
/* background-color: green; */
|
|
display: inline-block;
|
|
position: relative;
|
|
top: -15%;
|
|
left: 2%;
|
|
}
|
|
.middles_1_img{
|
|
width: 130rpx;
|
|
height: 130rpx;
|
|
margin-left: 12%;
|
|
border-radius: 100rpx;
|
|
margin-top: 6%;
|
|
}
|
|
.middles_info1{
|
|
font-size: 40rpx;
|
|
font-weight: bold;
|
|
}
|
|
.middles_info2{
|
|
color: #5e5e5e;
|
|
}
|
|
.middles_con{
|
|
width: 92%;
|
|
margin: 20rpx auto;
|
|
font-size: 30rpx;
|
|
}
|
|
.middles_bom{
|
|
padding: 30rpx 0 40rpx 25rpx;
|
|
position: relative;
|
|
}
|
|
.middles_boms{
|
|
display: inline-block;
|
|
color: #9297b2;
|
|
}
|
|
.middles_bom_2{
|
|
position: absolute;
|
|
right: 30%;
|
|
}
|
|
.middles_bom_3{
|
|
position: absolute;
|
|
right: 10%;
|
|
}
|
|
.shoucang{
|
|
position: absolute;
|
|
right: 10%;
|
|
top: 10%;
|
|
height: 60rpx;
|
|
width: 140rpx;
|
|
border-radius: 10rpx;
|
|
line-height: 54rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
</style>
|