mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
优化
This commit is contained in:
parent
d925fc30cc
commit
78af4e3d3b
@ -26,7 +26,7 @@ export default defineComponent({
|
|||||||
maxExportLimit: Number // 最大导出条数,不传或者小于等于0为不限制
|
maxExportLimit: Number // 最大导出条数,不传或者小于等于0为不限制
|
||||||
},
|
},
|
||||||
|
|
||||||
setup(props) {
|
setup(props, { slots }) {
|
||||||
// 加载状态
|
// 加载状态
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
|
|
||||||
@ -40,18 +40,20 @@ export default defineComponent({
|
|||||||
|
|
||||||
// 获取表格数据
|
// 获取表格数据
|
||||||
function getData() {
|
function getData() {
|
||||||
|
const params = {
|
||||||
|
...Crud.value?.paramsReplace(Crud.value.params),
|
||||||
|
maxExportLimit: props.maxExportLimit,
|
||||||
|
isExport: true
|
||||||
|
};
|
||||||
|
|
||||||
if (typeof props.data === "function") {
|
if (typeof props.data === "function") {
|
||||||
return props.data();
|
return props.data(params);
|
||||||
} else {
|
} else {
|
||||||
if (props.data) {
|
if (props.data) {
|
||||||
return props.data;
|
return props.data;
|
||||||
} else {
|
} else {
|
||||||
return Crud.value?.service
|
return Crud.value?.service
|
||||||
.page({
|
.page(params)
|
||||||
...Crud.value?.paramsReplace(Crud.value.params),
|
|
||||||
maxExportLimit: props.maxExportLimit,
|
|
||||||
isExport: true
|
|
||||||
})
|
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
return res.list.map((e) => {
|
return res.list.map((e) => {
|
||||||
for (const i in e) {
|
for (const i in e) {
|
||||||
@ -106,7 +108,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
// 表格列
|
// 表格列
|
||||||
const columns = props.columns.filter(
|
const columns = props.columns.filter(
|
||||||
(e: any) =>
|
(e) =>
|
||||||
!(
|
!(
|
||||||
e.hidden === true ||
|
e.hidden === true ||
|
||||||
["selection", "expand", "index"].includes(e.type) ||
|
["selection", "expand", "index"].includes(e.type) ||
|
||||||
@ -116,7 +118,7 @@ export default defineComponent({
|
|||||||
);
|
);
|
||||||
|
|
||||||
// 字段
|
// 字段
|
||||||
const fields = columns.map((e: any) => e.prop).filter(Boolean);
|
const fields = columns.map((e) => e.prop).filter(Boolean);
|
||||||
|
|
||||||
// 表头
|
// 表头
|
||||||
const header = await getHeader(columns, fields);
|
const header = await getHeader(columns, fields);
|
||||||
@ -150,7 +152,7 @@ export default defineComponent({
|
|||||||
return () => {
|
return () => {
|
||||||
return (
|
return (
|
||||||
<el-button loading={loading.value} onClick={toExport}>
|
<el-button loading={loading.value} onClick={toExport}>
|
||||||
<slot>导出</slot>
|
{slots.default ? slots.default() : "导出"}
|
||||||
</el-button>
|
</el-button>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user