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.
69 lines
1.5 KiB
69 lines
1.5 KiB
<template>
|
|
<view>
|
|
<!-- <view class="head df aic">
|
|
<view class=" pingjia f1 df aic jcsa" @click="index=0">
|
|
<div v-if="index==0" class="xuanzhong">待评价</div>
|
|
<div v-else class="weixuanzhong">待评价</div>
|
|
<div v-if="index==0" class="xiahuaxina"></div>
|
|
</view>
|
|
<view class="pingjia f1 df aic jcsa" @click="index=1">
|
|
<div v-if="index==1" class="xuanzhong">我的评价</div>
|
|
<div v-else class="weixuanzhong">我的评价</div>
|
|
<div v-if="index==1" class="xiahuaxina"></div>
|
|
</view>
|
|
</view>
|
|
<valuated v-if="index==0"></valuated> -->
|
|
<Evaluated></Evaluated>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
// import tabbar from "@/components/pageSalesman/tabbar/tabbar.vue"
|
|
import valuated from "@/pages/member/Tobeevaluated/valuated.vue"
|
|
import Evaluated from "@/pages/member/Tobeevaluated/Evaluated.vue"
|
|
export default {
|
|
components: {
|
|
valuated,Evaluated
|
|
},
|
|
data() {
|
|
return {
|
|
index:0
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.head{
|
|
width: 750rpx;
|
|
height: 100rpx;
|
|
background: #FFFFFF;
|
|
.pingjia{
|
|
width: 750rpx;
|
|
height: 100rpx;
|
|
background: #FFFFFF;
|
|
position: relative;
|
|
|
|
.xiahuaxina{
|
|
position: absolute;
|
|
bottom: 10rpx;
|
|
width: 40rpx;
|
|
border: 2rpx solid #21BBF3;
|
|
}
|
|
}
|
|
.xuanzhong{
|
|
font-size: 28rpx;
|
|
font-family: PingFangSC-Semibold, PingFang SC;
|
|
font-weight: 600;
|
|
color: #21BBF3;
|
|
line-height: 40rpx;
|
|
}
|
|
.weixuanzhong{
|
|
font-size: 28rpx;
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
font-weight: 400;
|
|
color: #222222;
|
|
line-height: 40rpx;
|
|
}
|
|
}
|
|
</style>
|
|
|