|
@@ -1,4 +1,4 @@
|
|
|
-import { defineComponent, onMounted, provide } from "vue";
|
|
|
+import { defineComponent, onMounted, provide, reactive } from "vue";
|
|
|
import { Container, Draggable } from "vue-dndrop";
|
|
|
import { string } from "vue-types";
|
|
|
|
|
@@ -9,32 +9,44 @@ import { Loadmore } from "@queenjs/ui";
|
|
|
import { Button } from "ant-design-vue";
|
|
|
import { queenApi } from "queenjs";
|
|
|
import SourceItem from "./Sources/SourceItem";
|
|
|
-
|
|
|
+import { useCtx } from "@/comm/ctx";
|
|
|
+import { nanoid } from "nanoid";
|
|
|
+import image from "@queenjs/ui/image";
|
|
|
export default defineComponent({
|
|
|
setup(props) {
|
|
|
const editor = useEditor();
|
|
|
// const resource = useResource();
|
|
|
// provide("sourceFrom", props.sourceFrom);
|
|
|
-
|
|
|
- function getCurrCtrl() {
|
|
|
- // sysImageListCtrl sysVideoListCtrl custImageListCtrl custVideoListCtrl
|
|
|
- }
|
|
|
-
|
|
|
+ const state = reactive({
|
|
|
+ renderImages: [] as any,
|
|
|
+ });
|
|
|
+ const ctx = useCtx();
|
|
|
function clickToDesign(url: string) {
|
|
|
editor.actions.addImageToDesign(url);
|
|
|
}
|
|
|
|
|
|
function getData() {
|
|
|
- // const ctrl = getCurrCtrl();
|
|
|
- // ctrl.hasLimit = true;
|
|
|
- // ctrl.loadPage(1);
|
|
|
+ ctx.deviceCtrl
|
|
|
+ .GetFilesInDir(ctx.prjCtrl.getOutputDir(), "\\.png$")
|
|
|
+ .then((ret: any) => {
|
|
|
+ console.log(ret);
|
|
|
+ ret &&
|
|
|
+ ret.map((e: any) => {
|
|
|
+ state.renderImages.push({
|
|
|
+ _id: nanoid(),
|
|
|
+ file: { url: e.Fpath, size: e.Size },
|
|
|
+ fileType: "image",
|
|
|
+ createTime: e.CreateAt * 1000,
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
onMounted(() => getData());
|
|
|
|
|
|
return () => {
|
|
|
// const control = getCurrCtrl();
|
|
|
- const dataSource = [] as any;
|
|
|
+ const dataSource = state.renderImages;
|
|
|
|
|
|
return (
|
|
|
<div>
|