n20-common-lib 2.4.57 → 2.4.59
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/FileImport/index.vue +0 -3
- package/src/components/FileUploadTable/index.vue +1 -1
- package/src/components/Layout/index.vue +1 -1
- package/src/components/Layout/indexN.vue +1 -2
- package/src/components/Upload/uploadMsg.vue +13 -1
- package/src/i18n.json +3 -0
package/package.json
CHANGED
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
<i class="el-icon-s-release" style="font-size: 60px; color: #999"></i>
|
|
195
195
|
<span style="margin-top: 16px">
|
|
196
196
|
{{ '不支持在线预览,请' | $lc
|
|
197
|
-
}}<el-link type="primary" @click="downFile(seeRow)">{{ '下载' | $lc }}</el-link
|
|
197
|
+
}}<el-link type="primary" class="color-primary" @click="downFile(seeRow)">{{ '下载' | $lc }}</el-link
|
|
198
198
|
>{{ '到本地查看' | $lc }}
|
|
199
199
|
</span>
|
|
200
200
|
</div>
|
|
@@ -397,7 +397,7 @@ export default {
|
|
|
397
397
|
if (tab) {
|
|
398
398
|
this.addRouterKey(tab.route, tab.query)
|
|
399
399
|
if (this.activeNav === tab.uuid) {
|
|
400
|
-
if (this.$route.matched[0]['path'] !== '*') {
|
|
400
|
+
if (this.$route.matched.length && this.$route.matched[0]['path'] !== '*') {
|
|
401
401
|
this.$forceUpdate()
|
|
402
402
|
} else {
|
|
403
403
|
window.postMessage({
|
|
@@ -403,7 +403,6 @@ export default {
|
|
|
403
403
|
},
|
|
404
404
|
tabRefresh({ uuid, path }) {
|
|
405
405
|
let tab = undefined
|
|
406
|
-
console.log(this.tabList)
|
|
407
406
|
if (uuid) {
|
|
408
407
|
tab = this.tabList.find((t) => uuid === t.uuid)
|
|
409
408
|
} else if (path) {
|
|
@@ -412,7 +411,7 @@ export default {
|
|
|
412
411
|
if (tab) {
|
|
413
412
|
this.addRouterKey(tab.route, tab.query)
|
|
414
413
|
if (this.activeNav === tab.uuid) {
|
|
415
|
-
if (this.$route.matched[0]['path'] !== '*') {
|
|
414
|
+
if (this.$route.matched.length && this.$route.matched[0]['path'] !== '*') {
|
|
416
415
|
this.$forceUpdate()
|
|
417
416
|
} else {
|
|
418
417
|
window.postMessage({
|
|
@@ -42,7 +42,19 @@
|
|
|
42
42
|
</div>
|
|
43
43
|
<template v-if="validateResult.errorList.length">
|
|
44
44
|
<div class="bd-t bd-l bd-r">
|
|
45
|
-
<div class="m-t m-b p-l">
|
|
45
|
+
<div class="flex-box flex-lr flex-v m-t m-b p-l p-r">
|
|
46
|
+
<span>{{ '无效数据详情' | $lc }}</span>
|
|
47
|
+
<el-button
|
|
48
|
+
type="text"
|
|
49
|
+
@click="
|
|
50
|
+
() => {
|
|
51
|
+
footerBtn.export.click()
|
|
52
|
+
progressV = false
|
|
53
|
+
}
|
|
54
|
+
"
|
|
55
|
+
>{{ '导出错误数据' | $lc }}</el-button
|
|
56
|
+
>
|
|
57
|
+
</div>
|
|
46
58
|
<el-table :data="errorList" border style="width: 100%">
|
|
47
59
|
<el-table-column
|
|
48
60
|
v-for="column in columnsList"
|
package/src/i18n.json
CHANGED