/** * 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', 'openId', 'openId'], ['txt', '姓名', 'nickName'], ['txt', '联系方式', 'phone'], ['text', '单位名称', 'unit', 50], ['txtChange', '团体认证', 'isAuth', { 0: '未认证', 1: '已认证' }], // [ // 'txtChange', // '认证单位', // 'authType', // { neighbour: '澳门街坊会联合总会广东办事处', live: '横琴粤澳深度合作区民生事务局' } // ], ['txt', '注册时间', 'createTime'] ] export const A3tableC = [ ['txt', '课程类别', 'dictTypeName'], ['txt', '课程名称', 'name'], ['txt', '排序值', 'sort'] ] export const A3tableCtype = [ ['txt', '课程类别名称', 'name'], ['txt', '排序值', 'sort'] ] export const A4tableC = [ ['txt', '负责人姓名', 'name'], ['txt', '联系方式', 'phone'], ['txt', '单位名称', 'unit'], [ 'txtChange', '审核状态', 'status', { 0: '待审核 ', 1: '审核通过', 2: '已拒绝', 3: '已失效' } ], ['txt', '申请时间', 'createTime'] ] export const A61tableC = [ ['txt', '邀请码', 'code'], ['txt', '邀请对象', 'invitationName'], ['txtChange', '使用状态', 'status', { 0: '未使用 ', 1: '已使用' }], ['txt', '认证用户openId', 'openId'], ['txt', '姓名', 'name'], ['txt', '联系方式', 'phone'], ['txt', '单位名称', 'unit'] ] export const A6tableC = [ ['txt', '预约日期', 'bookDate'], [ 'txt', '预约时段', 'bookTime' // { am: '上午', pm: '下午', 2: '已拒绝', 3: '已失效' } ], ['txt', '预约课程', 'subjectName'], ['txt', ' 负责人姓名', 'name'], ['txt', ' 联系方式', 'phone'], ['txt', ' 证件号码', 'myIdNum'], ['txt', ' 来自地区', 'cityStr'], ['txt', ' 参团学生人数', 'pcsStudent'], ['txt', ' 随堂老师人数', 'pcsTeacher'], ['txt', ' 所属机构', 'unit'], ['text', '团体描述', 'remark', 50], [ 'txtChange', '审核状态', 'status', { 0: '待审核', 1: '审核通过', 2: '已拒绝', 3: '已失效' } ], ['txt', '申请时间', 'createTime'] ] export const B1tableC = [ ['txt', '时段', 'time'], ['txt', '周一', 'monday'], ['txt', '周二', 'tuesday'], ['txt', '周三', 'wednesday'], ['txt', '周四', 'thursday'], ['txt', '周五', 'friday'], ['txt', '周六', 'saturday'], ['txt', '周日', 'sunday'] ] export const B2tableC = [ ['txt', '申请时间', 'createTime'], ['txtChange', '预约类型', 'type', { person: '个人预约', team: '团队预约' }], ['txt', '姓名', 'name'], ['txt', '联系方式', 'phone'], ['txt', '人数', 'pcs'], ['txt', ' 来自地区', 'cityStr'], ['txt', '预约日期', 'bookDate'], ['txt', '预约时段', 'time'] // ['txtChange', '核销状态', 'status', { 0: '未核销', 1: '已核销' }] ] export const Z1tableC = [ ['txt', '用户名', 'userName'], ['txtChange', '角色', 'isAdmin', { 1: '管理员', 0: '普通成员' }], ['txt', '真实姓名', 'realName'], ['txt', '手机号', 'phone'], ['txt', '创建日期', 'createTime'] ] export const Z2tableC = [ ['index', '序号'], ['txt', '账号', 'userName'], ['txt', '操作日期', 'createTime'], ['txt', 'IP记录', 'ip'], ['txt', '操作模块', 'type'], ['txt', '操作事件', 'description'] ]