n20-common-lib 2.20.1 → 2.20.2
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
|
@@ -1,15 +1,38 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
|
|
2
|
+
<div
|
|
3
|
+
class="w-100p flex-box"
|
|
4
|
+
style="
|
|
5
|
+
flex-wrap: wrap;
|
|
6
|
+
display: grid;
|
|
7
|
+
grid-template-columns: repeat(2, 1fr);
|
|
8
|
+
gap: 16px;
|
|
9
|
+
padding: 0;
|
|
10
|
+
overflow-x: hidden;
|
|
11
|
+
"
|
|
12
|
+
>
|
|
13
|
+
<div v-for="(item, i) in otherAttData" :key="i" class="flex-box flex-v" style="width: 100%; padding: 0 20px">
|
|
4
14
|
<el-form-item
|
|
5
15
|
class="m-r-ss m-b-s"
|
|
16
|
+
label-width="210px"
|
|
6
17
|
:class="item.cfgHasRemark === '1' ? 'flex-auto' : 'flex-1'"
|
|
7
18
|
:label="item.cfgName"
|
|
8
19
|
>
|
|
9
20
|
<span slot="label">
|
|
10
|
-
<span
|
|
11
|
-
|
|
21
|
+
<span
|
|
22
|
+
v-title="item.cfgName"
|
|
23
|
+
style="
|
|
24
|
+
display: inline-block;
|
|
25
|
+
max-width: 200px;
|
|
26
|
+
white-space: nowrap;
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
text-overflow: ellipsis;
|
|
29
|
+
"
|
|
30
|
+
>
|
|
31
|
+
<span v-if="required" style="color: red">*</span>
|
|
32
|
+
{{ item.cfgName }}
|
|
33
|
+
</span>
|
|
12
34
|
</span>
|
|
35
|
+
|
|
13
36
|
<el-input
|
|
14
37
|
v-if="['11'].includes(item.cfgType)"
|
|
15
38
|
v-model="item.cfgVal"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div>
|
|
3
3
|
<el-dialog
|
|
4
4
|
:visible.sync="visible"
|
|
5
|
-
width="
|
|
5
|
+
width="85%"
|
|
6
6
|
:title="'提交意见' | $lc"
|
|
7
7
|
@close="$emit('close')"
|
|
8
8
|
@closed="$emit('closed')"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<el-form ref="approveBtnGroup" label-position="right" :label-width="_lang === 'zh' ? '12em' : '12em'">
|
|
36
36
|
<div
|
|
37
37
|
class="p-b-lg p-t-lg p-r-lg"
|
|
38
|
-
style="max-height:
|
|
38
|
+
style="max-height: 350px; overflow-y: auto; border: 1px dashed var(--border-color-base); border-radius: 5px"
|
|
39
39
|
>
|
|
40
40
|
<show-other-att-new
|
|
41
41
|
ref="showOtherAttNew"
|