vue配合elementUI完成全選功能
阿新 • • 發佈:2018-12-27
vue配合elementUI完成全選功能
<template> <div class="deliverySetting"> <div class="deliverySetting-btn"> <div class="tabs-btn ac"> <input type="button" value="分配派送商" @click="showSetDistributorDailog"> </div> <div class="tabs-btn ac"> <input type="button" value="取消分配" @click="showCancelDistributorDailog"> </div> </div> <div class="deliverySetting-table"> <div class="table-head"> <div class="selection"> <el-checkbox :indeterminate="indeterminate" v-model="ischeckAll" @change="handleCheckAllChange"></el-checkbox> </div> <div class="width185">分割槽名稱</div> <div class="width265">國家</div> <div>派送商</div> </div> <div class="table-body" v-for="(partition,partitionIndex) in distributorsInfo" :key="partitionIndex"> <div class="selection"> <p><el-checkbox :indeterminate="partition.indeterminate" v-model="partition.selected" @change="handleCheckedCountryAllChange(partitionIndex,partition.partitionId,$event)" :key="partitionIndex"></el-checkbox></p> </div> <div class="width185"><p>{{ partition.partitionName }}</p></div> <div class="width265"> <el-checkbox v-for="country in partition.country" v-model="country.selected" @change="handleCheckedCountryChange(partitionIndex,country.id,partition.partitionId,$event)" :label="country" :key="country.id">{{country.fieldName}}</el-checkbox> </div> <div> <p v-for="(item,index) in partition.country" :key="index"> {{ item.distributors }} </p> </div> </div> </div> <!-- 分配派送商dailog --> <el-dialog title="分配派送商" :visible.sync="setDistributorDailog" width="480px"> <el-form :model="distributorForm" :rules="rules" class="setDistributorDailog"> <el-form-item label="派送代理商" label-width="120px"> <el-input v-model="distributorForm.vendorName" auto-complete="off" placeholder="請輸入供應商名稱"></el-input> </el-form-item> <el-form-item label="末端派送商" prop="senderName" label-width="120px"> <el-select v-model="distributorForm.senderName" filterable allow-create default-first-option placeholder="請選派送商名稱"> <el-option label="派送商1" value="shanghai"></el-option> <el-option label="派送商2" value="beijing"></el-option> </el-select> </el-form-item> <el-form-item label="派送商官網" prop="website" label-width="120px"> <el-input v-model="distributorForm.website" auto-complete="off" placeholder="請輸入派送商官網"></el-input> </el-form-item> </el-form> <div slot="footer" class="dialog-footer"> <el-button @click="setDistributorDailog = false">取 消</el-button> <el-button type="primary" @click="setDistributorDailog = false">確 定</el-button> </div> </el-dialog> <!-- 取消分配派送商 --> <el-dialog title="停止提示" :visible.sync="cancelDistributorDailog" :modal="false" width="480px" custom-class="stop-coupon-dialog"> <p><br></p> <p class="ac f16">您確定要取消對的派送分配嗎?</p> <p><br></p> <span slot="footer" class="dialog-footer"> <el-button @click="cancelDistributorDailog = false">取 消</el-button> <el-button type="primary" @click="cancelDistributorDailog=false">確 定</el-button> </span> </el-dialog> </div> </template> <script> export default { name:'deliverySetting', components: { }, props:{ }, data() { return { distributorsInfo:[ { partitionName:'1區',selected:false,partitionId:1,isIndeterminate:false, country:[ { id: "1",fieldName: "奧地利",fieldTableName: "奧地利",distributors:'UPS',selected: false}, { id: "2",fieldName: "芬蘭",fieldTableName: "芬蘭",distributors:'UPS',selected: false}, { id: "3",fieldName: "義大利",fieldTableName: "義大利",distributors:'UPS',selected: false}, { id: "4",fieldName: "葡萄牙",fieldTableName: "葡萄牙",distributors:'UPS',selected: false}, { id: "9",fieldName: "西班牙",fieldTableName: "西班牙",distributors:'UPS',selected: false}, { id: "10",fieldName: "瑞典",fieldTableName: "瑞典",distributors:'UPS',selected: false},] }, { partitionName:'2區',selected:false,partitionId:2,isIndeterminate:false, country:[ { id: "5",fieldName: "丹麥",fieldTableName: "單買",distributors:'',selected: false}, { id: "6",fieldName: "法國",fieldTableName: "法國",distributors:'',selected: false},] }, { partitionName:'3區',selected:false,partitionId:3,isIndeterminate:false, country:[ { id: "7",fieldName: "德國",fieldTableName: "德國",distributors:'YODEL',selected: false}, { id: "8",fieldName: "瑞士",fieldTableName: "瑞士",distributors:'DPD',selected: false}] } ], ischeckAll:false,//一級全選狀態 setDistributorDailog:false, cancelDistributorDailog:false, distributorForm:{ vendorName:'', senderName:'' }, indeterminate:false, rules: { senderName: [{ required: true, message: '欄位不能為空',trigger: 'blur'}], website: [{ required: true, message: '欄位不能為空',trigger: 'blur'}], }, } }, computed: { }, methods: { handleCheckAllChange(e){//一級change事件 this.ischeckAll = e if(e == true){ this.indeterminate = false for(var i=0,len=this.distributorsInfo.length; i<len; i++){ //二級全選反選不確定 this.distributorsInfo[i].selected = e for(var j=0,len1=this.distributorsInfo[i].country.length; j<len1; j++){ this.distributorsInfo[i].country[j].selected = e } } }else{ this.indeterminate = false for(var i=0,len=this.distributorsInfo.length; i<len; i++){ //三級全選反選不確定 this.distributorsInfo[i].selected = e for(var j=0,len1=this.distributorsInfo[i].country.length; j<len1; j++){ this.distributorsInfo[i].country[j].selected = e } } } }, handleCheckedCountryAllChange(index, topId, e){//二級change事件 this.distributorsInfo[index].selected = e//二級勾選後,子級全部勾選或者取消 if(e == false) this.distributorsInfo[index].indeterminate = false //去掉二級不確定狀態 var childrenArray = this.distributorsInfo[index].country if(childrenArray) for(var i=0,len=childrenArray.length; i<len; i++) childrenArray[i].selected = e this.getIsCheckAll() }, handleCheckedCountryChange(topIndex, sonId, topId, e){//三級change事件 var childrenArray = this.distributorsInfo[topIndex].country var tickCount = 0, unTickCount = 0, len = childrenArray.length for(var i = 0; i < len; i++){ if(sonId == childrenArray[i].id) childrenArray[i].selected = e if(childrenArray[i].selected == true) tickCount++ if(childrenArray[i].selected == false) unTickCount++ } if(tickCount == len) {//三級級全勾選 this.distributorsInfo[topIndex].selected = true this.distributorsInfo[topIndex].indeterminate = false } else if(unTickCount == len) {//三級級全不勾選 this.distributorsInfo[topIndex].selected = false this.distributorsInfo[topIndex].indeterminate = false } else { this.distributorsInfo[topIndex].selected = false this.distributorsInfo[topIndex].indeterminate = true //新增二級不確定狀態 } this.getIsCheckAll() }, getIsCheckAll(){ var tickCount = 0, unTickCount = 0, ArrLength = this.distributorsInfo.length for(var j=0; j<ArrLength; j++){//全選checkbox狀態 if(this.distributorsInfo[j].selected == true) tickCount++ if(this.distributorsInfo[j].selected == false) unTickCount++ } if(tickCount == ArrLength) {//二級全勾選 this.ischeckAll = true this.indeterminate = false } else if(unTickCount == ArrLength) {//二級全不勾選 this.ischeckAll = false this.indeterminate = false } else { this.ischeckAll = false this.indeterminate = true //新增一級不確定狀態 } }, showSetDistributorDailog(){ this.setDistributorDailog=true }, showCancelDistributorDailog(){ this.cancelDistributorDailog=true } }, created: function() { }, mounted: function() { // (async() => { }, watch: { } } </script> <style> .deliverySetting{ padding: 20px 0; position: relative; .el-table{ thead{ tr{ th{ font-size: 14px; } } } tbody{ tr{ td{ vertical-align: baseline; p{ line-height: 30px; } .el-checkbox-group{ display: flex; flex-direction: column; label{ line-height: 30px; margin-left: 0; } } } } } } .deliverySetting-table{ font-size: 14px; color: #333; .table-head, .table-body{ display: flex; padding: 10px 0; .selection{ width: 45px; text-align: center; line-height: 36px; } .width185{ width: 185px; } .width265{ width: 265px; } } .table-head{ height: 36px; align-items: center; background-color: #E7F2FF; } .table-body{ border-bottom: 1px solid #e4e4e4; color: #666; &:hover{ background-color: #f5f7fa; } .width265{ display: flex; flex-direction: column; label{ line-height: 30px; margin-left: 0; color: #666; } } p{ line-height: 30px; } } } .deliverySetting-btn{ /*width: 100%;*/ height: 59px; display: flex; justify-content: flex-end; align-items: center; position: absolute; top: -55px; right: -16px; z-index: 100; .tabs-btn { min-width: 90px; height: 34px; line-height: 32px; padding: 0 10px; color: #2387f7; border: solid 1px #4fa2ff; background-color: #e7f2ff; cursor: pointer; &:nth-of-type(2) { margin: 0 15px; } input { border: none; background: transparent; color: inherit; cursor: inherit; outline: none; margin: 0; padding: 0; } &:hover { color: #fff; background-color: #2387f7; } } } .setDistributorDailog{ .el-input{ width: 270px; } } } </style>