@nstc-business/imes 1.0.30 → 1.0.31
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
|
@@ -173,7 +173,8 @@
|
|
|
173
173
|
<vxe-column
|
|
174
174
|
v-if="showModifyReasonCol"
|
|
175
175
|
min-width="260"
|
|
176
|
-
align="
|
|
176
|
+
align="left"
|
|
177
|
+
header-align="center"
|
|
177
178
|
>
|
|
178
179
|
<template #header>
|
|
179
180
|
<div>
|
|
@@ -187,6 +188,7 @@
|
|
|
187
188
|
<template #default="{ row }">
|
|
188
189
|
<el-input
|
|
189
190
|
v-if="showManualReason(row)"
|
|
191
|
+
class="reason-input"
|
|
190
192
|
type="textarea"
|
|
191
193
|
v-title
|
|
192
194
|
:class="{ reasonRequireRed: manualReasonRed(row) }"
|
|
@@ -199,6 +201,7 @@
|
|
|
199
201
|
/>
|
|
200
202
|
<el-input
|
|
201
203
|
v-if="isQualFn(row)"
|
|
204
|
+
class="reason-input"
|
|
202
205
|
type="textarea"
|
|
203
206
|
v-title
|
|
204
207
|
:show-overflow-tooltip="true"
|
|
@@ -211,6 +214,7 @@
|
|
|
211
214
|
/>
|
|
212
215
|
<el-input
|
|
213
216
|
v-else-if="showAdjustReason(row)"
|
|
217
|
+
class="reason-input"
|
|
214
218
|
type="textarea"
|
|
215
219
|
v-title
|
|
216
220
|
:class="{ reasonRequireRed: adjustReasonRed(row) }"
|
|
@@ -411,6 +415,17 @@ export default {
|
|
|
411
415
|
.full-w {
|
|
412
416
|
width: 100%;
|
|
413
417
|
}
|
|
418
|
+
.reason-input {
|
|
419
|
+
display: block;
|
|
420
|
+
width: 100%;
|
|
421
|
+
box-sizing: border-box;
|
|
422
|
+
|
|
423
|
+
::v-deep .el-textarea__inner {
|
|
424
|
+
width: 100%;
|
|
425
|
+
box-sizing: border-box;
|
|
426
|
+
resize: vertical;
|
|
427
|
+
}
|
|
428
|
+
}
|
|
414
429
|
.select-top {
|
|
415
430
|
margin-top: 2px;
|
|
416
431
|
height: 14px;
|
|
@@ -202,7 +202,8 @@
|
|
|
202
202
|
<vxe-column
|
|
203
203
|
v-if="showModifyReasonCol"
|
|
204
204
|
min-width="260"
|
|
205
|
-
align="
|
|
205
|
+
align="left"
|
|
206
|
+
header-align="center"
|
|
206
207
|
>
|
|
207
208
|
<template #header>
|
|
208
209
|
<div>
|
|
@@ -216,6 +217,7 @@
|
|
|
216
217
|
<template #default="{ row }">
|
|
217
218
|
<el-input
|
|
218
219
|
v-if="showManualModifiedReasonFn(row)"
|
|
220
|
+
class="reason-input"
|
|
219
221
|
type="textarea"
|
|
220
222
|
v-title
|
|
221
223
|
:class="{ reasonRequireRed: manualReasonRequireRedFn(row) }"
|
|
@@ -228,6 +230,7 @@
|
|
|
228
230
|
/>
|
|
229
231
|
<el-input
|
|
230
232
|
v-if="showAdjustModifiedReasonFn(row)"
|
|
233
|
+
class="reason-input"
|
|
231
234
|
type="textarea"
|
|
232
235
|
v-title
|
|
233
236
|
:class="{ reasonRequireRed: adjustReasonRequireRedFn(row) }"
|
|
@@ -376,7 +379,8 @@
|
|
|
376
379
|
<vxe-column
|
|
377
380
|
v-if="showModifyReasonCol"
|
|
378
381
|
min-width="260"
|
|
379
|
-
align="
|
|
382
|
+
align="left"
|
|
383
|
+
header-align="center"
|
|
380
384
|
>
|
|
381
385
|
<template #header>
|
|
382
386
|
<div>
|
|
@@ -390,6 +394,7 @@
|
|
|
390
394
|
<template #default="{ row }">
|
|
391
395
|
<el-input
|
|
392
396
|
v-if="showManualModifiedReasonFn(row)"
|
|
397
|
+
class="reason-input"
|
|
393
398
|
type="textarea"
|
|
394
399
|
v-title
|
|
395
400
|
:class="{ reasonRequireRed: manualReasonRequireRedFn(row) }"
|
|
@@ -402,6 +407,7 @@
|
|
|
402
407
|
/>
|
|
403
408
|
<el-input
|
|
404
409
|
v-if="showAdjustModifiedReasonFn(row)"
|
|
410
|
+
class="reason-input"
|
|
405
411
|
type="textarea"
|
|
406
412
|
v-title
|
|
407
413
|
:class="{ reasonRequireRed: adjustReasonRequireRedFn(row) }"
|
|
@@ -750,6 +756,17 @@ export default {
|
|
|
750
756
|
.full-w {
|
|
751
757
|
width: 100%;
|
|
752
758
|
}
|
|
759
|
+
.reason-input {
|
|
760
|
+
display: block;
|
|
761
|
+
width: 100%;
|
|
762
|
+
box-sizing: border-box;
|
|
763
|
+
|
|
764
|
+
::v-deep .el-textarea__inner {
|
|
765
|
+
width: 100%;
|
|
766
|
+
box-sizing: border-box;
|
|
767
|
+
resize: vertical;
|
|
768
|
+
}
|
|
769
|
+
}
|
|
753
770
|
.row-serial {
|
|
754
771
|
color: #606266;
|
|
755
772
|
font-variant-numeric: tabular-nums;
|