@cloudbase/weda-ui-mp 3.10.1 → 3.10.2
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.
|
@@ -1387,6 +1387,9 @@ textarea {
|
|
|
1387
1387
|
display: flex;
|
|
1388
1388
|
align-items: center;
|
|
1389
1389
|
}
|
|
1390
|
+
.wd-form-input-wrap__content .weui-cell_active:active::after {
|
|
1391
|
+
background-color: unset;
|
|
1392
|
+
}
|
|
1390
1393
|
.wd-form-input-wrap.wd-input-input-search.template.search-box.color-grey.is-pc-bordered {
|
|
1391
1394
|
background-color: #f2f2f2;
|
|
1392
1395
|
border-color: #f2f2f2;
|
|
@@ -119,6 +119,9 @@
|
|
|
119
119
|
display: flex;
|
|
120
120
|
align-items: center;
|
|
121
121
|
}
|
|
122
|
+
.wd-form-input-wrap__content .weui-cell_active:active::after {
|
|
123
|
+
background-color: unset;
|
|
124
|
+
}
|
|
122
125
|
.wd-form-input-wrap.wd-input-input-search.template.search-box.color-grey.is-pc-bordered {
|
|
123
126
|
background-color: #f2f2f2;
|
|
124
127
|
border-color: #f2f2f2;
|
|
@@ -83,7 +83,7 @@ Component({
|
|
|
83
83
|
* 设置选中菜单项
|
|
84
84
|
* @param {*} params
|
|
85
85
|
*/
|
|
86
|
-
setSelectedInfo(params, isNavigate = false) {
|
|
86
|
+
setSelectedInfo({ params, isNavigate = false } = {}) {
|
|
87
87
|
const { key, item } = params || {};
|
|
88
88
|
let selectItem = item;
|
|
89
89
|
if (key || !item) {
|
|
@@ -133,7 +133,7 @@ Component({
|
|
|
133
133
|
(menu.isMultiTerminal ? menu.mobileMenuData : menu.menuData) || []
|
|
134
134
|
);
|
|
135
135
|
const selectItem = this.findSelectItem(menuData) || {};
|
|
136
|
-
this.setSelectedInfo({ item: selectItem });
|
|
136
|
+
this.setSelectedInfo({ params: { item: selectItem } });
|
|
137
137
|
this.setData({
|
|
138
138
|
menuData: this.generateMenuData({
|
|
139
139
|
menuData,
|