doway-coms 1.6.32 → 1.6.34
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/package.json
CHANGED
|
@@ -95,7 +95,7 @@ import {
|
|
|
95
95
|
deleteObjectCommentApi,
|
|
96
96
|
} from "../../utils/api";
|
|
97
97
|
export default {
|
|
98
|
-
name: "
|
|
98
|
+
name: "LeaveAMessage",
|
|
99
99
|
props: {
|
|
100
100
|
limitSize: {
|
|
101
101
|
// 限制上传大小
|
|
@@ -143,7 +143,7 @@ export default {
|
|
|
143
143
|
this.uploadHeaders.Authorization = `Bearer ${this.$store.getters.token}`;
|
|
144
144
|
this.uploadData.picType = this.picType;
|
|
145
145
|
this.uploadData.resId = this.resId;
|
|
146
|
-
this.internalServiceUrl =
|
|
146
|
+
this.internalServiceUrl = attachGetAttachUrlApi();
|
|
147
147
|
this.uploadData.picAction = this.internalServiceUrl + "/UploadAttach";
|
|
148
148
|
this.getMsgRemarkData();
|
|
149
149
|
},
|
package/packages/index.js
CHANGED
|
@@ -22,6 +22,7 @@ import BaseGantt from "./BaseGantt/index";
|
|
|
22
22
|
import BaseKanbanEmpty from "./BaseKanbanEmpty/index";
|
|
23
23
|
import BaseSearch from "./BaseSearch/index";
|
|
24
24
|
import BaseButton from "./BaseButton/index";
|
|
25
|
+
import LeaveAMessage from "./LeaveAMessage/index";
|
|
25
26
|
|
|
26
27
|
import store from './utils/store'
|
|
27
28
|
import request from './utils/request'
|
|
@@ -33,7 +34,7 @@ const components = [
|
|
|
33
34
|
BaseTextArea, BaseSelect, BaseSelectMulti, BaseTime, BasePagination,
|
|
34
35
|
BaseNumberInput, BaseTool, BaseToolStatus, BasePulldown, BaseIntervalInput,
|
|
35
36
|
BaseForm, BasePictureCard, BaseGrid, BasePrintPreview, BaseGantt,
|
|
36
|
-
BaseKanbanEmpty, BaseSearch, BaseButton
|
|
37
|
+
BaseKanbanEmpty, BaseSearch, BaseButton,LeaveAMessage
|
|
37
38
|
];
|
|
38
39
|
// 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
39
40
|
|
|
@@ -161,6 +162,7 @@ export {
|
|
|
161
162
|
BaseKanbanEmpty,
|
|
162
163
|
BaseSearch,
|
|
163
164
|
BaseButton,
|
|
165
|
+
LeaveAMessage,
|
|
164
166
|
store,
|
|
165
167
|
request,
|
|
166
168
|
}
|