|
|
@@ -22,11 +22,20 @@
|
|
|
<span>{{ info.followers }}</span>
|
|
|
</div>
|
|
|
|
|
|
- <el-button plain round :class="{ prim: !info.follow }" size="mini" @click="like(info)">
|
|
|
+ <el-button
|
|
|
+ style="color: #939599"
|
|
|
+ plain
|
|
|
+ round
|
|
|
+ :class="{ prim: !info.follow }"
|
|
|
+ size="mini"
|
|
|
+ @click="like(info)"
|
|
|
+ >
|
|
|
{{ info.follow ? '已关注' : '关注' }}
|
|
|
</el-button>
|
|
|
<el-popover placement="bottom" trigger="hover">
|
|
|
- <el-button style="margin-left: 20px" slot="reference" plain round size="mini">分享</el-button>
|
|
|
+ <el-button style="margin-left: 20px; color: #939599" slot="reference" plain round size="mini"
|
|
|
+ >分享</el-button
|
|
|
+ >
|
|
|
<share :info="info" pageType="caseDetail"> </share>
|
|
|
</el-popover>
|
|
|
</div>
|
|
|
@@ -57,6 +66,10 @@
|
|
|
@change="onSearch"
|
|
|
>
|
|
|
</el-input>
|
|
|
+ <!-- <el-select class="select" v-model="sortStr" placeholder="请选择">
|
|
|
+ <el-option v-for="item in typeOptions" :key="item.value" :label="item.label" :value="item.value">
|
|
|
+ </el-option>
|
|
|
+ </el-select> -->
|
|
|
<el-select class="select" v-model="sortStr" placeholder="请选择">
|
|
|
<el-option v-for="item in sortList" :key="item.value" :label="item.label" :value="item.value">
|
|
|
</el-option>
|
|
|
@@ -110,6 +123,20 @@ export default {
|
|
|
value: false
|
|
|
}
|
|
|
],
|
|
|
+ typeOptions: [
|
|
|
+ {
|
|
|
+ label: '全部',
|
|
|
+ type: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '售卖',
|
|
|
+ type: 'ON_SALE'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '仅展示',
|
|
|
+ type: 'NORMAL'
|
|
|
+ }
|
|
|
+ ],
|
|
|
sortList: [
|
|
|
{
|
|
|
label: '综合排序',
|
|
|
@@ -170,6 +197,12 @@ export default {
|
|
|
color: transparent;
|
|
|
}
|
|
|
}
|
|
|
+/deep/.el-input__inner {
|
|
|
+ border: 1px solid #898989;
|
|
|
+ background-color: transparent;
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 8px;
|
|
|
+}
|
|
|
.avatar {
|
|
|
position: absolute;
|
|
|
width: 92px;
|