mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
perf(divider): use wxs (#3887)
This commit is contained in:
parent
2f7d66a14f
commit
8e815c9c50
@ -2,33 +2,12 @@ import { VantComponent } from '../common/component';
|
|||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: {
|
props: {
|
||||||
dashed: {
|
dashed: Boolean,
|
||||||
type: Boolean,
|
hairline: Boolean,
|
||||||
value: false,
|
contentPosition: String,
|
||||||
},
|
fontSize: String,
|
||||||
hairline: {
|
borderColor: String,
|
||||||
type: Boolean,
|
textColor: String,
|
||||||
value: false,
|
customStyle: String,
|
||||||
},
|
|
||||||
contentPosition: {
|
|
||||||
type: String,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
fontSize: {
|
|
||||||
type: Number,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
borderColor: {
|
|
||||||
type: String,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
textColor: {
|
|
||||||
type: String,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
customStyle: {
|
|
||||||
type: String,
|
|
||||||
value: '',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
|
||||||
<view
|
<view
|
||||||
class="custom-class {{ utils.bem('divider', [{dashed, hairline}, contentPosition]) }}"
|
class="custom-class {{ utils.bem('divider', [{ dashed, hairline }, contentPosition]) }}"
|
||||||
style="{{ borderColor ? 'border-color: ' + borderColor + ';' : '' }}{{ textColor ? 'color: ' + textColor + ';' : '' }} {{ fontSize ? 'font-size: ' + fontSize + 'px;' : '' }} {{ customStyle }}"
|
style="{{ computed.rootStyle({ borderColor, textColor, fontSize, customStyle }) }}"
|
||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
|
18
packages/divider/index.wxs
Normal file
18
packages/divider/index.wxs
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
/* eslint-disable */
|
||||||
|
var style = require('../wxs/style.wxs');
|
||||||
|
var addUnit = require('../wxs/add-unit.wxs');
|
||||||
|
|
||||||
|
function rootStyle(data) {
|
||||||
|
return style([
|
||||||
|
{
|
||||||
|
'border-color': data.borderColor,
|
||||||
|
color: data.textColor,
|
||||||
|
'font-size': addUnit(data.fontSize),
|
||||||
|
},
|
||||||
|
data.customStyle,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
rootStyle: rootStyle,
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user