n20-common-lib 3.2.7 → 3.2.8
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
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
{{ item.appOrPc === '1' ? 'PC端审批' : item.appOrPc === '2' ? '外部系统审批' : 'App端审批' | $lc }}
|
|
80
80
|
</span>
|
|
81
81
|
</div>
|
|
82
|
-
<div class="approval-info-cost">
|
|
82
|
+
<div v-if="item.approvalCost" class="approval-info-cost">
|
|
83
83
|
<span>审批时长:</span>
|
|
84
84
|
<span>{{ item.approvalCost }}</span>
|
|
85
85
|
</div>
|
|
@@ -534,7 +534,7 @@ export default {
|
|
|
534
534
|
let approvalData = []
|
|
535
535
|
data?.forEach((item) => {
|
|
536
536
|
let _item = {
|
|
537
|
-
approvalCost: item.approvalCost
|
|
537
|
+
approvalCost: item.approvalCost,
|
|
538
538
|
job: item.job || '',
|
|
539
539
|
isShow: item.isShow, //是否显示
|
|
540
540
|
endTime: item.endTime || '',
|