|
@@ -1,15 +1,22 @@
|
|
|
<template>
|
|
|
<div class="bid_msg">
|
|
|
- <h3>杭州琴月文创娱乐有限公司<span>已认证</span></h3>
|
|
|
+ <h3>
|
|
|
+ 杭州琴月文创娱乐有限公司
|
|
|
+ <span>已认证</span>
|
|
|
+ <div class="btn_change">
|
|
|
+ <el-button plain class="btns1" :class="{c_active:change == '0'}" @click="changed(0)">企业</el-button>
|
|
|
+ <el-button plain class="btns2" :class="{c_active:change == '1'}" @click="changed(1)">个人</el-button>
|
|
|
+ </div>
|
|
|
+ </h3>
|
|
|
<div class="filter_lis">
|
|
|
<div class="high">高级筛选</div>
|
|
|
- <el-button plain class="btn1">导出结果</el-button>
|
|
|
+ <el-button plain class="btn1" @click="exported">导出结果</el-button>
|
|
|
<el-button plain class="btn1 btn2" @click="book">订阅设置</el-button>
|
|
|
</div>
|
|
|
<div class="list_data">
|
|
|
<ul>
|
|
|
<li :key="index" v-for="(item, index) in listData">
|
|
|
- <router-link to="/">
|
|
|
+ <router-link to="/" target="_blank">
|
|
|
<div class="tit">{{item.name}}</div>
|
|
|
<div class="bot">
|
|
|
<span class="spa1">{{item.area}}</span>
|
|
@@ -26,6 +33,21 @@
|
|
|
:total="1000">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
+ <!-- 导出提示弹框 -->
|
|
|
+ <el-dialog
|
|
|
+ title="是否导出?"
|
|
|
+ :visible.sync="visibles"
|
|
|
+ :lock-scroll="false"
|
|
|
+ :show-close="false"
|
|
|
+ center>
|
|
|
+ <p>已选择数据 900 条</p>
|
|
|
+ <p>其中,重复导出数据 <i style="color:#2CB7CA">600</i> 条(不再扣除)</p>
|
|
|
+ <p>本次导出扣除数据量 <em style="color:#ff3a20">300</em> 条</p>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="visibles = false">确 定</el-button>
|
|
|
+ <el-button @click="visibles = false">取 消</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -34,6 +56,8 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
tips: false,
|
|
|
+ change: '0',
|
|
|
+ visibles: false,
|
|
|
listData: [{
|
|
|
date: '13小时前',
|
|
|
name: '海市普陀区金沙江路海市普陀区金沙江路海市普陀区金沙江路海市普陀区金沙江路',
|
|
@@ -56,10 +80,16 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ changed(num) {
|
|
|
+ this.change = num;
|
|
|
+ },
|
|
|
book() {
|
|
|
const news = this.$router.resolve({path: '/subscribe'});
|
|
|
window.open(news.href,'_blank');
|
|
|
},
|
|
|
+ exported() {
|
|
|
+ this.visibles = true;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -77,15 +107,43 @@ export default {
|
|
|
font-size: 20px;
|
|
|
span {
|
|
|
width: 56px;
|
|
|
- height: 20px;
|
|
|
- line-height: 20px;
|
|
|
+ height: 24px;
|
|
|
+ line-height: 24px;
|
|
|
text-align: center;
|
|
|
color: #2ABED1;
|
|
|
font-size: 13px;
|
|
|
border: 1px solid #2ABED1;
|
|
|
- border-radius: 10px;
|
|
|
+ border-radius: 12px;
|
|
|
margin-left: 10px;
|
|
|
}
|
|
|
+ .btn_change {
|
|
|
+ margin-left: 20px;
|
|
|
+ color: #fff;
|
|
|
+ .btns1 {
|
|
|
+ border-radius: 4px 0 0 4px;
|
|
|
+ padding: 4px 12px;
|
|
|
+ border-color: #2CB7CA;
|
|
|
+ color: #2CB7CA;
|
|
|
+ }
|
|
|
+ .btns2 {
|
|
|
+ border-radius: 0 4px 4px 0;
|
|
|
+ margin-left: 0;
|
|
|
+ padding: 4px 12px;
|
|
|
+ border-color: #2CB7CA;
|
|
|
+ border-left: none;
|
|
|
+ color: #2CB7CA;
|
|
|
+ }
|
|
|
+ .btns2:hover {
|
|
|
+ border-left: none!important;
|
|
|
+ }
|
|
|
+ .c_active {
|
|
|
+ background: #2CB7CA;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ .c_active:hover {
|
|
|
+ color: #fff!important;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
.filter_lis {
|
|
|
width: 1020px;
|
|
@@ -109,8 +167,6 @@ export default {
|
|
|
.btn1 {
|
|
|
padding: 6px 17px;
|
|
|
font-size: 14px;
|
|
|
- color: #1d1d1d;
|
|
|
- border: 1px solid #E0E0E0;
|
|
|
box-sizing: border-box;
|
|
|
border-radius: 4px;
|
|
|
}
|