小程序端UI庫(kù)iview weapp的modal模態(tài)窗自定義樣式修改
因?yàn)轫?xiàng)目需要在模態(tài)窗中顯示內(nèi)容,小程序端的iview沒(méi)有類(lèi)似popup這種的彈出框,所以就選擇了modal對(duì)話(huà)框來(lái)承載彈出內(nèi)容。一番引入使用后發(fā)現(xiàn),當(dāng)模態(tài)框中的內(nèi)容多了之后會(huì)導(dǎo)致內(nèi)容區(qū)出現(xiàn)滾動(dòng),因?yàn)槟B(tài)框的高度是固定的所以就需要上下滾動(dòng)查看了,一是不方便操作然后又感覺(jué)比較丑。就想通過(guò)控制對(duì)話(huà)框內(nèi)容區(qū)的寬高樣式來(lái)適應(yīng)彈出內(nèi)容。
具體的修改方法如下:
組件修改
組件代碼:
1.modal的index.js
添加寬高屬性
-
Component({
-
externalClasses: ['i-class', 'i-class-mask'],
-
?
-
properties: {
-
...
-
height: {
-
type: String,
-
value: ''
-
},
-
width: {
-
type: String,
-
value: ''
-
}
-
},
2.modal的index.wxml修改:
-
i-modal-body、i-modal-main的標(biāo)簽增加style屬性設(shè)置
-
...
-
<view class="i-modal-main" style="width:{{width}}px;">
-
...
-
<view class="i-modal-body" style="height:{{height}}px;max-height:{{height}}px"><slot></slot></view>
-
...
頁(yè)面修改
1.data添加寬高屬性
-
export default {
-
data() {
-
return {
-
...,
-
height: 150,
-
width: 310,
-
}
-
},
-
...
-
}
2.頁(yè)面內(nèi)引用的modal組件標(biāo)簽上傳入屬性
-
<i-modal
-
title="新增銀行卡"
-
i-class="iot-modal"
-
:visible="visible"
-
:actions="actions"
-
@iclick="handleAddCard"
-
:height="height"
-
:width="width"
-
>
小程序頁(yè)面示例效果
以上只是簡(jiǎn)單的改造,如果您有更好的方法,歡迎留言
?
?
本文摘自 :https://blog.51cto.com/x