@ddwl/ddwl-ui 1.0.7 → 1.0.9
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/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/src/lib/slots/dict.vue +3 -1
- package/src/lib/slots/file.vue +2 -1
- package/src/lib/slots/icon.vue +2 -1
- package/src/packages/table/index.vue +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [1.0.9](https://121.40.23.60:51888/frontend/ddwl-ui/compare/v1.0.8...v1.0.9) (2025-07-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add console ([128ea47](https://121.40.23.60:51888/frontend/ddwl-ui/commits/128ea47e252acedf6c800cbd241fae835fd7822f))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## [1.0.8](https://121.40.23.60:51888/frontend/ddwl-ui/compare/v1.0.7...v1.0.8) (2025-07-04)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* slot name修改 ([c0789c5](https://121.40.23.60:51888/frontend/ddwl-ui/commits/c0789c5583fbe55de63c01f2f9dbb36c038765b2))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
## [1.0.7](https://121.40.23.60:51888/frontend/ddwl-ui/compare/v1.0.6...v1.0.7) (2025-07-04)
|
|
2
20
|
|
|
3
21
|
|
package/package.json
CHANGED
package/src/lib/slots/dict.vue
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
<script>
|
|
7
7
|
export default {
|
|
8
|
-
|
|
8
|
+
// eslint-disable-next-line vue/multi-word-component-names
|
|
9
|
+
name: 'Dict',
|
|
9
10
|
components: {},
|
|
10
11
|
props: {
|
|
11
12
|
row: {
|
|
@@ -28,6 +29,7 @@ export default {
|
|
|
28
29
|
},
|
|
29
30
|
computed: {
|
|
30
31
|
dictText () {
|
|
32
|
+
console.log(this.$DDWL)
|
|
31
33
|
if (Array.isArray(this.row[this.props])) {
|
|
32
34
|
const result = this.$DDWL.enum.getLabels(this.code, this.row[this.props])
|
|
33
35
|
return result?.length ? result.join(',') : ''
|
package/src/lib/slots/file.vue
CHANGED
package/src/lib/slots/icon.vue
CHANGED