|
@@ -14,7 +14,7 @@
|
|
|
<!-- 展示部分 -->
|
|
|
<el-main class="main">
|
|
|
<div class="main-head">
|
|
|
- <div class="showType" v-show="!1">
|
|
|
+ <div class="showType" v-show="!selectCard.length">
|
|
|
<el-radio-group v-model="isPub" size="small">
|
|
|
<el-radio-button label="已发布">已发布</el-radio-button>
|
|
|
<el-radio-button label="未发布">未发布</el-radio-button>
|
|
@@ -27,17 +27,19 @@
|
|
|
</Dropdown>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="showAction" v-show="1">
|
|
|
- <el-checkbox v-model="checkAll">全选</el-checkbox>
|
|
|
- <span class="sum">已选择<span style="color:#252b30">{{selectCard.length}}<span>项目</span>
|
|
|
- <el-button size="mini">移动到</el-button>
|
|
|
- <el-button size="mini">下载</el-button>
|
|
|
- <el-button size="mini">删除</el-button>
|
|
|
+ <div class="showAction" v-show="selectCard.length">
|
|
|
+ <el-checkbox v-model="checkAll" :indeterminate="isIndeterminate" @change="handleCheckAllChange">全选</el-checkbox>
|
|
|
+ <span style="margin-left: 10px;">|</span>
|
|
|
+ <span class="sum">已选择<span style="color:#252b30;margin: 0 5px;">{{selectCard.length}}</span>项目</span>
|
|
|
+ <el-button size="mini">移动到</el-button>
|
|
|
+ <el-button size="mini">下载</el-button>
|
|
|
+ <el-button size="mini">删除</el-button>
|
|
|
+ <i class="el-icon-close" style="float:right;line-height: 100%"></i>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="main-body">
|
|
|
<template v-for="t in cardList">
|
|
|
- <topoImageCard :data="t" :key="t.id"></topoImageCard>
|
|
|
+ <topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck"></topoImageCard>
|
|
|
</template>
|
|
|
</div>
|
|
|
</el-main>
|
|
@@ -186,6 +188,7 @@ export default {
|
|
|
],
|
|
|
checkAll: false,
|
|
|
selectCard: [],
|
|
|
+ isIndeterminate: true, // 全选按钮
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -211,6 +214,23 @@ export default {
|
|
|
resetForm(formName) {
|
|
|
this.$refs[formName].resetFields();
|
|
|
},
|
|
|
+ changeCheck(v){
|
|
|
+ const index = this.selectCard.indexOf(v);
|
|
|
+ console.log(index);
|
|
|
+ if (index > -1) {
|
|
|
+ this.selectCard.splice(index, 1);
|
|
|
+ } else {
|
|
|
+ this.selectCard.push(v);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleCheckAllChange(val) {
|
|
|
+ this.cardList = this.cardList.map(t => {
|
|
|
+ t.checked = val
|
|
|
+ return t;
|
|
|
+ })
|
|
|
+ this.selectCard = val ? this.cardList.map(t => {t.checked = true}) : [];
|
|
|
+ this.isIndeterminate = false;
|
|
|
+ },
|
|
|
},
|
|
|
components: { Select, Button, leftAsideTree, Dropdown, topoImageCard },
|
|
|
};
|
|
@@ -236,14 +256,16 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
background: #fff;
|
|
|
- padding: 10px 20px;
|
|
|
+ padding: 5px 20px;
|
|
|
box-sizing: border-box;
|
|
|
.main-head {
|
|
|
position: relative;
|
|
|
width: 100%;
|
|
|
- margin-bottom: 10px;
|
|
|
+ height: 46px;
|
|
|
+ margin-bottom: 5px;
|
|
|
.showType {
|
|
|
width: 100%;
|
|
|
+ padding: 7px 0;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
@@ -269,11 +291,13 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.showAction {
|
|
|
+ background: #e1f2ff;
|
|
|
+ border-radius: 4px;
|
|
|
+ border: 1px solid #82c7fc;
|
|
|
+ padding: 8px;
|
|
|
span.sum {
|
|
|
- border-left: 1px solid #ccc;
|
|
|
- margin: 0 8px;
|
|
|
+ margin: 0 10px;
|
|
|
color: #778089;
|
|
|
- padding-left: 14px;
|
|
|
}
|
|
|
}
|
|
|
}
|