@lambo-design/workflow-approve 1.0.0-beta.93 → 1.0.0-beta.94

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/portrait.vue +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design/workflow-approve",
3
- "version": "1.0.0-beta.93",
3
+ "version": "1.0.0-beta.94",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -12,8 +12,8 @@
12
12
  "devDependencies": {
13
13
  "axios": "^0.24.0",
14
14
  "axios-cache-plugin": "^0.1.0",
15
- "@lambo-design/core": "^4.7.1-beta.169",
16
- "@lambo-design/shared": "^1.0.0-beta.297"
15
+ "@lambo-design/shared": "^1.0.0-beta.297",
16
+ "@lambo-design/core": "^4.7.1-beta.169"
17
17
  },
18
18
  "dependencies": {
19
19
  "bpmn-js": "^7.3.1",
package/src/portrait.vue CHANGED
@@ -100,7 +100,7 @@
100
100
  </a>
101
101
  <transition style="position: relative; overflow-x: hidden" v-if="showProcessInfo && !inHorizontal" name="draw" @before-enter="beforeFlowInfoEnter" @enter="flowInfoEnter"
102
102
  @before-leave="beforeFlowInfoLeave" @leave="flowInfoLeave">
103
- <lamboIndicatorCard v-show="isExpanded" class="portrait-lambo-indicator-card"
103
+ <LamboIndicatorCard v-show="isExpanded" class="portrait-lambo-indicator-card"
104
104
  :style="{width: portraitWidth + 'px', right: '0', ...pageContainerWithoutPadding}" :hasExtend="false">
105
105
  <div slot="content-title">流程信息</div>
106
106
  <ProcessInfo ref="processInfo"
@@ -119,7 +119,7 @@
119
119
  :portrait-width="portraitWidth"
120
120
  :smart-flow-server-context="smartFlowServerContext"
121
121
  @upload-file="uploadFile"/>
122
- </lamboIndicatorCard>
122
+ </LamboIndicatorCard>
123
123
  </transition>
124
124
 
125
125
  <!-- 节点跳转选择弹框 -->
@@ -580,6 +580,7 @@ export default {
580
580
  position: 'absolute',
581
581
  top: `${top}px`,
582
582
  height: `calc(100% - ${top + this.footerHeight}px)`,
583
+ minHeight: `calc(100% - ${top + this.footerHeight}px)`,
583
584
  }
584
585
  return style
585
586
  },