You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
2.8 KiB

2 years ago
import version from "./version.js";
const stateName = {
title: "状态",
type: "string",
input: "select",
options: [
{ text: "执行完成(任务成功)", value: "Succeeded" },
{ text: "执行完成(任务失败)", value: "Failed" },
{ text: "执行中", value: "Processing" },
{ text: "等待执行", value: "Enqueued" },
],
};
2 years ago
2 years ago
const schema = {
2 years ago
title: "期间设置",
2 years ago
type: "object",
properties: {
2 years ago
type: {
title: "版本号",
2 years ago
type: "string",
},
2 years ago
taskId: {
title: "单据流水号",
2 years ago
type: "string",
},
2 years ago
email: {
title: "创建人",
2 years ago
type: "string",
2 years ago
},
2 years ago
createdAt: {
title: "创建时间",
type: "DateTime",
2 years ago
},
2 years ago
remark: {
title: "说明",
type: "string",
},
stateName,
2 years ago
},
};
2 years ago
const queryUrl = "settleaccount/Job/list";
2 years ago
const deleteUrl = "settleaccount/Job/delete";
2 years ago
const exportUrl = "settleaccount/pub_sa_detail_service/export";
const compareUrl = "settleaccount/pub_sa_detail_service/pub-sa-se-compare";
2 years ago
const queryMethod = "POST";
const deleteMethod = "POST";
2 years ago
const exportMethod = "POST";
const compareMethod = "POST";
2 years ago
export default function () {
return {
query: {
url: queryUrl,
method: queryMethod,
2 years ago
autoSubmit: true,
2 years ago
disableQueryOnLoad: true,
2 years ago
schema: {
2 years ago
title: "期间设置",
2 years ago
type: "object",
properties: {
type: Object.assign({ defaultSelected: true }, version),
2 years ago
name: {
type: "string",
default: null,
hidden: true,
},
2 years ago
stateName,
2 years ago
filters: {
type: "array",
hidden: true,
items: {
type: "object",
properties: {
logic: {
type: "int",
},
column: {
type: "string",
},
action: {
type: "int",
},
value: {
type: "string",
},
},
},
default: [
2 years ago
// {
// logic: "and",
// column: "year",
// action: "like",
// value: null,
// readOnly: true,
// },
2 years ago
],
},
skipCount: {
hidden: true,
default: 0,
},
maxResultCount: {
hidden: true,
default: 10,
},
sorting: {
hidden: true,
},
},
},
},
table: {
schema: schema,
},
edit: {
deleteUrl,
2 years ago
exportUrl,
compareUrl,
2 years ago
deleteMethod,
2 years ago
exportMethod,
compareMethod,
2 years ago
schema: schema,
},
};
}