@ebiz/designer-components 0.0.19-beta.11 → 0.0.19-beta.12

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/dist/index.mjs CHANGED
@@ -124272,7 +124272,7 @@ const AAt = /* @__PURE__ */ $t(V1t, [["render", H1t], ["__scopeId", "data-v-491f
124272
124272
  {},
124273
124273
  "/appdata/execute/plugin?key=organizational_structure"
124274
124274
  ), h.value = (await Wa.fetch(
124275
- { keyWord: u.value === "employee" ? o.value : "" },
124275
+ { postEnable: !0, keyWord: u.value === "employee" ? o.value : "" },
124276
124276
  {},
124277
124277
  "/appdata/execute/plugin?key=all_active_employesse"
124278
124278
  )).map((E) => ({
@@ -124483,7 +124483,7 @@ const AAt = /* @__PURE__ */ $t(V1t, [["render", H1t], ["__scopeId", "data-v-491f
124483
124483
  }, 8, ["visible"])
124484
124484
  ]));
124485
124485
  }
124486
- }, MAt = /* @__PURE__ */ $t(Lwt, [["__scopeId", "data-v-850f8600"]]), xAt = {
124486
+ }, MAt = /* @__PURE__ */ $t(Lwt, [["__scopeId", "data-v-bd0531a1"]]), xAt = {
124487
124487
  __name: "EbizTimePicker",
124488
124488
  props: {
124489
124489
  // 选中值
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebiz/designer-components",
3
- "version": "0.0.19-beta.11",
3
+ "version": "0.0.19-beta.12",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -154,7 +154,7 @@ const fetchApiData = async () => {
154
154
  '/appdata/execute/plugin?key=organizational_structure'
155
155
  )
156
156
  employeeData.value = (await dataService.fetch(
157
- {keyWord:activeTab.value === 'employee' ? searchText.value : ''},
157
+ {postEnable:true, keyWord:activeTab.value === 'employee' ? searchText.value : ''},
158
158
  {},
159
159
  "/appdata/execute/plugin?key=all_active_employesse"
160
160
  )).map(i=>({
@@ -1,36 +0,0 @@
1
- <template>
2
- <div>
3
- <EbizTreeMergeTable :type="type" :id="id" @success="handleSuccess"/>
4
- </div>
5
- </template>
6
-
7
- <script>
8
- export default {
9
- name: 'EbizTreeMergeTableConfig'
10
- }
11
- </script>
12
-
13
- <script setup>
14
- import { defineProps, defineEmits } from 'vue'
15
- import EbizTreeMergeTable from './EbizTreeMergeTable.vue'
16
-
17
- const props = defineProps({
18
- type: {
19
- type: String,
20
- default: 'role' // role,post 角色,岗位
21
- },
22
- id: {
23
- type: String,
24
- default: ''
25
- }
26
- })
27
-
28
- const emits = defineEmits(['success'])
29
-
30
- const handleSuccess = () => {
31
- emits('success')
32
- }
33
- </script>
34
-
35
- <style scoped>
36
- </style>