|
@@ -0,0 +1,267 @@
|
|
|
+<!--
|
|
|
+ * @Author: Badguy
|
|
|
+ * @Date: 2022-04-08 14:19:57
|
|
|
+ * @LastEditTime: 2022-04-11 11:53:15
|
|
|
+ * @LastEditors: your name
|
|
|
+ * @Description: 多选卡片列表
|
|
|
+ * have a nice day!
|
|
|
+-->
|
|
|
+
|
|
|
+<template>
|
|
|
+ <div class="check-card-list">
|
|
|
+ <template v-if="withHeader">
|
|
|
+ <div class="header">
|
|
|
+ <slot name="header">
|
|
|
+ <div class="title">{{ title }}</div>
|
|
|
+ <template v-if="withSearch">
|
|
|
+ <el-input
|
|
|
+ v-model="searchText"
|
|
|
+ :placeholder="searchPlaceholder"
|
|
|
+ />
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="searchClickHandler"
|
|
|
+ >搜索</el-button>
|
|
|
+ </template>
|
|
|
+ </slot>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <div class="main">
|
|
|
+ <template v-if="dataList.length">
|
|
|
+ <el-scrollbar class="scrollBar">
|
|
|
+ <el-row
|
|
|
+ v-infinite-scroll="load"
|
|
|
+ :infinite-scroll-distance="20"
|
|
|
+ infinite-scroll-disabled="disabled"
|
|
|
+ :gutter="16"
|
|
|
+ class="infinite-scroll"
|
|
|
+ >
|
|
|
+ <el-checkbox-group
|
|
|
+ v-model="checkedList"
|
|
|
+ @change="checkChange"
|
|
|
+ >
|
|
|
+ <el-col
|
|
|
+ v-for="(item, index) in dataList"
|
|
|
+ :key="index"
|
|
|
+ :span="span"
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ class="check-card"
|
|
|
+ :style="{ height: cardHeight }"
|
|
|
+ @click="cardClickHandler(item[checkId])"
|
|
|
+ >
|
|
|
+ <div class="label">{{ item[label] }}</div>
|
|
|
+ <el-checkbox :label="item[checkId]" />
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-checkbox-group>
|
|
|
+ </el-row>
|
|
|
+ <template v-if="total > 1">
|
|
|
+ <p
|
|
|
+ v-if="loading"
|
|
|
+ class="center"
|
|
|
+ >加载中...</p>
|
|
|
+ <p
|
|
|
+ v-if="noMore"
|
|
|
+ class="center"
|
|
|
+ >没有更多数据了~</p>
|
|
|
+ </template>
|
|
|
+ </el-scrollbar>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <el-empty description="暂无数据" />
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ props: {
|
|
|
+ withHeader: {
|
|
|
+ type: Boolean,
|
|
|
+ default: true
|
|
|
+ },
|
|
|
+ withSearch: {
|
|
|
+ type: Boolean,
|
|
|
+ default: true
|
|
|
+ },
|
|
|
+ title: {
|
|
|
+ type: String,
|
|
|
+ default: '多选卡片列表'
|
|
|
+ },
|
|
|
+ searchPlaceholder: {
|
|
|
+ type: String,
|
|
|
+ default: '请输入关键词'
|
|
|
+ },
|
|
|
+ column: {
|
|
|
+ type: Number,
|
|
|
+ default: 2
|
|
|
+ },
|
|
|
+ label: {
|
|
|
+ type: String,
|
|
|
+ default: 'name'
|
|
|
+ },
|
|
|
+ checkId: {
|
|
|
+ type: String,
|
|
|
+ default: 'id'
|
|
|
+ },
|
|
|
+ dataList: {
|
|
|
+ type: Array,
|
|
|
+ default: () => []
|
|
|
+ },
|
|
|
+ cardHeight: {
|
|
|
+ type: String,
|
|
|
+ default: '88px'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ keyWords: '',
|
|
|
+ searchText: '',
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 20,
|
|
|
+ loading: false,
|
|
|
+ total: 0,
|
|
|
+ checkedList: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ span() {
|
|
|
+ if (Number.isInteger(this.column)) {
|
|
|
+ if (this.column > 0 && this.column <= 24) {
|
|
|
+ return 24 % this.column ? 24 : 24 / this.column
|
|
|
+ } else {
|
|
|
+ throw new Error('Between 1 ~ 24!')
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ throw new Error('Only integer!')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ noMore() {
|
|
|
+ return this.pageNum >= this.total
|
|
|
+ },
|
|
|
+ disabled() {
|
|
|
+ return this.loading || this.noMore
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ searchText(val) {
|
|
|
+ if (val.length === 0) {
|
|
|
+ this.clearFliter()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ fetchData() {
|
|
|
+ this.$emit('load', this.keyWords, this.pageSize, this.pageNum)
|
|
|
+ },
|
|
|
+ searchClickHandler() {
|
|
|
+ if (this.searchText.length > 0) {
|
|
|
+ this.keyWords = this.searchText
|
|
|
+ this.pageNum = 1
|
|
|
+ this.fetchData()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ clearFliter() {
|
|
|
+ this.keyWords === ''
|
|
|
+ this.pageNum = 1
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
+ load() {
|
|
|
+ this.pageNum += 1
|
|
|
+ // console.log(this.pageNum, this.total, this.loading)
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
+ cardClickHandler(id) {
|
|
|
+ console.log(id)
|
|
|
+ },
|
|
|
+ checkChange(arr) {
|
|
|
+ console.log(arr)
|
|
|
+ // this.$emit('check-change', arr)
|
|
|
+ },
|
|
|
+ // 父组件请求完成后调用此方法设置total值
|
|
|
+ setTotal(total) {
|
|
|
+ this.total = total
|
|
|
+ },
|
|
|
+ setLoading(loading) {
|
|
|
+ this.loading = loading
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.check-card-list::v-deep {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ padding-top: 32px;
|
|
|
+ .header {
|
|
|
+ padding: 0 32px;
|
|
|
+ height: 32px;
|
|
|
+ display: flex;
|
|
|
+ .title {
|
|
|
+ flex: 1;
|
|
|
+ height: 24px;
|
|
|
+ font-size: 24px;
|
|
|
+ font-family: 'Microsoft YaHei';
|
|
|
+ font-weight: bold;
|
|
|
+ color: #303133;
|
|
|
+ }
|
|
|
+ .el-input {
|
|
|
+ max-width: 160px;
|
|
|
+ .el-input__inner {
|
|
|
+ height: 32px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-button {
|
|
|
+ width: 56px;
|
|
|
+ margin-left: 8px;
|
|
|
+ padding: 0;
|
|
|
+ border-radius: 4px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .main {
|
|
|
+ padding-top: 11px;
|
|
|
+ height: calc(100% - 32px);
|
|
|
+ .scrollBar {
|
|
|
+ height: 100%;
|
|
|
+ .el-scrollbar__wrap {
|
|
|
+ overflow-x: auto;
|
|
|
+ }
|
|
|
+ .infinite-scroll {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ padding: 0 20px 0 32px;
|
|
|
+ }
|
|
|
+ .check-card {
|
|
|
+ margin-top: 16px;
|
|
|
+ padding: 16px;
|
|
|
+ background: #f5f7fa;
|
|
|
+ box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
|
|
|
+ border-radius: 8px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: flex-start;
|
|
|
+ .label {
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: 'Microsoft YaHei';
|
|
|
+ color: #303133;
|
|
|
+ }
|
|
|
+ .el-checkbox {
|
|
|
+ .el-checkbox__inner {
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ }
|
|
|
+ .el-checkbox__label {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|