@ddwl/ddwl-ui 1.0.9 → 1.0.11

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 CHANGED
@@ -1,3 +1,21 @@
1
+ ## [1.0.11](https://121.40.23.60:51888/frontend/ddwl-ui/compare/v1.0.10...v1.0.11) (2025-07-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add console ([2e1db6b](https://121.40.23.60:51888/frontend/ddwl-ui/commits/2e1db6baf01a451dc50facba7a20339bb6ccb4cd))
7
+
8
+
9
+
10
+ ## [1.0.10](https://121.40.23.60:51888/frontend/ddwl-ui/compare/v1.0.9...v1.0.10) (2025-07-04)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * add console ([1030082](https://121.40.23.60:51888/frontend/ddwl-ui/commits/1030082a3abcd8085f49595d947b908f6e1c5c71))
16
+
17
+
18
+
1
19
  ## [1.0.9](https://121.40.23.60:51888/frontend/ddwl-ui/compare/v1.0.8...v1.0.9) (2025-07-04)
2
20
 
3
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ddwl/ddwl-ui",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "private": false,
5
5
  "main": "src/main.js",
6
6
  "description": "ddwl组件库",
@@ -29,11 +29,13 @@ export default {
29
29
  },
30
30
  computed: {
31
31
  dictText () {
32
- console.log(this.$DDWL)
32
+ console.log(this.$DDWL, this.row[this.props], this.row, this.props)
33
33
  if (Array.isArray(this.row[this.props])) {
34
34
  const result = this.$DDWL.enum.getLabels(this.code, this.row[this.props])
35
+ console.log(result)
35
36
  return result?.length ? result.join(',') : ''
36
37
  } else {
38
+ console.log(this.$DDWL.enum.getLabel(this.code, this.row[this.props]))
37
39
  return this.$DDWL.enum.getLabel(this.code, this.row[this.props])
38
40
  }
39
41
  }
@@ -100,8 +100,6 @@ import { cloneDeep } from 'lodash'
100
100
  import modules from '../../lib/slots'
101
101
  import ColumnRender from '../render'
102
102
 
103
- console.log(111, modules)
104
-
105
103
  export default {
106
104
  name: 'DTable',
107
105
  components: { ...modules, ColumnRender },