@ebiz/designer-components 0.0.18-kzy.4 → 0.0.18-kzy.5
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
@@ -126715,7 +126715,7 @@ const {
|
|
126715
126715
|
formToJSON: f$t,
|
126716
126716
|
getAdapter: h$t,
|
126717
126717
|
mergeConfig: p$t
|
126718
|
-
} = $r, sy = "http://
|
126718
|
+
} = $r, sy = "http://localhost:8090/api", yb = $r.create({
|
126719
126719
|
baseURL: sy,
|
126720
126720
|
timeout: 3e4,
|
126721
126721
|
headers: {
|
@@ -138238,7 +138238,7 @@ const uDt = /* @__PURE__ */ Rt(rMt, [["render", iMt], ["__scopeId", "data-v-491f
|
|
138238
138238
|
} : void 0
|
138239
138239
|
]), 1032, ["modelValue", "loading", "multiple", "placeholder", "clearable", "disabled", "size", "empty", "popupProps"]));
|
138240
138240
|
}
|
138241
|
-
}), CDt = /* @__PURE__ */ Rt(e9t, [["__scopeId", "data-v-
|
138241
|
+
}), CDt = /* @__PURE__ */ Rt(e9t, [["__scopeId", "data-v-e1cae77a"]]), t9t = {
|
138242
138242
|
name: "EbizTimeline"
|
138243
138243
|
}, n9t = /* @__PURE__ */ Object.assign(t9t, {
|
138244
138244
|
props: {
|
@@ -138302,6 +138302,7 @@ export {
|
|
138302
138302
|
V$t as EbizFileUpload,
|
138303
138303
|
s9t as EbizFormContainer,
|
138304
138304
|
aDt as EbizGrid,
|
138305
|
+
CDt as EbizGridEditorSelect,
|
138305
138306
|
_P as EbizMessage,
|
138306
138307
|
z$t as EbizMindmap,
|
138307
138308
|
L$t as EbizOkrTree,
|
@@ -138350,6 +138351,5 @@ export {
|
|
138350
138351
|
q$t as TdesignCalendar,
|
138351
138352
|
W$t as TdesignCollapse,
|
138352
138353
|
K$t as TdesignCollapsePanel,
|
138353
|
-
CDt as TinyGridEditorSelect,
|
138354
138354
|
ps as dataService
|
138355
138355
|
};
|
package/package.json
CHANGED
@@ -8,9 +8,9 @@ import axios from 'axios'
|
|
8
8
|
import { TinyNotify } from '@opentiny/vue'
|
9
9
|
|
10
10
|
// 本地开发使用
|
11
|
-
|
11
|
+
const API_BASE_URL = "http://localhost:8090/api";
|
12
12
|
// 组件发布使用
|
13
|
-
const API_BASE_URL = 'http://' + window.location.host + '/api'
|
13
|
+
// const API_BASE_URL = 'http://' + window.location.host + '/api'
|
14
14
|
|
15
15
|
/**
|
16
16
|
* 创建axios实例
|
package/src/index.js
CHANGED
@@ -57,7 +57,7 @@ import EbizDetailBlock from './components/EbizDetailBlock.vue';
|
|
57
57
|
import EbizTree from './components/EbizTree.vue';
|
58
58
|
import EbizTreeSelector from './components/EbizTreeSelector.vue';
|
59
59
|
import EbizTimePicker from './components/EbizTimePicker.vue';
|
60
|
-
import
|
60
|
+
import EbizGridEditorSelect from './components/EbizGridEditorSelect.vue';
|
61
61
|
import { MessagePlugin as EbizMessage } from 'tdesign-vue-next';
|
62
62
|
|
63
63
|
// 导入简洁数据服务
|
@@ -172,5 +172,5 @@ export {
|
|
172
172
|
EbizTreeSelector,
|
173
173
|
// 时间选择器组件
|
174
174
|
EbizTimePicker,
|
175
|
-
|
175
|
+
EbizGridEditorSelect // 表格编辑专用select组件
|
176
176
|
};
|
File without changes
|