mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
优化crud模块
This commit is contained in:
parent
e61870cc26
commit
dd4d25e215
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "front-next",
|
"name": "front-next",
|
||||||
"version": "0.2.1",
|
"version": "0.2.2",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
|
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
|
||||||
|
@ -410,15 +410,17 @@ export default defineComponent({
|
|||||||
async function onRefresh(params: any, { next, render }: any) {
|
async function onRefresh(params: any, { next, render }: any) {
|
||||||
const { list } = await next(params);
|
const { list } = await next(params);
|
||||||
|
|
||||||
|
render(
|
||||||
list.map((e: any) => {
|
list.map((e: any) => {
|
||||||
if (e.roleName) {
|
if (e.roleName) {
|
||||||
e.roleNameList = e.roleName.split(",");
|
e.roleNameList = e.roleName.split(",");
|
||||||
}
|
}
|
||||||
|
|
||||||
e.status = Boolean(e.status);
|
e.status = Boolean(e.status);
|
||||||
});
|
|
||||||
|
|
||||||
render(list);
|
return e;
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 提交钩子
|
// 提交钩子
|
||||||
|
@ -125,7 +125,7 @@ export function useRequest({ mitt, props, crud }: any) {
|
|||||||
type: "warning"
|
type: "warning"
|
||||||
})
|
})
|
||||||
.then((res: any) => {
|
.then((res: any) => {
|
||||||
if (res === "crudirm") {
|
if (res === "confirm") {
|
||||||
// 验证方法
|
// 验证方法
|
||||||
if (!crud.service[reqName]) {
|
if (!crud.service[reqName]) {
|
||||||
return reject(`Request function '${reqName}' is not fount`);
|
return reject(`Request function '${reqName}' is not fount`);
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
import { defineComponent, h, inject, nextTick, provide, reactive, ref, watch } from "vue";
|
import { defineComponent, h, inject, nextTick, provide, reactive, ref, watch } from "vue";
|
||||||
import cloneDeep from "clone-deep";
|
import cloneDeep from "clone-deep";
|
||||||
|
import { useAction } from "./helper";
|
||||||
import { useRefs, useForm } from "../../hooks/core";
|
import { useRefs, useForm } from "../../hooks/core";
|
||||||
import { deepMerge, isBoolean, isEmpty, isFunction, isObject, isString } from "../../utils";
|
import { deepMerge, isBoolean, isEmpty, isObject, isString } from "../../utils";
|
||||||
import Parse from "../../utils/parse";
|
import Parse from "../../utils/parse";
|
||||||
import { renderNode } from "../../utils/vnode";
|
import { renderNode } from "../../utils/vnode";
|
||||||
import { useAction } from "./helper";
|
import { Browser, Form } from "../../types";
|
||||||
import { Browser } from "../../types";
|
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "cl-form",
|
name: "cl-form",
|
||||||
@ -40,18 +40,14 @@ export default defineComponent({
|
|||||||
const form = setFormData();
|
const form = setFormData();
|
||||||
|
|
||||||
// 表单配置
|
// 表单配置
|
||||||
const conf = reactive<any>({
|
const conf = reactive<Form>({
|
||||||
title: "自定义表单",
|
title: "自定义表单",
|
||||||
width: "50%",
|
width: "50%",
|
||||||
props: {
|
props: {
|
||||||
size: "small",
|
size: "small",
|
||||||
labelWidth: "100px"
|
labelWidth: "100px"
|
||||||
},
|
},
|
||||||
on: {
|
on: {},
|
||||||
open: null,
|
|
||||||
submit: null,
|
|
||||||
close: null
|
|
||||||
},
|
|
||||||
op: {
|
op: {
|
||||||
hidden: false,
|
hidden: false,
|
||||||
saveButtonText: "保存",
|
saveButtonText: "保存",
|
||||||
@ -111,7 +107,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
// 表单关闭前事件
|
// 表单关闭前事件
|
||||||
function beforeClose() {
|
function beforeClose() {
|
||||||
if (conf.on.close) {
|
if (conf.on?.close) {
|
||||||
conf.on.close(close);
|
conf.on.close(close);
|
||||||
} else {
|
} else {
|
||||||
close();
|
close();
|
||||||
@ -135,7 +131,8 @@ export default defineComponent({
|
|||||||
saving.value = true;
|
saving.value = true;
|
||||||
|
|
||||||
// 表单提交钩子
|
// 表单提交钩子
|
||||||
if (isFunction(conf.on.submit)) {
|
if (conf.on?.submit) {
|
||||||
|
// 拷贝表单值
|
||||||
const d = cloneDeep(form);
|
const d = cloneDeep(form);
|
||||||
|
|
||||||
// 过滤隐藏的表单项
|
// 过滤隐藏的表单项
|
||||||
@ -157,14 +154,16 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 打开表单
|
// 打开表单
|
||||||
function open(options?: any) {
|
function open(options?: Form) {
|
||||||
if (!options) {
|
if (!options) {
|
||||||
options = {};
|
options = {
|
||||||
|
items: []
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
clear();
|
clear();
|
||||||
|
|
||||||
// Merge conf
|
// 合并配置
|
||||||
for (const i in conf) {
|
for (const i in conf) {
|
||||||
switch (i) {
|
switch (i) {
|
||||||
case "items":
|
case "items":
|
||||||
@ -187,7 +186,7 @@ export default defineComponent({
|
|||||||
visible.value = true;
|
visible.value = true;
|
||||||
|
|
||||||
// 预设表单值
|
// 预设表单值
|
||||||
if (options.form) {
|
if (options?.form) {
|
||||||
for (const i in options.form) {
|
for (const i in options.form) {
|
||||||
form[i] = options.form[i];
|
form[i] = options.form[i];
|
||||||
}
|
}
|
||||||
@ -201,15 +200,15 @@ export default defineComponent({
|
|||||||
});
|
});
|
||||||
|
|
||||||
// 打开回调
|
// 打开回调
|
||||||
if (conf.on.open) {
|
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
|
if (conf.on?.open) {
|
||||||
conf.on.open(form, {
|
conf.on.open(form, {
|
||||||
close,
|
close,
|
||||||
submit,
|
submit,
|
||||||
done
|
done
|
||||||
});
|
});
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
showLoading,
|
showLoading,
|
||||||
|
@ -1,17 +1,18 @@
|
|||||||
import { defineComponent, h, inject, nextTick, onMounted, ref } from "vue";
|
import { defineComponent, h, inject, nextTick, onMounted, ref } from "vue";
|
||||||
|
import type { PropType } from "vue";
|
||||||
import ContextMenu from "../context-menu/index";
|
import ContextMenu from "../context-menu/index";
|
||||||
import { useElTableApi } from "./helper";
|
import { useElTableApi } from "./helper";
|
||||||
import { cloneDeep, isArray, isEmpty, isFunction, isNull } from "../../utils";
|
import { cloneDeep, isArray, isEmpty, isFunction, isNull, isBoolean } from "../../utils";
|
||||||
import { renderNode } from "../../utils/vnode";
|
import { renderNode } from "../../utils/vnode";
|
||||||
import { useRefs } from "../../hooks/core";
|
import { useRefs } from "../../hooks/core";
|
||||||
import { Crud, Mitt, Browser } from "../../types";
|
import { Crud, Mitt, Browser, TableColumn } from "../../types";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "cl-table",
|
name: "cl-table",
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
columns: {
|
columns: {
|
||||||
type: Array,
|
type: Array as PropType<TableColumn[]>,
|
||||||
required: true,
|
required: true,
|
||||||
default: () => []
|
default: () => []
|
||||||
},
|
},
|
||||||
@ -62,6 +63,9 @@ export default defineComponent({
|
|||||||
sort
|
sort
|
||||||
} = useElTableApi({ refs });
|
} = useElTableApi({ refs });
|
||||||
|
|
||||||
|
// 是否可见,用于解决一些显示隐藏的副作用
|
||||||
|
const visible = ref<boolean>(true);
|
||||||
|
|
||||||
// 列表数据
|
// 列表数据
|
||||||
const data = ref<Array<any>>([]);
|
const data = ref<Array<any>>([]);
|
||||||
|
|
||||||
@ -246,8 +250,29 @@ export default defineComponent({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 显示列
|
||||||
|
function showColumn(prop: string | string[], status?: boolean) {
|
||||||
|
const keys = isArray(prop) ? prop : [prop];
|
||||||
|
visible.value = false;
|
||||||
|
|
||||||
|
props.columns
|
||||||
|
.filter((e) => (e.prop ? keys.includes(e.prop) : false))
|
||||||
|
.forEach((e) => {
|
||||||
|
e.hidden = isBoolean(status) ? status : false;
|
||||||
|
});
|
||||||
|
|
||||||
|
nextTick(() => {
|
||||||
|
visible.value = true;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 隐藏列
|
||||||
|
function hiddenColumn(prop: string | string[]) {
|
||||||
|
showColumn(prop, true);
|
||||||
|
}
|
||||||
|
|
||||||
// 监听事件
|
// 监听事件
|
||||||
(function mittEvent() {
|
(function () {
|
||||||
// 刷新事件
|
// 刷新事件
|
||||||
mitt.on("crud.refresh", ({ list }: any) => {
|
mitt.on("crud.refresh", ({ list }: any) => {
|
||||||
data.value = list;
|
data.value = list;
|
||||||
@ -260,7 +285,7 @@ export default defineComponent({
|
|||||||
})();
|
})();
|
||||||
|
|
||||||
// 设置请求参数
|
// 设置请求参数
|
||||||
(function setParams() {
|
(function () {
|
||||||
const { order, prop } = props.props["default-sort"] || {};
|
const { order, prop } = props.props["default-sort"] || {};
|
||||||
|
|
||||||
if (order && prop) {
|
if (order && prop) {
|
||||||
@ -275,9 +300,12 @@ export default defineComponent({
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
refs,
|
refs,
|
||||||
|
visible,
|
||||||
data,
|
data,
|
||||||
maxHeight,
|
maxHeight,
|
||||||
setRefs,
|
setRefs,
|
||||||
|
showColumn,
|
||||||
|
hiddenColumn,
|
||||||
onSelectionChange,
|
onSelectionChange,
|
||||||
onSortChange,
|
onSortChange,
|
||||||
onRowContextMenu,
|
onRowContextMenu,
|
||||||
@ -480,7 +508,8 @@ export default defineComponent({
|
|||||||
data={ctx.data}></el-table>
|
data={ctx.data}></el-table>
|
||||||
);
|
);
|
||||||
|
|
||||||
return h(
|
return ctx.visible
|
||||||
|
? h(
|
||||||
ElTable,
|
ElTable,
|
||||||
{
|
{
|
||||||
onSortChange: ctx.onSortChange,
|
onSortChange: ctx.onSortChange,
|
||||||
@ -495,7 +524,9 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
empty() {
|
empty() {
|
||||||
return (
|
return (
|
||||||
<div class="cl-table__empty">{ctx.$slots.empty && ctx.$slots.empty()}</div>
|
<div class="cl-table__empty">
|
||||||
|
{ctx.$slots.empty && ctx.$slots.empty()}
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
append() {
|
append() {
|
||||||
@ -506,6 +537,7 @@ export default defineComponent({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
)
|
||||||
|
: null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
import { ElMessage } from "element-plus";
|
import { ElMessage } from "element-plus";
|
||||||
import { defineComponent, h, inject, ref } from "vue";
|
import { defineComponent, h, inject, ref } from "vue";
|
||||||
|
import type { PropType } from "vue";
|
||||||
import { useFormApi } from "./helper";
|
import { useFormApi } from "./helper";
|
||||||
import { useForm, useRefs } from "../../hooks/core";
|
import { useForm, useRefs } from "../../hooks/core";
|
||||||
import { Crud } from "../../types";
|
import { Crud, UpsertItem } from "../../types";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "cl-upsert",
|
name: "cl-upsert",
|
||||||
@ -17,7 +18,7 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
// 表单项
|
// 表单项
|
||||||
items: {
|
items: {
|
||||||
type: Array,
|
type: Array as PropType<UpsertItem[]>,
|
||||||
default: () => []
|
default: () => []
|
||||||
},
|
},
|
||||||
// el-form 参数
|
// el-form 参数
|
||||||
@ -258,7 +259,7 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 消息事件
|
// 消息事件
|
||||||
(function mittEvent() {
|
(function () {
|
||||||
mitt.on("crud.add", add);
|
mitt.on("crud.add", add);
|
||||||
mitt.on("crud.append", append);
|
mitt.on("crud.append", append);
|
||||||
mitt.on("crud.edit", edit);
|
mitt.on("crud.edit", edit);
|
||||||
|
@ -58,6 +58,10 @@
|
|||||||
|
|
||||||
&__select {
|
&__select {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
|
||||||
|
.el-input__inner {
|
||||||
|
width: 120px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__input {
|
&__input {
|
||||||
|
12
src/cool/modules/crud/types/form.d.ts
vendored
12
src/cool/modules/crud/types/form.d.ts
vendored
@ -27,12 +27,20 @@ export interface Form {
|
|||||||
title?: string;
|
title?: string;
|
||||||
width?: string;
|
width?: string;
|
||||||
props?: any;
|
props?: any;
|
||||||
items?: Array<FormItem>;
|
items: Array<FormItem>;
|
||||||
|
form?: any;
|
||||||
on?: {
|
on?: {
|
||||||
open?(form: any, { close, submit, done }: any): void;
|
open?(form: any, { close, submit, done }: any): void;
|
||||||
close?(): void;
|
close?(done: Function): void;
|
||||||
submit?(data: any, { done, close }: any): void;
|
submit?(data: any, { done, close }: any): void;
|
||||||
};
|
};
|
||||||
|
op?: any;
|
||||||
|
dialog?: {
|
||||||
|
props?: any;
|
||||||
|
hiddenControls: boolean;
|
||||||
|
controls: Array<"fullscreen" | "close">;
|
||||||
|
};
|
||||||
|
_data?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FormRef {
|
export interface FormRef {
|
||||||
|
2
src/cool/modules/crud/types/table.d.ts
vendored
2
src/cool/modules/crud/types/table.d.ts
vendored
@ -16,7 +16,9 @@ export interface TableOptions {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface TableColumn {
|
export interface TableColumn {
|
||||||
|
value?: any;
|
||||||
type?: "index" | "selection" | "expand" | "op";
|
type?: "index" | "selection" | "expand" | "op";
|
||||||
|
hidden?: boolean | (({ scope }: any) => boolean);
|
||||||
component?: RenderOptions;
|
component?: RenderOptions;
|
||||||
dict?: Array<{
|
dict?: Array<{
|
||||||
label: string;
|
label: string;
|
||||||
|
@ -1,15 +1,18 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="demo-table">
|
<div class="demo-table">
|
||||||
<cl-table :columns="columns" />
|
<cl-table :ref="setRefs('table')" :columns="columns" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { TableColumn } from "/$/crud/types";
|
import { TableColumn } from "/$/crud/types";
|
||||||
import { defineComponent, ref } from "vue";
|
import { defineComponent, onMounted, ref } from "vue";
|
||||||
|
import { useRefs } from "/@/core";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
setup() {
|
setup() {
|
||||||
|
const { refs, setRefs } = useRefs();
|
||||||
|
|
||||||
const columns = ref<TableColumn[]>([
|
const columns = ref<TableColumn[]>([
|
||||||
{
|
{
|
||||||
type: "selection",
|
type: "selection",
|
||||||
@ -54,7 +57,21 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
onMounted(function () {
|
||||||
|
setTimeout(() => {
|
||||||
|
console.log("隐藏昵称");
|
||||||
|
refs.value.table.hiddenColumn("name");
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
console.log("显示昵称");
|
||||||
|
refs.value.table.showColumn("name");
|
||||||
|
}, 1000);
|
||||||
|
}, 1000);
|
||||||
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
refs,
|
||||||
|
setRefs,
|
||||||
columns
|
columns
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
import { defineComponent, ref } from "vue";
|
import { defineComponent, ref } from "vue";
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
|
name: "crud-test",
|
||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
const value = ref<string>("Value:" + Math.random());
|
const value = ref<string>("Value:" + Math.random());
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user