htui-yllkbz 1.5.32 → 1.5.35
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/lib/htui.common.js +57 -56
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.css +1 -1
- package/lib/htui.umd.js +57 -56
- package/lib/htui.umd.js.gz +0 -0
- package/lib/htui.umd.min.js +9 -9
- package/lib/htui.umd.min.js.gz +0 -0
- package/package.json +2 -2
- package/src/packages/HtBaseData/index.vue +1 -1
- package/src/packages/HtTable/index.vue +2 -2
- package/src/views/About.vue +2 -2
package/lib/htui.umd.min.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-11-11 11:23:24
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2024-
|
|
7
|
+
* @LastEditTime: 2024-10-22 11:28:41
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<div v-loading="state.loading"
|
|
@@ -701,7 +701,7 @@ export default class HtTable extends Vue {
|
|
|
701
701
|
const allColumns: string | null = window.localStorage.getItem(
|
|
702
702
|
"table_" + this.uuId
|
|
703
703
|
);
|
|
704
|
-
if (allColumns) {
|
|
704
|
+
if (allColumns && JSON.parse(allColumns)?.length) {
|
|
705
705
|
this.state.allColumns = JSON.parse(allColumns);
|
|
706
706
|
this.state.showColumns = JSON.parse(allColumns);
|
|
707
707
|
this.getShowKeys(this.state.allColumns);
|
package/src/views/About.vue
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-11-15 14:41:40
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2024-
|
|
7
|
+
* @LastEditTime: 2024-10-22 11:24:18
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<div>
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
<div ref="ht-pdf">
|
|
40
40
|
<HtTable :data="state.data"
|
|
41
41
|
:showFilter="true"
|
|
42
|
-
:uuId="'
|
|
42
|
+
:uuId="'dhjsgdshg8989353334'"
|
|
43
43
|
:configShow="true"
|
|
44
44
|
:checked="false"
|
|
45
45
|
:isExpand="false"
|