n20-common-lib 2.2.33 → 2.2.34
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 +1 -1
- package/src/components/ApprovalCard/index.vue +9 -5
- package/src/components/Layout/SubContent/index.vue +1 -1
- package/src/components/Layout/index.vue +1 -1
- package/src/components/Layout/indexN.vue +1 -1
- package/style/index.css +3 -3
- package/theme/blue.css +2 -2
- package/theme/cctcRed.css +2 -2
- package/theme/green.css +2 -2
- package/theme/lightBlue.css +2 -2
- package/theme/orange.css +2 -2
- package/theme/purple.css +2 -2
- package/theme/red.css +2 -2
- package/theme/yellow.css +2 -2
package/package.json
CHANGED
|
@@ -18,20 +18,24 @@
|
|
|
18
18
|
</div>
|
|
19
19
|
<div v-else class="flex-box">
|
|
20
20
|
<div class="result-left-name" :class="item | typeF(status, 'color-')">{{ $lc(item.resultName) }}</div>
|
|
21
|
-
<div
|
|
21
|
+
<div
|
|
22
|
+
v-title="item.assignee"
|
|
23
|
+
class="flex-box flex-item n20-worker m-r-s text-ellipsis"
|
|
24
|
+
:show-overflow-tooltip="true"
|
|
25
|
+
>
|
|
22
26
|
<div
|
|
23
27
|
v-title="item.memberName"
|
|
24
28
|
:show-overflow-tooltip="true"
|
|
25
|
-
class="n20-worker m-r-s text-ellipsis"
|
|
26
|
-
style="
|
|
29
|
+
class="flex-item n20-worker m-r-s text-ellipsis"
|
|
30
|
+
style="width: 250px"
|
|
27
31
|
>
|
|
28
32
|
{{ item.memberName }}
|
|
29
33
|
</div>
|
|
30
34
|
<div
|
|
31
35
|
v-title="item.roleName"
|
|
32
|
-
class="n20-worker text-ellipsis"
|
|
36
|
+
class="flex-item n20-worker text-ellipsis"
|
|
33
37
|
:show-overflow-tooltip="true"
|
|
34
|
-
style="
|
|
38
|
+
style="width: 250px"
|
|
35
39
|
>
|
|
36
40
|
{{ item.roleName }}
|
|
37
41
|
</div>
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
filters: {
|
|
17
17
|
keyF({ path, query = {} }) {
|
|
18
18
|
path = path.replace(/^\//, routerBase)
|
|
19
|
-
return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + window._tab_route_key[path]
|
|
19
|
+
return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + (window._tab_route_key[path] || 0)
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
props: {
|
|
@@ -51,7 +51,7 @@ export default {
|
|
|
51
51
|
},
|
|
52
52
|
filters: {
|
|
53
53
|
keyF({ path, query = {} }) {
|
|
54
|
-
return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + window._tab_route_key[path]
|
|
54
|
+
return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + (window._tab_route_key[path] || 0)
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
props: {
|
|
@@ -51,7 +51,7 @@ export default {
|
|
|
51
51
|
},
|
|
52
52
|
filters: {
|
|
53
53
|
keyF({ path, query = {} }) {
|
|
54
|
-
return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + window._tab_route_key[path]
|
|
54
|
+
return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + (window._tab_route_key[path] || 0)
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
props: {
|