@ebiz/designer-components 0.0.39 → 0.0.40
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/designer-components.css +1 -1
- package/dist/index.mjs +23762 -22596
- package/package.json +1 -1
- package/src/apiService/simpleDataService.js +6 -1
- package/src/components/EbizEmployeeSelector.vue +825 -0
- package/src/index.js +3 -0
- package/src/router/index.js +6 -0
- package/src/views/EbizEmployeeSelector.vue +84 -0
- package/src/views/Home.vue +1 -0
package/package.json
CHANGED
@@ -151,7 +151,8 @@ let apiMap = {
|
|
151
151
|
DEL_DATA: '/appdata/delData',
|
152
152
|
BATCH_DEL_DATA: '/appdata/delDatas',
|
153
153
|
MULTIPLE_DATA_LINK_SEARCH: '/api/appdata/link/select',
|
154
|
-
FILE_UPLOAD: '/api/file/upload' // 文件上传API
|
154
|
+
FILE_UPLOAD: '/api/file/upload', // 文件上传API
|
155
|
+
PROCESS: '/appdata/process'
|
155
156
|
}
|
156
157
|
|
157
158
|
/**
|
@@ -171,6 +172,10 @@ const dataService = {
|
|
171
172
|
fetch: (params = {}, apiConfig = {}, url = '') => {
|
172
173
|
if (!url) {
|
173
174
|
url = apiMap[apiConfig.apiType+'']
|
175
|
+
if (!url) {
|
176
|
+
url = apiMap.PROCESS
|
177
|
+
}
|
178
|
+
url += '?key=' + apiConfig.key
|
174
179
|
}
|
175
180
|
|
176
181
|
const { apiId = '', ...restConfig } = apiConfig
|