123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /**
- * index:序号
- * txt:正常数据
- * img:图片
- * txtChange:判断显示不同字段
- * text:文字比较多的情况、获取使用其他标签(没有的需要自己配置)
- */
- // export const A1tableCFu = (type: "video" | "poster") => {
- // return [
- // ["index", "序号"],
- // ["txt", "标题", "name"]
- // ["img", type === "video" ? "视频封面" : "海报", "thumb"],
- // ["txtChange", "自动播放", "display", { 0: "否", 1: "是" }],
- // ["text", "创建日期",'description', 50,A],
- // ];
- export const A1tableC = [
- ['txt', '轮播图标题', 'title', 'titleB'],
- ['img', '轮播图封面', 'imgTh', 'imgThB'],
- ['txt', '链接', 'url', 'urlB'],
- ['txt', '发布日期', 'publish', 'publishB'],
- ['txtChange', '状态', 'status', { 0: '预发布', 1: '发布' }],
- ['sort', '排序', 'sort']
- ]
- export const A4tableC = [
- ['txt', '标题', 'title', 'titleB'],
- ['img', '封面', 'indexImgTh', 'indexImgThB'],
- ['txt', '摘要', 'remark', 'remarkB'],
- ['txt', '发布日期', 'publish', 'publishB'],
- ['txtChange', '状态', 'status', { 0: '预发布', 1: '发布' }]
- ]
- export const A6tableC = [
- ['txt', '展览标题', 'title', 'titleB'],
- ['txtChange', '展览类型', 'type', { 1: '室内展览', 2: '室外展览' }],
- ['img', '展览封面', 'imgTh', 'imgThB'],
- ['txt', '摘要', 'remark', 'remarkB'],
- ['txt', '发布日期', 'publish', 'publishB'],
- ['txtChange', '状态', 'status', { 0: '预发布', 1: '发布' }]
- ]
- export const A7tableC = [
- ['txt', '标题', 'title', 'titleB'],
- ['txtChange', '类别', 'type', { 1: '平面纸质类', 2: '棉麻丝绸类', 3: '专业器物类' }],
- ['txt', '级别', 'level', 'levelB'],
- ['txt', '质地', 'texture', 'textureB'],
- ['txt', '年代', 'era', 'eraB'],
- ['img', '封面', 'imgTh', 'imgThB'],
- ['txt', '简介', 'remark', 'remarkB'],
- ['txt', '发布日期', 'publish', 'publishB'],
- ['txtChange', '状态', 'status', { 0: '预发布', 1: '发布' }]
- ]
- export const B1tableC = [
- ['txtNormal', '申请时间', 'createTime'],
- ['txtNormal', '姓名', 'userName'],
- ['txtNormal', '联系电话', 'phone'],
- ['txtNormal', '人数', 'pcs'],
- ['txtNormal', '预约日期', 'appointmentTime'],
- ['txtNormal', '预约时段', 'time']
- ]
- export const B2tableC = [
- ['txtNormal', '申请时间', 'createTime'],
- ['txtNormal', '姓名', 'userName'],
- ['txtNormal', '活动名称', 'activityTitle'],
- ['txtNormal', '联系电话', 'phone'],
- ['txtNormal', '身份证', 'idCard'],
- ['txtNormal', '预约日期', 'appointmentTime']
- ]
- export const C1tableC = [
- ['txt', '时段', 'time'],
- ['txt', '周一', 'monday'],
- ['txt', '周二', 'tuesday'],
- ['txt', '周三', 'wednesday'],
- ['txt', '周四', 'thursday'],
- ['txt', '周五', 'friday'],
- ['txt', '周六', 'saturday'],
- ['txt', '周日', 'sunday']
- ]
- export const D1tableC = [
- ['txt', '提交时间', 'createTime'],
- ['txt', '姓名', 'name'],
- ['txt', '邮箱', 'email'],
- ['txt', '标题', 'title'],
- ['txt', '内容', 'content']
- ]
- export const Z1tableC = [
- ['txt', '用户名', 'userName'],
- ['txt', '角色', 'roleNames'],
- ['txt', '创建日期', 'createTime']
- ]
- export const Z2tableC = [
- ['index', '序号'],
- ['txt', '账号', 'userName'],
- ['txt', '操作日期', 'createTime'],
- ['txt', 'IP记录', 'ip'],
- ['txt', '操作模块', 'type'],
- ['txt', '操作事件', 'description']
- ]
|