您好,登錄后才能下訂單哦!
這篇“Vue+Element switch組件如何使用”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Vue+Element switch組件如何使用”文章吧。
代碼如下所示:
<el-table-column label="商品狀態(tài)" align="center"> <template slot-scope="{row}"> <el-switch v-model="row.goods_state" class="switch" :active-value="1" :inactive-value="0" active-text="上架" inactive-text="下架" @change="change($event,row)" /> </template> </el-table-column>
參數(shù)說明:
width | switch 的寬度(像素) |
active-text | switch 打開時(shí)的文字描述 |
inactive-text | switch 關(guān)閉時(shí)的文字描述 |
active-value | switch 打開時(shí)的值 |
inactive-value | switch 關(guān)閉時(shí)的值 |
active-color | switch 打開時(shí)的背景色 |
inactive-color | switch 關(guān)閉時(shí)的背景色 |
完整代碼:
<el-table-column label="商品狀態(tài)" align="center"> <template slot-scope="{row}"> <el-switch v-model="row.goods_state" class="switch" :active-value="1" :inactive-value="0" @change="change($event,row)" /> </template> </el-table-column> <script> methods: { //狀態(tài)切換 change(data, row) { console.log(data); console.log(row); //此處可以請(qǐng)求后端接口更改商品狀態(tài) }, } }; </script>
如何讓文字在按鈕中顯示如以下這樣
解決辦法:加入以下css樣式
/* switch按鈕樣式 */ .switch .el-switch__label { position: absolute; display: none; color: #fff !important; } /*打開時(shí)文字位置設(shè)置*/ .switch .el-switch__label--right { z-index: 1; } /* 調(diào)整打開時(shí)文字的顯示位子 */ .switch .el-switch__label--right span{ margin-right: 9px; } /*關(guān)閉時(shí)文字位置設(shè)置*/ .switch .el-switch__label--left { z-index: 1; } /* 調(diào)整關(guān)閉時(shí)文字的顯示位子 */ .switch .el-switch__label--left span{ margin-left: 9px; } /*顯示文字*/ .switch .el-switch__label.is-active { display: block; } /* 調(diào)整按鈕的寬度 */ .switch.el-switch .el-switch__core, .el-switch .el-switch__label { width: 60px !important; margin: 0; }
以上就是關(guān)于“Vue+Element switch組件如何使用”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。