@lambo-design/workflow-approve 1.0.0-beta.29 → 1.0.0-beta.30
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/package.json
CHANGED
|
@@ -37,10 +37,12 @@
|
|
|
37
37
|
</tooltip>
|
|
38
38
|
<Divider style="background-color:#808695;height: 1em;margin: 4px 9px 0 6px;"
|
|
39
39
|
type="vertical"/>
|
|
40
|
-
<
|
|
41
|
-
|
|
40
|
+
<tooltip v-if="item.auditOrganName">
|
|
41
|
+
<span class="audit-name-style"> {{ item.auditOrganName[itemListIndex] }}</span>
|
|
42
|
+
<div slot="content" style="white-space: normal"> {{ item.auditOrganName[itemListIndex] }}</div>
|
|
43
|
+
</tooltip>
|
|
42
44
|
<span v-if="portraitWidth === 0 || portraitWidth >= 600" class="audit-date-style">
|
|
43
|
-
{{
|
|
45
|
+
{{showDate(item)}}
|
|
44
46
|
</span>
|
|
45
47
|
</Row>
|
|
46
48
|
<Row v-if="item.auditComment">
|
package/src/workflow-diagram.vue
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
|
|
31
31
|
<Modal v-model="showDetail" :width="modelWidth" :footer-hide='true' :title="detailDones[0] && detailDones[0].handleName ? detailDones[0].handleName + '详情' : '审批详情'">
|
|
32
32
|
<Card v-for="(item,index) in detailDones" :key="index" style="margin-bottom: 10px">
|
|
33
|
-
<Form :model="item" :label-width="140"
|
|
33
|
+
<Form :model="item" :label-width="140">
|
|
34
34
|
<Row>
|
|
35
35
|
<i-col span="12" offset="0">
|
|
36
36
|
<FormItem :label="item.handleName ? item.handleName + '节点:' : '审批节点:'">
|