htui-yllkbz 1.3.55 → 1.3.57

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "htui-yllkbz",
3
- "version": "1.3.55",
3
+ "version": "1.3.57",
4
4
  "port": "8082",
5
5
  "typings": "types/index.d.ts",
6
6
  "main": "lib/htui.common.js",
@@ -4,7 +4,7 @@
4
4
  * @Author: hutao
5
5
  * @Date: 2021-12-30 15:47:47
6
6
  * @LastEditors: hutao
7
- * @LastEditTime: 2022-08-26 16:13:00
7
+ * @LastEditTime: 2022-09-15 10:04:16
8
8
  -->
9
9
 
10
10
  <template>
@@ -32,15 +32,15 @@
32
32
  </template>
33
33
  <div v-else>
34
34
  <HtShowBaseData
35
- v-if="this.value"
36
35
  :hide-code="hideCode"
37
36
  :show-all-level="showAllLevels"
38
- :base-data-id="this.value"
37
+ :base-data-id="value"
39
38
  :base-data-info="true"
40
39
  com-style="font-size:12px"
41
40
  style="font-size:12px"
42
41
  >
43
42
  </HtShowBaseData>
43
+
44
44
  <!-- <div is='common-datas-info-id'
45
45
  com-style="font-size:12px"
46
46
  v-if="this.value"
@@ -231,7 +231,7 @@ export default class CommonDatas extends Vue {
231
231
  }
232
232
  @Watch('baseDataId')
233
233
  getText(val: string) {
234
- if (val && this.baseDataItem) {
234
+ if (val !== undefined && val !== null && this.baseDataItem) {
235
235
  const tempText = this.setAllLevel(val);
236
236
  this.state.text = tempText;
237
237
  } else {