diff --git a/public/favicon.ico b/public/favicon.ico
deleted file mode 100644
index 30b5cf8..0000000
Binary files a/public/favicon.ico and /dev/null differ
diff --git a/public/favicon.svg b/public/favicon.svg
new file mode 100644
index 0000000..c468967
--- /dev/null
+++ b/public/favicon.svg
@@ -0,0 +1,32 @@
+
+
+
diff --git a/public/index.html b/public/index.html
index bc136f7..294da2d 100644
--- a/public/index.html
+++ b/public/index.html
@@ -5,7 +5,7 @@
-
+
<%= webpackConfig.name %>
diff --git a/src/views/category/fileNoFormat/index.vue b/src/views/category/fileNoFormat/index.vue
index 98811cd..e7a8651 100644
--- a/src/views/category/fileNoFormat/index.vue
+++ b/src/views/category/fileNoFormat/index.vue
@@ -159,7 +159,7 @@ export default {
})
},
toSort() {
- this.$refs.sort.sortTableData = this.table.right.data
+ this.$refs.sort.sortTableData = JSON.parse(JSON.stringify(this.table.right.data))
this.$refs.sort.sortVisible = true
}
}
diff --git a/src/views/category/listBrowsing/index.vue b/src/views/category/listBrowsing/index.vue
index ee70336..25b8130 100644
--- a/src/views/category/listBrowsing/index.vue
+++ b/src/views/category/listBrowsing/index.vue
@@ -61,7 +61,7 @@
-
+
@@ -101,6 +101,7 @@ export default {
deleteVisible: false,
sortLoading: false,
delAllLoading: false,
+ tableKey: false, // 刷新下面预览表格用的:key
table: {
left: {
data: [],
@@ -146,6 +147,7 @@ export default {
}
}
})
+ this.tableKey = !this.tableKey
})
},
getBottomTableData() {
@@ -203,7 +205,7 @@ export default {
})
},
toSort() {
- this.$refs.sort.sortTableData = this.table.right.data
+ this.$refs.sort.sortTableData = JSON.parse(JSON.stringify(this.table.right.data))
this.$refs.sort.sortVisible = true
}
}
diff --git a/src/views/category/orderingRule/index.vue b/src/views/category/orderingRule/index.vue
index d2b2158..dfba34a 100644
--- a/src/views/category/orderingRule/index.vue
+++ b/src/views/category/orderingRule/index.vue
@@ -10,7 +10,7 @@
selectionChangeHandler(val,'left')" @row-click="(row,column,e)=>clickRowHandler(row,column,e,'leftTable')">
-
+
@@ -31,7 +31,7 @@
selectionChangeHandler(val,'right')" @row-click="(row,column,e)=>clickRowHandler(row,column,e,'rightTable')">
-
+
升序
@@ -174,7 +174,7 @@ export default {
})
},
toSort() {
- this.$refs.sort.sortTableData = this.table.right.data
+ this.$refs.sort.sortTableData = JSON.parse(JSON.stringify(this.table.right.data))
this.$refs.sort.sortVisible = true
}
}
diff --git a/src/views/components/category/SettingForm.vue b/src/views/components/category/SettingForm.vue
index 469eb20..042f4ef 100644
--- a/src/views/components/category/SettingForm.vue
+++ b/src/views/components/category/SettingForm.vue
@@ -294,6 +294,9 @@ export default {
// 显示长度 input.value>200,则自动勾选上“显示一整行”
changEditLength(e) {
const value = e.target.value
+ if (value < 46) {
+ this.$message.error('显示长度最小46')
+ }
if (value > 200) {
this.form.isLine = true
}