項(xiàng)目框架
Element-ui+Vue+jQuery+Bootstrap+Echarts。
嵌入vue使用的是<script>,沒(méi)有使用vue-cli,請(qǐng)自行將<template>內(nèi)代碼貼入html,<style>內(nèi)代碼貼入樣式表。
checkbox全選和全不選
<template> <el-form-item label="地電阻率選項(xiàng):"> <el-checkbox class="search_item" v-model="eidAll" @change="handleEidAllChange">全選</el-checkbox> <el-checkbox-group v-model="searchItem.eid"> <el-checkbox class="search_item" v-for="item of eidList" :label="item.value">{{ item.name }}</el-checkbox> </el-checkbox-group> </el-form-item> </template> <script> var app = new Vue({ el: '#app', data: { // 全選變量 eidAll: false // checkbox單項(xiàng) searchItem: { eid: [], }, // checkbox數(shù)據(jù)循環(huán) eidList: [{ name: '缺數(shù)', value: 'DZ1' // ... }] }, methods: { // 處理全選 handleEidAllChange() { if (this.eidAll) { this.searchItem.eid = []; var arr = []; for (let i in this.eidList) { arr.push(this.eidList[i].value); } this.searchItem.eid = arr; } else { this.searchItem.eid = []; } }, }, watch: { // 監(jiān)聽(tīng)checkbox是否全部選擇 "searchItem.eid": function() { if (this.searchItem.eid.length == this.eidList.length) { this.eidAll = true } else { this.eidAll = false } } } }); </script>
名稱(chēng)欄目:Element-UI+Vue模式使用總結(jié)-創(chuàng)新互聯(lián)
分享鏈接:http://jinyejixie.com/article20/dshpco.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站排名、網(wǎng)站設(shè)計(jì)公司、電子商務(wù)、用戶(hù)體驗(yàn)、外貿(mào)網(wǎng)站建設(shè)、移動(dòng)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容