123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /**
- * index:序号
- * txt:正常数据
- * img:图片
- * txtChange:判断显示不同字段
- * text:文字比较多的情况
- */
- // export const A1tableCFu = (type: "video" | "poster") => {
- // return [
- // ["index", "序号"],
- // ["txt", "标题", "name"],
- // ["img", type === "video" ? "视频封面" : "海报", "thumb"],
- // ["txtChange", "自动播放", "display", { 0: "否", 1: "是" }],
- // ["txt", "创建日期", "createTime"],
- // ];
- // };
- export const A1tableC = [
- ["txt", "ID", "id"],
- // ["txt", "手机号", "phone"],
- ["txt", "昵称", "nickName"],
- ["txt", "注册日期", "createTime"],
- ["txt", "爱心币", "score"],
- ];
- export const A1tableClook = [
- ["txt", "时间", "createTime"],
- ["txt", "类型", "type"],
- ["txt", "爱心币", "score"],
- ["text", "说明", "description", 50],
- ];
- export const A2tableC1 = [
- ["txt", "行为", "name"],
- ["txt", "奖励爱心币", "score"],
- ["txt", "说明", "description"],
- ];
- export const A2tableC2 = [
- ["txt", "动植物", "name"],
- ["txt", "成熟周期(天)", "cycle"],
- ["txt", "奖励爱心币", "score"],
- ["txt", "说明", "description"],
- ];
- export const A2tableC3 = [
- ["txt", "游戏名称", "name"],
- ["txt", "时限(秒)", "cycle"],
- ["txt", "奖励爱心币", "score"],
- ["txt", "单日奖励上限", "dayLimit"],
- ["txt", "奖励说明", "description"],
- ];
- export const A3tableC = [
- ["txt", "时间", "createTime"],
- ["txt", "用户名", "creatorName"],
- ["txt", "类型", "type"],
- ["txt", "爱心币", "score"],
- ["text", "说明", "description", 50],
- ];
- export const A4tableC = [
- ["txt", "奖品名称", "name"],
- ["img", "封面", "thumb"],
- ["txt", "所需爱心币", "score"],
- ["txt", "库存", "stock"],
- ["txt", "登记日期", "recordDate"],
- ["txtChange", "状态", "isEnabled", { 0: "下架", 1: "上架" }],
- ];
- export const A5tableC = [
- ["txt", "时间", "createTime"],
- ["txt", "用户名", "creatorName"],
- ["txt", "兑换奖品", "prizeName"],
- ["txt", "爱心币记录", "score"],
- ["txt", "称呼", "name"],
- ["text", "联系方式", "phone", 50],
- ["text", "地址和留言", "description", 50],
- ];
- export const A6tableC = [
- ["txt", "时间", "createTime"],
- ["txt", "称呼", "name"],
- ["txt", "联系方式", "phone"],
- ["text", "反馈内容", "content", 50],
- ];
- export const A7tableC1 = [
- ["txt", "人物姓名", "name"],
- ["text", "人物简介", "description",50],
- ["img", "人物肖像", "thumb"],
- ["txt", "采访主题", "dictName"],
- ["txt", "排序值", "sort"],
- ];
- export const A7tableC2 = [
- ["txt", "刊物标题", "name"],
- ["img", "刊物封面", "thumb"],
- ["txt", "发布日期", "publishDate"],
- ];
- export const A7tableCtheme = [["txt", "采访主题", "name"]];
- export const Z1tableC = [
- ["txt", "用户名", "userName"],
- ["txtChange", "角色", "isAdmin", { 1: "管理员", 0: "普通成员" }],
- ["txt", "真实姓名", "realName"],
- ["txt", "创建日期", "createTime"],
- ];
- export const Z2tableC = [
- ["index", "序号"],
- ["txt", "账号", "userName"],
- ["txt", "操作日期", "createTime"],
- ["txt", "IP记录", "ip"],
- ["txt", "操作模块", "type"],
- ["txt", "操作事件", "description"],
- ];
|