@lambo-design-mobile/workflow-approve 1.0.0-beta.20 → 1.0.0-beta.21
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 +3 -3
- package/src/TodoListCard.vue +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
## [1.0.0-beta.21](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.20...@lambo-design-mobile/workflow-approve@1.0.0-beta.21) (2025-10-15)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
6
|
+
|
|
7
|
+
* **odoListCard:** 更新TodoListCard字段排序&按钮展示逻辑增强 ([1fe525e](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/1fe525e4bec424fe95f4f69e4893a455ce1f7a00))
|
|
8
|
+
|
|
2
9
|
## [1.0.0-beta.20](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/workflow-approve@1.0.0-beta.19...@lambo-design-mobile/workflow-approve@1.0.0-beta.20) (2025-08-21)
|
|
3
10
|
|
|
4
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambo-design-mobile/workflow-approve",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.21",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "lambo",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"bpmn-js": "^7.3.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@lambo-design-mobile/upload-file": "^1.0.0-beta.14",
|
|
17
16
|
"@lambo-design-mobile/lambo-scan-code": "^1.0.0-beta.1",
|
|
18
|
-
"@lambo-design-mobile/shared": "^1.0.0-beta.18"
|
|
17
|
+
"@lambo-design-mobile/shared": "^1.0.0-beta.18",
|
|
18
|
+
"@lambo-design-mobile/upload-file": "^1.0.0-beta.15"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
21
|
"release": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
|
package/src/TodoListCard.vue
CHANGED
|
@@ -23,21 +23,21 @@
|
|
|
23
23
|
:arrow-direction="detailsVisible[index] ? 'down' : ''"
|
|
24
24
|
:value="item.procName"></van-cell>
|
|
25
25
|
<div v-if="detailsVisible[index]">
|
|
26
|
-
<van-cell title-class="list-title" value-class="list-value" class="custom-cell" :border="false"
|
|
27
|
-
title="当前环节"
|
|
28
|
-
:value="item.taskName"></van-cell>
|
|
29
26
|
<van-cell title-class="list-title" value-class="list-value" class="custom-cell" :border="false" title="申请人"
|
|
30
27
|
:value="item.applyUser ? item.applyUser.split(':')[1] : '未定义'"></van-cell>
|
|
28
|
+
<van-cell title-class="list-title" value-class="list-value" class="custom-cell" :border="false"
|
|
29
|
+
:title="selectedTask === 'pending' ? '发起时间':'审批时间' "
|
|
30
|
+
:value="selectedTask === 'pending' ? formatDate(item.startDate) :formatDate(item.auditDate)">
|
|
31
|
+
</van-cell>
|
|
31
32
|
</div>
|
|
32
|
-
<van-cell title-class="list-title" value-class="list-value" class="custom-cell"
|
|
33
|
-
|
|
34
|
-
:value="
|
|
35
|
-
</van-cell>
|
|
33
|
+
<van-cell title-class="list-title" value-class="list-value" class="custom-cell" :border="false"
|
|
34
|
+
title="当前环节"
|
|
35
|
+
:value="item.taskName"></van-cell>
|
|
36
36
|
<van-cell v-if="selectedTask === 'pending'" :key="selectedTask" title=" ">
|
|
37
37
|
<template #right-icon>
|
|
38
38
|
<div class="button-group">
|
|
39
39
|
<van-button class="button" size="small" plain type="info" @click="handleItem(item)">
|
|
40
|
-
{{ item.handleName || item.handleType === '20' ? '审批' : '办理' }}
|
|
40
|
+
{{ item.handleName || (item.handleType === '20' ? '审批' : '办理') }}
|
|
41
41
|
</van-button>
|
|
42
42
|
</div>
|
|
43
43
|
</template>
|