n20-common-lib 2.13.18 → 2.14.1
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
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
<span v-if="readonly">{{ row[keys.name] ? row[keys.name].replace(/\.[A-z0-9]+$/, '') : '' }}</span>
|
|
74
74
|
<el-input
|
|
75
75
|
v-else
|
|
76
|
+
v-title
|
|
76
77
|
:value="row[keys.name] ? row[keys.name].replace(/\.[A-z0-9]+$/, '') : ''"
|
|
77
78
|
disabled
|
|
78
79
|
:placeholder="'请输入' | $lc"
|
|
@@ -338,7 +339,7 @@ export default {
|
|
|
338
339
|
props: {
|
|
339
340
|
AIOptions: {
|
|
340
341
|
type: Object,
|
|
341
|
-
|
|
342
|
+
default: () => ({})
|
|
342
343
|
},
|
|
343
344
|
openAI: {
|
|
344
345
|
type: Boolean,
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
>
|
|
20
20
|
<template slot="trigger">
|
|
21
21
|
<slot name="trigger">
|
|
22
|
-
<el-input :value="fileNameC" :placeholder="placeholder" readonly :disabled="$attrs.disabled">
|
|
22
|
+
<el-input v-title :value="fileNameC" :placeholder="placeholder" readonly :disabled="$attrs.disabled">
|
|
23
23
|
<template slot="suffix">
|
|
24
24
|
<i
|
|
25
25
|
v-if="fileNameC && showClear"
|