@lambo-design-mobile/workflow-approve 1.0.0-beta.28 → 1.0.0-beta.29
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/SelectHandle.vue +1 -1
- package/src/TodoListCard.vue +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
## [1.0.0-beta.29](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.28...@lambo-design-mobile/workflow-approve@1.0.0-beta.29) (2026-06-30)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### ✨ Features | 新功能
|
|
6
|
+
|
|
7
|
+
* **审批组件:** 人员筛选框调整挂载 ([290b2ec](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/290b2ecfb4976825a3c9e7e668d4e6c38663ce89))
|
|
8
|
+
|
|
2
9
|
## [1.0.0-beta.28](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.27...@lambo-design-mobile/workflow-approve@1.0.0-beta.28) (2026-06-30)
|
|
3
10
|
|
|
4
11
|
|
package/package.json
CHANGED
package/src/SelectHandle.vue
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
</van-search>
|
|
25
25
|
</div>
|
|
26
26
|
<van-popup v-model="searchFilterShow" ref="searchPopup" position="top"
|
|
27
|
-
|
|
27
|
+
style="position: absolute;margin-top: 104px"
|
|
28
28
|
:overlay-style="{ position:'absolute',marginTop: '104px'}" transition="none">
|
|
29
29
|
<div style="padding: 12px">
|
|
30
30
|
<van-form>
|
package/src/TodoListCard.vue
CHANGED
|
@@ -297,18 +297,18 @@ export default {
|
|
|
297
297
|
}
|
|
298
298
|
</script>
|
|
299
299
|
<style scoped>
|
|
300
|
-
.select-user-popup-body {
|
|
301
|
-
height: 100%;
|
|
302
|
-
overflow:
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
::v-deep .select-user-popup-body > * {
|
|
306
|
-
height: 100%;
|
|
307
|
-
display: flex;
|
|
308
|
-
flex-direction: column;
|
|
309
|
-
overflow:
|
|
310
|
-
min-height: 0;
|
|
311
|
-
}
|
|
300
|
+
.select-user-popup-body {
|
|
301
|
+
height: 100%;
|
|
302
|
+
overflow: visible;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
::v-deep .select-user-popup-body > * {
|
|
306
|
+
height: 100%;
|
|
307
|
+
display: flex;
|
|
308
|
+
flex-direction: column;
|
|
309
|
+
overflow: visible;
|
|
310
|
+
min-height: 0;
|
|
311
|
+
}
|
|
312
312
|
|
|
313
313
|
::v-deep .select-user-popup-body #headTitle {
|
|
314
314
|
flex: 0 0 auto;
|