20 lines
648 B
Plaintext
20 lines
648 B
Plaintext
|
<view class="i-divider i-class" style="{{parse.getStyle(color,size,height)}}">
|
||
|
<view class="i-divider-content" wx:if="{{content !== ''}}">
|
||
|
{{content}}
|
||
|
</view>
|
||
|
<view class="i-divider-content" wx:else>
|
||
|
<slot></slot>
|
||
|
</view>
|
||
|
<view class="i-divider-line" style="background:{{lineColor}}"></view>
|
||
|
</view>
|
||
|
<wxs module="parse">
|
||
|
module.exports = {
|
||
|
getStyle : function(color,size,height){
|
||
|
var color = 'color:' + color +';';
|
||
|
var size = 'font-size:' + size + 'px;';
|
||
|
var height = 'height:' + height+'px;'
|
||
|
return color + size + height;
|
||
|
}
|
||
|
}
|
||
|
</wxs>
|