htui-yllkbz 1.3.86 → 1.3.87
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 +27 -27
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.css +1 -1
- package/lib/htui.umd.js +27 -27
- package/lib/htui.umd.js.gz +0 -0
- package/lib/htui.umd.min.js +5 -5
- package/lib/htui.umd.min.js.gz +0 -0
- package/package.json +1 -1
- package/src/App.vue +4 -2
- package/src/packages/HtMore/index.vue +7 -6
package/lib/htui.umd.min.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/src/App.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: 2023-01-
|
|
7
|
+
* @LastEditTime: 2023-01-09 16:52:40
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<div id="app">
|
|
@@ -44,7 +44,9 @@
|
|
|
44
44
|
:readonly="true"
|
|
45
45
|
:width="'60px'"
|
|
46
46
|
></HtSelectTimeSlot>
|
|
47
|
-
<
|
|
47
|
+
<ul>
|
|
48
|
+
<li>8888<HtMore></HtMore></li>
|
|
49
|
+
</ul>
|
|
48
50
|
<router-view></router-view>
|
|
49
51
|
</div>
|
|
50
52
|
</template>
|
|
@@ -4,17 +4,13 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2022-09-28 10:24:08
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2023-01-
|
|
7
|
+
* @LastEditTime: 2023-01-09 16:57:36
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<el-dropdown :trigger="trigger" @command="handleCommand($event, 'command')">
|
|
11
11
|
<span class="el-dropdown-link">
|
|
12
12
|
<slot>
|
|
13
|
-
<
|
|
14
|
-
<div class="ht-link-item" style="height:5px">.</div>
|
|
15
|
-
<div class="ht-link-item" style="height:5px">.</div>
|
|
16
|
-
<div class="ht-link-item" style="height:5px">.</div>
|
|
17
|
-
</div>
|
|
13
|
+
<i class="ht-icon-more el-icon-more"></i>
|
|
18
14
|
</slot>
|
|
19
15
|
</span>
|
|
20
16
|
<el-dropdown-menu slot="dropdown">
|
|
@@ -75,4 +71,9 @@ export default class Index extends Vue {
|
|
|
75
71
|
.ht-link-title:hover {
|
|
76
72
|
color: var(--primary);
|
|
77
73
|
}
|
|
74
|
+
.ht-icon-more {
|
|
75
|
+
transform: rotate(90deg);
|
|
76
|
+
color: var(--primary);
|
|
77
|
+
cursor: pointer;
|
|
78
|
+
}
|
|
78
79
|
</style>
|