|
@@ -13,42 +13,54 @@ import { Image, Loadmore } from "@queenjs/ui";
|
|
|
import { defineUI, queenApi } from "queenjs";
|
|
|
import Menu from "./Menu";
|
|
|
import ListFilter from "./ListFilter";
|
|
|
-import { watch } from "vue";
|
|
|
+import { onMounted, watch } from "vue";
|
|
|
|
|
|
export default defineUI({
|
|
|
props: {
|
|
|
sourceType: string<"comp" | "text" | "shape">().def("comp"),
|
|
|
+ currentIndex: number(),
|
|
|
+ contentIndex: number(),
|
|
|
},
|
|
|
setup(props) {
|
|
|
const editor = useEditor();
|
|
|
const auth = useAuth();
|
|
|
const resource = useResource();
|
|
|
|
|
|
- const listCtrl = getCtrl();
|
|
|
- listCtrl.hasLimit = true;
|
|
|
- listCtrl.loadPage(1);
|
|
|
-
|
|
|
+ function getData() {
|
|
|
+ const ctrl = getCtrl();
|
|
|
+ ctrl.hasLimit = true;
|
|
|
+ ctrl.loadPage(1);
|
|
|
+ }
|
|
|
//@ts-ignore
|
|
|
let isSys = (auth.store.userInfo.roles || []).indexOf("system") > -1;
|
|
|
-
|
|
|
+ onMounted(() => getData());
|
|
|
function getCtrl() {
|
|
|
const key = `cust${upperFirst(props.sourceType)}ListCtrl`;
|
|
|
//@ts-ignore
|
|
|
return resource.controls[key];
|
|
|
}
|
|
|
-
|
|
|
+ watch(
|
|
|
+ () => props.currentIndex,
|
|
|
+ () => {
|
|
|
+ if (props.currentIndex == props.contentIndex) {
|
|
|
+ const ctrl = getCtrl();
|
|
|
+ if (ctrl.state.list.length == 0) getData();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ );
|
|
|
const filterChange = (v: any) => {
|
|
|
- const query = listCtrl.state.query || {};
|
|
|
- listCtrl.state.query = {
|
|
|
+ const ctrl = getCtrl();
|
|
|
+ const query = ctrl.state.query || {};
|
|
|
+ ctrl.state.query = {
|
|
|
...query,
|
|
|
categories: v,
|
|
|
};
|
|
|
- listCtrl.loadPage(1);
|
|
|
+ ctrl.loadPage(1);
|
|
|
};
|
|
|
return () => {
|
|
|
const { sourceType } = props;
|
|
|
-
|
|
|
- const dataSource = listCtrl.state.list;
|
|
|
+ const ctrl = getCtrl();
|
|
|
+ const dataSource = ctrl.state.list;
|
|
|
|
|
|
return (
|
|
|
<div>
|
|
@@ -128,7 +140,7 @@ export default defineUI({
|
|
|
item,
|
|
|
title[sourceType]
|
|
|
);
|
|
|
- listCtrl.fresh();
|
|
|
+ ctrl.fresh();
|
|
|
queenApi.messageSuccess("删除成功!");
|
|
|
return;
|
|
|
}
|
|
@@ -162,9 +174,9 @@ export default defineUI({
|
|
|
) : (
|
|
|
<Loadmore
|
|
|
class="mt-20px"
|
|
|
- loading={listCtrl.state.loading}
|
|
|
- canLoad={listCtrl.state.canLoadNext}
|
|
|
- onChange={listCtrl.loadNextPage}
|
|
|
+ loading={ctrl.state.loading}
|
|
|
+ canLoad={ctrl.state.canLoadNext}
|
|
|
+ onChange={ctrl.loadNextPage}
|
|
|
/>
|
|
|
)}
|
|
|
</div>
|