mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(button): fix custom-style error (#3903)
This commit is contained in:
parent
7e8f5bbb1c
commit
7c3e2ac706
@ -8,7 +8,7 @@
|
|||||||
hover-class="van-button--active hover-class"
|
hover-class="van-button--active hover-class"
|
||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
form-type="{{ formType }}"
|
form-type="{{ formType }}"
|
||||||
style="{{ computed.rootStyle({ plain, color }) }} {{ customStyle }}"
|
style="{{ computed.rootStyle({ plain, color, customStyle }) }}"
|
||||||
open-type="{{ disabled ? '' : openType }}"
|
open-type="{{ disabled ? '' : openType }}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
|
@ -3,7 +3,7 @@ var style = require('../wxs/style.wxs');
|
|||||||
|
|
||||||
function rootStyle(data) {
|
function rootStyle(data) {
|
||||||
if (!data.color) {
|
if (!data.color) {
|
||||||
return '';
|
return data.customStyle;
|
||||||
}
|
}
|
||||||
|
|
||||||
var properties = {
|
var properties = {
|
||||||
@ -18,7 +18,7 @@ function rootStyle(data) {
|
|||||||
properties['border-color'] = data.color;
|
properties['border-color'] = data.color;
|
||||||
}
|
}
|
||||||
|
|
||||||
return style(properties);
|
return style([properties, data.customStyle]);
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadingColor(data) {
|
function loadingColor(data) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user