htui-yllkbz 1.2.32 → 1.2.33
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/README.md +27 -15
- package/lib/fonts/fontello.068ca2b3.ttf +0 -0
- package/lib/fonts/fontello.8d4a4e6f.woff2 +0 -0
- package/lib/fonts/fontello.a782baa8.woff +0 -0
- package/lib/fonts/fontello.e73a0647.eot +0 -0
- package/lib/htui.common.js +804 -9
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.css +1 -1
- package/lib/htui.umd.js +804 -9
- package/lib/htui.umd.js.gz +0 -0
- package/lib/htui.umd.min.js +4 -4
- package/lib/htui.umd.min.js.gz +0 -0
- package/lib/img/excel.bbca162d.png +0 -0
- package/lib/img/fontello.9354499c.svg +72 -0
- package/lib/img/other.2589bfcc.png +0 -0
- package/lib/img/pdf.a7d6d970.png +0 -0
- package/lib/img/txt.45f9960a.png +0 -0
- package/lib/img/vedio.8638f032.png +0 -0
- package/package.json +2 -1
- package/src/App.vue +1 -1
- package/src/icon/excel.png +0 -0
- package/src/icon/other.png +0 -0
- package/src/icon/pdf.png +0 -0
- package/src/icon/ppt.png +0 -0
- package/src/icon/txt.png +0 -0
- package/src/icon/vedio.png +0 -0
- package/src/icon/word.png +0 -0
- package/src/packages/HtMd/index.ts +13 -0
- package/src/packages/HtMd/index.vue +83 -0
- package/src/packages/HtUpload/index.ts +14 -0
- package/src/packages/HtUpload/index.vue +254 -0
- package/src/packages/index.ts +5 -4
- package/src/packages/type.ts +28 -1
- package/src/shims-vue.d.ts +9 -0
- package/src/views/About.vue +10 -7
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-11-15 14:41:40
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2021-12-
|
|
7
|
+
* @LastEditTime: 2021-12-21 16:17:37
|
|
8
8
|
-->
|
|
9
9
|
|
|
10
10
|
# 基础组件整理
|
|
@@ -24,21 +24,11 @@ Vue.use(HtUI)
|
|
|
24
24
|
|
|
25
25
|
## 使用
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
### ht-table
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
clearable:true,
|
|
33
|
-
value:undefined,
|
|
34
|
-
name:'id',
|
|
35
|
-
ajax:{
|
|
36
|
-
type:'get',
|
|
37
|
-
url: '/asset-model/api/app/asset-model-instance',
|
|
38
|
-
},
|
|
39
|
-
text:'name',
|
|
40
|
-
})"></selectTable>
|
|
41
|
-
//table选择
|
|
29
|
+
#### 对 element table 进行了封装使用 集成了自动分页等数据
|
|
30
|
+
|
|
31
|
+
```
|
|
42
32
|
<ht-table
|
|
43
33
|
:data="state.tableData"
|
|
44
34
|
@onchange='changePage'
|
|
@@ -59,6 +49,28 @@ Vue.use(HtUI)
|
|
|
59
49
|
这里显示人员
|
|
60
50
|
</template>
|
|
61
51
|
</ht-table>
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### ht-table
|
|
55
|
+
|
|
56
|
+
#### 对 element table 进行了封装使用 集成了自动分页等数据
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
<selectTable :config="JSON.stringify({
|
|
61
|
+
key: 'code',
|
|
62
|
+
disabled:false,
|
|
63
|
+
clearable:true,
|
|
64
|
+
value:undefined,
|
|
65
|
+
name:'id',
|
|
66
|
+
ajax:{
|
|
67
|
+
type:'get',
|
|
68
|
+
url: '/asset-model/api/app/asset-model-instance',
|
|
69
|
+
},
|
|
70
|
+
text:'name',
|
|
71
|
+
})"></selectTable>
|
|
72
|
+
//table选择
|
|
73
|
+
|
|
62
74
|
|
|
63
75
|
```
|
|
64
76
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|