n20-common-lib 2.22.53 → 2.22.54
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
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
:show-overflow-tooltip="true"
|
|
35
35
|
>
|
|
36
36
|
<div
|
|
37
|
-
v-title="item.memberName"
|
|
37
|
+
v-title="`${$lc(item.memberName)}`"
|
|
38
38
|
:show-overflow-tooltip="true"
|
|
39
39
|
class="n20-worker text-ellipsis approval-info-member"
|
|
40
40
|
>
|
|
41
|
-
{{ item.memberName }}
|
|
41
|
+
{{ $lc(item.memberName) }}
|
|
42
42
|
</div>
|
|
43
43
|
<div
|
|
44
44
|
v-title="item.deptName"
|
|
@@ -148,11 +148,11 @@
|
|
|
148
148
|
:show-overflow-tooltip="true"
|
|
149
149
|
>
|
|
150
150
|
<div
|
|
151
|
-
v-title="row.memberName"
|
|
151
|
+
v-title="`${$lc(row.memberName)}`"
|
|
152
152
|
:show-overflow-tooltip="true"
|
|
153
153
|
class="n20-worker text-ellipsis approval-info-member"
|
|
154
154
|
>
|
|
155
|
-
{{ row.memberName }}
|
|
155
|
+
{{ $lc(row.memberName) }}
|
|
156
156
|
</div>
|
|
157
157
|
<div
|
|
158
158
|
v-title="row.deptName"
|
|
@@ -509,7 +509,7 @@ export default {
|
|
|
509
509
|
businessId: item._details.businessId
|
|
510
510
|
})
|
|
511
511
|
} else {
|
|
512
|
-
this.$message.error($lc(
|
|
512
|
+
this.$message.error($lc('未配置审批详情链接'))
|
|
513
513
|
}
|
|
514
514
|
},
|
|
515
515
|
async seeApproveChild(id) {
|