vue+elementUI實現(xiàn)點(diǎn)擊按鈕互斥效果
更新時間:2022年04月12日 15:09:06 作者:麥兜:)
這篇文章主要為大家詳細(xì)介紹了vue+elementUI實現(xiàn)點(diǎn)擊按鈕互斥效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了vue+elementUI實現(xiàn)點(diǎn)擊按鈕互斥的具體代碼,供大家參考,具體內(nèi)容如下
先看看實現(xiàn)的效果吧!

步驟:
一.html代碼
<!-- 等級篩選 -->
? ? <div class="level-screening">
? ? ? <el-button
? ? ? ? size="medium"
? ? ? ? type="primary"
? ? ? ? :class="index==itemType?'highlight':''"
? ? ? ? v-for="(item,index) in levelList"
? ? ? ? :key="index"
? ? ? ? @click.prevent="materTay(index,item.code)"
? ? ? >
? ? ? ? {{ item.codeValue }}</el-button
? ? ? >
</div>二.css(less)代碼
.level-screening {
? ? ? padding-left: 40px;
? ? ? box-sizing: border-box;
? ? ? height: 120px;
? ? ? text-align: left;
? ? ? line-height: 80px;
? ? ? .el-button {
? ? ? ? border-color: #0085f4;
? ? ? ? background-color: #fff;
? ? ? ? color: #0085f4;
? ? ? }
? ? ? .highlight {
? ? ? ? background-color: #8e66f6 !important;
? ? ? ? color: #fff;
? ? ? }
? ? }三.js代碼
export default {
?data() {
? ? return {
? ? ? ?levelList: [
? ? ? ? {
? ? ? ? ? code: '',
? ? ? ? ? codeValue: '全部'
? ? ? ? },
? ? ? ? {
? ? ? ? ? code: '',
? ? ? ? ? codeValue: '銅'
? ? ? ? },
? ? ? ? {
? ? ? ? ? code: '',
? ? ? ? ? codeValue: '銀'
? ? ? ? },
? ? ? ? {
? ? ? ? ? code: '',
? ? ? ? ? codeValue: '金'
? ? ? ? },
? ? ? ? {
? ? ? ? ? code: '',
? ? ? ? ? codeValue: '白金'
? ? ? ? },
? ? ? ? {
? ? ? ? ? code: '',
? ? ? ? ? codeValue: '鉑金'
? ? ? ? }
? ? ? ], // 等級篩選數(shù)據(jù)
? ? ? itemType: 0, // 等級篩選選中的標(biāo)識
? ? ? materialCode: '' // 分類的code值
? ? ? ? }
? ? },
? ?methods: {
? ? // 等級篩選互斥效果
? ? materTay(itemType, code) {
? ? ? // 等級篩選選中的標(biāo)識-高亮效果
? ? ? this.itemType = itemType
? ? ? // 分類的code值
? ? ? this.materialCode = code
? ? }
? }
}以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
vue為什么v-for的優(yōu)先級比v-if高原理解析
這篇文章主要為大家介紹了vue為什么v-for的優(yōu)先級比v-if高原理解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-05-05
Vue創(chuàng)建淺層響應(yīng)式數(shù)據(jù)的實例詳解
這篇文章主要介紹了Vue創(chuàng)建淺層響應(yīng)式數(shù)據(jù)的實例,本文通過實例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友參考下吧2023-11-11

