n20-common-lib 2.20.12 → 2.20.14
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
|
@@ -72,15 +72,10 @@
|
|
|
72
72
|
<div
|
|
73
73
|
v-if="item.result !== 0 && item.appOrPc !== null && item.appOrPc !== '' && item.appOrPc !== undefined"
|
|
74
74
|
>
|
|
75
|
-
{{
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
? '外部系统审批'
|
|
80
|
-
: item.appOrPc === '3'
|
|
81
|
-
? 'App端审批'
|
|
82
|
-
: item.appOrPc | $lc
|
|
83
|
-
}}
|
|
75
|
+
<span v-if="item.outTitle">{{ item.outTitle }}</span>
|
|
76
|
+
<span v-else>
|
|
77
|
+
{{ item.appOrPc === '1' ? 'PC端审批' : item.appOrPc === '2' ? '外部系统审批' : 'App端审批' | $lc }}
|
|
78
|
+
</span>
|
|
84
79
|
</div>
|
|
85
80
|
<div v-if="item.showConnect === '1'" class="m-l-s">
|
|
86
81
|
<span class="pointer color-ccc f-s-s" @click="seeDetail(item)"
|
|
@@ -514,6 +509,7 @@ export default {
|
|
|
514
509
|
memberName: item.memberName, // 审批人单位
|
|
515
510
|
subProcInitId: item.subProcInitId, // 子流程id
|
|
516
511
|
appOrPc: item.appOrPc, // 终端标识 1 PC 2 APP
|
|
512
|
+
outTitle: item.outTitle, // 外部审批标题
|
|
517
513
|
showConnect: item.showConnect, // 是否显示查看详情
|
|
518
514
|
_details: item,
|
|
519
515
|
deptName: item.deptName, // 部门
|