easy3wui 1.5.88-beta4 → 1.5.88-beta5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/btn.css +3 -0
- package/assets/index.css +3 -0
- package/lib/Easy3wButton/index.js +4 -2
- package/package.json +1 -1
package/assets/btn.css
CHANGED
package/assets/index.css
CHANGED
|
@@ -141,6 +141,8 @@ var Easy3wButton = function (_Component) {
|
|
|
141
141
|
// 传入btnType
|
|
142
142
|
if (btnType === 'secondary') {
|
|
143
143
|
typeProps = {};
|
|
144
|
+
} else if (btnType === 'third') {
|
|
145
|
+
typeProps = { classname: (0, _classnames2['default'])(['e3wFootBtn', 'e3wFootBtnThird']) };
|
|
144
146
|
} else {
|
|
145
147
|
typeProps = { type: btnType };
|
|
146
148
|
}
|
|
@@ -156,9 +158,9 @@ var Easy3wButton = function (_Component) {
|
|
|
156
158
|
onClick: function onClick(e) {
|
|
157
159
|
return _this.onClickFunc(e, obj.func);
|
|
158
160
|
},
|
|
159
|
-
loading: obj.loading
|
|
161
|
+
loading: obj.loading,
|
|
162
|
+
className: (0, _classnames2['default'])(['e3wFootBtn'])
|
|
160
163
|
}, typeProps, {
|
|
161
|
-
className: (0, _classnames2['default'])(['e3wFootBtn']),
|
|
162
164
|
key: index
|
|
163
165
|
}),
|
|
164
166
|
obj.cName
|