yuang-framework-ui-pc 1.1.95 → 1.1.96
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { defineComponent, mergeModels, useModel, computed, ref, onMounted, watch,
|
|
1
|
+
import { defineComponent, mergeModels, useModel, computed, ref, onMounted, watch, createBlock, openBlock } from "vue";
|
|
2
2
|
import { ElMessageBox } from "element-plus/es";
|
|
3
3
|
import { EleMessage } from "../utils/message";
|
|
4
|
+
import EleUploadList from "../ele-upload-list/index";
|
|
4
5
|
import { http } from "yuang-framework-ui-common/lib/config/httpConfig";
|
|
5
6
|
import { application } from "yuang-framework-ui-common/lib/config/applicationConfig";
|
|
6
7
|
import require$$0 from "/Users/mac/Work/yuang-union/source-code/yuang-framework/yuang-framework-ui-pc/node_modules/image-conversion/build/conversion.js";
|
|
@@ -218,8 +219,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
218
219
|
{ deep: true, immediate: true }
|
|
219
220
|
);
|
|
220
221
|
return (_ctx, _cache) => {
|
|
221
|
-
|
|
222
|
-
return openBlock(), createBlock(_component_ele_upload_list, {
|
|
222
|
+
return openBlock(), createBlock(EleUploadList, {
|
|
223
223
|
drag: true,
|
|
224
224
|
tools: true,
|
|
225
225
|
modelValue: fileList.value,
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
const vue = require("vue");
|
|
3
3
|
const es = require("element-plus/es");
|
|
4
4
|
const message = require("../utils/message");
|
|
5
|
+
const EleUploadList = require("../ele-upload-list/index");
|
|
5
6
|
const httpConfig = require("yuang-framework-ui-common/lib/config/httpConfig");
|
|
6
7
|
const applicationConfig = require("yuang-framework-ui-common/lib/config/applicationConfig");
|
|
7
8
|
const require$$0 = require("/Users/mac/Work/yuang-union/source-code/yuang-framework/yuang-framework-ui-pc/node_modules/image-conversion/build/conversion.js");
|
|
@@ -219,8 +220,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
219
220
|
{ deep: true, immediate: true }
|
|
220
221
|
);
|
|
221
222
|
return (_ctx, _cache) => {
|
|
222
|
-
|
|
223
|
-
return vue.openBlock(), vue.createBlock(_component_ele_upload_list, {
|
|
223
|
+
return vue.openBlock(), vue.createBlock(EleUploadList, {
|
|
224
224
|
drag: true,
|
|
225
225
|
tools: true,
|
|
226
226
|
modelValue: fileList.value,
|