You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
206 lines
5.6 KiB
Vue
206 lines
5.6 KiB
Vue
<template>
|
|
<div style="padding: 0 40px;">
|
|
<div class="selectClass">
|
|
<Checkbox :indeterminate="indeterminate"
|
|
:value="allSelect"
|
|
@click.prevent.native="handleCheckAll"> 全选</Checkbox>
|
|
<i-input icon="search"
|
|
@on-change="doSearch"
|
|
placeholder="请输入店铺名称"
|
|
style="width: 250px"></i-input>
|
|
</div>
|
|
<div class="companyTable">
|
|
<div class="companyListClass">
|
|
<Row :gutter="10">
|
|
<div v-if="loading"
|
|
style="padding: 50px 0"
|
|
class="loading">
|
|
<Spin fix>加载中...</Spin>
|
|
</div>
|
|
<CheckboxGroup size="large"
|
|
@on-change="onChange"
|
|
v-model="isSelect">
|
|
<i-col span="8"
|
|
v-if="!item.hide && index < block"
|
|
:key="index"
|
|
v-for="(item, index) in shopList">
|
|
<Checkbox size="large"
|
|
:label="item.value"
|
|
border>
|
|
<span :title="item.label">{{ item.label.substr(0, 18) }}</span>
|
|
</Checkbox>
|
|
</i-col>
|
|
</CheckboxGroup>
|
|
</Row>
|
|
</div>
|
|
<Spin size="large"
|
|
fix
|
|
v-if="loading"></Spin>
|
|
<Button type="info"
|
|
long
|
|
v-if="block < orginShopList.length"
|
|
@click="loadMore">加载更多</Button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ActivityManager from "../../services/ActivityManager/ActivityManager";
|
|
import store from "../../store/index";
|
|
export default {
|
|
name: "useActivityStepThree",
|
|
data () {
|
|
return {
|
|
indeterminate: false,
|
|
allSelect: false,
|
|
selected: [],
|
|
shopList: [],
|
|
isSelect: [],
|
|
selectValue: [],
|
|
shopListData: [],
|
|
loading: false,
|
|
block: 50,
|
|
companys: store.getters.useData.company,
|
|
orginShopList: []
|
|
};
|
|
},
|
|
props: {
|
|
isModify: Boolean
|
|
},
|
|
mounted () {
|
|
this.getShopInfo();
|
|
let _this = this;
|
|
if (store.getters.useData.stores) {
|
|
store.getters.useData.stores.forEach(item => {
|
|
_this.isSelect.push(item.id);
|
|
});
|
|
}
|
|
},
|
|
methods: {
|
|
handleCheckAll () {
|
|
let _this = this;
|
|
if (this.indeterminate) {
|
|
this.allSelect = false;
|
|
} else {
|
|
this.allSelect = !this.allSelect;
|
|
}
|
|
this.indeterminate = false;
|
|
if (this.allSelect) {
|
|
this.isSelect = [];
|
|
this.shopList.forEach(item => {
|
|
if (this.isSelect.indexOf(item.value) < 0 && item.value) {
|
|
this.isSelect.push(item.value);
|
|
}
|
|
});
|
|
} else {
|
|
this.isSelect = [];
|
|
}
|
|
store.getters.useData.stores = [];
|
|
this.isSelect.forEach(item => {
|
|
const s = _this._.find(_this.shopListData, shop => shop.id == item);
|
|
if (s) {
|
|
store.getters.useData.stores.push(
|
|
_this._.find(_this.shopListData, shop => shop.id == item)
|
|
);
|
|
}
|
|
});
|
|
},
|
|
doSearch (e) {
|
|
const keyword = e.target.value;
|
|
let that = this;
|
|
that.block = 50;
|
|
that.shopList = that.orginShopList;
|
|
if (keyword.length > 0) {
|
|
that.shopList = that._.filter(that.shopList, item => {
|
|
console.log(item.label, keyword)
|
|
return item.label.indexOf(keyword) >= 0;
|
|
});
|
|
} else {
|
|
that.shopList = that.orginShopList;
|
|
}
|
|
this.isSelect = this._.filter(this.isSelect, item => item);
|
|
},
|
|
onChange (data) {
|
|
let _this = this;
|
|
data = this._.filter(data, item => item);
|
|
if (data.length === this.shopListData.length) {
|
|
this.indeterminate = false;
|
|
this.allSelect = true;
|
|
} else if (data.length > 0) {
|
|
this.indeterminate = true;
|
|
this.allSelect = false;
|
|
} else {
|
|
this.indeterminate = false;
|
|
this.allSelect = false;
|
|
}
|
|
store.getters.useData.stores = [];
|
|
data.forEach(item => {
|
|
const s = _this._.find(_this.shopListData, shop => shop.id == item);
|
|
if (s) {
|
|
store.getters.useData.stores.push(
|
|
_this._.find(_this.shopListData, shop => shop.id == item)
|
|
);
|
|
}
|
|
});
|
|
},
|
|
loadMore () {
|
|
this.block += 50;
|
|
},
|
|
getShopInfo () {
|
|
let that = this;
|
|
let companyIds = [];
|
|
this.companys.forEach(item => {
|
|
companyIds.push(item.id);
|
|
});
|
|
let data = {
|
|
userId: JSON.parse(sessionStorage.getItem("loginInfo")).userId,
|
|
customerIds: companyIds.join(","),
|
|
scheduleId: store.getters.useData.scheduleId
|
|
};
|
|
if (this.isModify) {
|
|
data.scheduleId = null;
|
|
}
|
|
that.loading = true;
|
|
ActivityManager.getShop(data, function (data) {
|
|
that.shopList = [];
|
|
that.shopListData = data.data.results;
|
|
if (store.getters.useData.stores.length == that.shopListData.length) {
|
|
that.allSelect = true;
|
|
}
|
|
data.data.results.forEach(element => {
|
|
that.isSelect.push("");
|
|
that.selectValue.push("");
|
|
that.shopList.push({
|
|
label: element.name,
|
|
value: element.id
|
|
});
|
|
that.orginShopList = that.shopList;
|
|
});
|
|
that.loading = false;
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.selectClass {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.companyTable {
|
|
height: 250px;
|
|
overflow-y: scroll;
|
|
width: 100%;
|
|
overflow-x: hidden;
|
|
margin-top: 10px;
|
|
}
|
|
.ivu-checkbox-wrapper.ivu-checkbox-large {
|
|
width: 100%;
|
|
font-size: 12px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.ivu-checkbox + span {
|
|
margin-left: 4px;
|
|
}
|
|
</style>
|