htui-yllkbz 1.3.81 → 1.3.83
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 +53 -49
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.css +1 -1
- package/lib/htui.umd.js +53 -49
- 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 +3 -2
- package/src/packages/HtBaseData/index.vue +1 -1
- package/src/packages/HtSelectBaseData/index.vue +2 -2
- package/src/packages/HtSelectOrg/index.vue +4 -2
- package/src/packages/HtSelectUser/index.vue +4 -2
- package/src/packages/style.scss +5 -1
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: 2022-
|
|
7
|
+
* @LastEditTime: 2022-12-13 17:29:24
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<div id="app">
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
></HtSelectBaseData>
|
|
26
26
|
<HtSelectUser
|
|
27
27
|
:clearable="true"
|
|
28
|
-
:multiple="
|
|
28
|
+
:multiple="true"
|
|
29
|
+
:heightAuto="true"
|
|
29
30
|
:checkStrictly="false"
|
|
30
31
|
v-model="state.value"
|
|
31
32
|
@change="testuser"
|
|
@@ -985,7 +985,7 @@ export default class CommonDatas extends Vue {
|
|
|
985
985
|
</style>
|
|
986
986
|
<style lang="scss">
|
|
987
987
|
$primary-color: var(--primary);
|
|
988
|
-
.component-item .el-input--suffix .el-input__inner {
|
|
988
|
+
.component-item-height .el-input--suffix .el-input__inner {
|
|
989
989
|
background: none;
|
|
990
990
|
height: 32px !important;
|
|
991
991
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-12-30 15:47:47
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2022-12-13 17:
|
|
7
|
+
* @LastEditTime: 2022-12-13 17:26:57
|
|
8
8
|
-->
|
|
9
9
|
|
|
10
10
|
<template>
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
:com-class="
|
|
30
30
|
heightAuto
|
|
31
31
|
? 'component-item-heightAuto ht-item-common'
|
|
32
|
-
: 'ht-item-common'
|
|
32
|
+
: 'component-item-height ht-item-common'
|
|
33
33
|
"
|
|
34
34
|
com-style="background:#fff"
|
|
35
35
|
:config-json="configJson"
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-12-30 14:29:14
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2022-12-13 17:
|
|
7
|
+
* @LastEditTime: 2022-12-13 17:27:09
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<span v-if="readonly">
|
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
com-style="background:#fff"
|
|
27
27
|
:config-json="configJson"
|
|
28
28
|
:com-class="
|
|
29
|
-
heightAuto
|
|
29
|
+
heightAuto
|
|
30
|
+
? 'component-item-heightAuto ht-item-common'
|
|
31
|
+
: 'component-item-height ht-item-common'
|
|
30
32
|
"
|
|
31
33
|
@change="searchCommonData"
|
|
32
34
|
></HtBaseData>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-12-30 14:29:14
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2022-12-13 17:
|
|
7
|
+
* @LastEditTime: 2022-12-13 17:27:15
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<span v-if="readonly">
|
|
@@ -22,7 +22,9 @@
|
|
|
22
22
|
:appendToBody="appendToBody"
|
|
23
23
|
:config-json="configJson"
|
|
24
24
|
:com-class="
|
|
25
|
-
heightAuto
|
|
25
|
+
heightAuto
|
|
26
|
+
? 'component-item-heightAuto ht-item-common'
|
|
27
|
+
: 'component-item-height ht-item-common'
|
|
26
28
|
"
|
|
27
29
|
@change="searchCommonData"
|
|
28
30
|
></HtBaseData>
|
package/src/packages/style.scss
CHANGED
|
@@ -24,10 +24,14 @@
|
|
|
24
24
|
border-style: solid;
|
|
25
25
|
}
|
|
26
26
|
$primary-color: var(--primary);
|
|
27
|
-
.component-item .el-input--suffix .el-input__inner {
|
|
27
|
+
.component-item-height .el-input--suffix .el-input__inner {
|
|
28
28
|
background: none;
|
|
29
29
|
height: 32px !important;
|
|
30
30
|
}
|
|
31
|
+
.component-item-heightAuto .el-input--suffix .el-input__inner {
|
|
32
|
+
background: none;
|
|
33
|
+
height: auto !important;
|
|
34
|
+
}
|
|
31
35
|
.component-item .is-disabled .el-input__inner {
|
|
32
36
|
background: #f5f5f5;
|
|
33
37
|
}
|