htui-yllkbz 1.5.42 → 1.5.43
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 +161 -66
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.css +1 -1
- package/lib/htui.umd.js +161 -66
- 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 +1 -1
- package/src/packages/HtBaseData/index.vue +255 -81
- package/src/packages/HtSelectBaseData/index.vue +44 -20
- package/src/views/About.vue +11 -2
package/src/views/About.vue
CHANGED
|
@@ -4,11 +4,14 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-11-15 14:41:40
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime:
|
|
7
|
+
* @LastEditTime: 2025-02-10 14:50:13
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<div>
|
|
11
|
-
|
|
11
|
+
<HtSelectBaseData :byCode="true"
|
|
12
|
+
value="卷"
|
|
13
|
+
@change="changeBase"
|
|
14
|
+
dataTypeId="MeasureUnit"></HtSelectBaseData>
|
|
12
15
|
<el-button @click="state.visible = true">打开</el-button>
|
|
13
16
|
<!-- <ht-row :gutter="16" :copies="10" colMinHeight="56px">
|
|
14
17
|
<ht-col :span="2">iii</ht-col>
|
|
@@ -76,11 +79,13 @@ import HtRow from "@/packages/HtRow/index.vue";
|
|
|
76
79
|
import HtCol from "@/packages/HtCol/index.vue";
|
|
77
80
|
import { Column } from "@/packages/type";
|
|
78
81
|
import HtDrawer from "@/packages/HtDrawer";
|
|
82
|
+
|
|
79
83
|
import HtBread from "@/packages/HtBread";
|
|
80
84
|
import HtMore from "@/packages/HtMore";
|
|
81
85
|
import { getSpanMethod } from "@/packages/HtTable/table-span-method";
|
|
82
86
|
import HtMd from "@/packages/HtMd";
|
|
83
87
|
import { getAllBaseData } from "@/packages/common";
|
|
88
|
+
import HtSelectBaseData from "@/packages/HtSelectBaseData";
|
|
84
89
|
|
|
85
90
|
interface State {
|
|
86
91
|
/** 数据状态 */
|
|
@@ -104,6 +109,7 @@ interface State {
|
|
|
104
109
|
HtDrawer,
|
|
105
110
|
HtMore,
|
|
106
111
|
HtMd,
|
|
112
|
+
HtSelectBaseData,
|
|
107
113
|
},
|
|
108
114
|
})
|
|
109
115
|
export default class Index extends Vue {
|
|
@@ -246,6 +252,9 @@ export default class Index extends Vue {
|
|
|
246
252
|
submitTest() {
|
|
247
253
|
console.log("00000");
|
|
248
254
|
}
|
|
255
|
+
changeBase(e: string, data: any) {
|
|
256
|
+
console.log("eeee", e, data);
|
|
257
|
+
}
|
|
249
258
|
/** 方法 */
|
|
250
259
|
// test(e) {
|
|
251
260
|
// // console.log("eee", e);
|