feat: 商品规格模块

This commit is contained in:
duan
2025-02-17 14:49:25 +08:00
parent da0888d87d
commit 964616fc41
18 changed files with 923 additions and 7 deletions

View File

@@ -0,0 +1,58 @@
import UserAPI from "@/api/product/commonUnits";
import RoleAPI from "@/api/system/role";
import type { UserPageQuery } from "@/api/system/user";
import type { IContentConfig } from "@/components/CURD/types";
const contentConfig: IContentConfig<UserPageQuery> = {
pageName: "sys:user",
table: {
border: true,
highlightCurrentRow: true,
},
pagination: {
background: true,
layout: "prev,pager,next,jumper,total,sizes",
pageSize: 20,
pageSizes: [10, 20, 30, 50],
},
indexActionData: { name: "", orderBy: "name asc" },
indexAction: function (params) {
return UserAPI.getPage(params);
},
deleteAction: UserAPI.deleteByIds,
// importAction(file) {
// return UserAPI.import(1, file);
// },
// exportAction: UserAPI.export,
// importTemplate: UserAPI.downloadTemplate,
importsAction(data) {
// 模拟导入数据
console.log("importsAction", data);
return Promise.resolve();
},
exportsAction: async function (params) {
// 模拟获取到的是全量数据
const res = await UserAPI.getPage(params);
console.log("exportsAction", res.list);
return res.list;
},
pk: "id",
toolbar: [
"add",
],
cols: [
// { type: "selection", width: 50, align: "center" },
{ label: "单位名称", align: "center", prop: "name" },
{ label: "排序", align: "center", prop: "id" },
{
label: "操作",
align: "center",
fixed: "right",
width: 280,
templet: "tool",
operat: ["edit", "delete"],
},
],
};
export default contentConfig;