| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- import { DICT_TYPE } from '@/utils/dict'
- // =================活动新闻=====================
- export const NewsColumns = reactive([
- {
- label: '所属机构',
- field: 'tenantName',
- type: '99'
- },
- {
- label: '文章标题',
- field: 'title'
- },
- {
- label: '发布终端',
- field: 'platform',
- dictArr: DICT_TYPE.RELEASE_TERMINAL_TYPE,
- type: '1'
- },
- {
- label: '发布日期',
- field: 'createdTime',
- format: true
- },
- {
- label: '状态',
- field: 'status',
- dictArr: DICT_TYPE.ARTICLE_TYPE,
- type: '2'
- }
- ])
- // ============活动执行====================
- export const ManagementColumns = reactive([
- {
- label: '所属机构',
- field: 'tenantName',
- type: '99'
- },
- {
- label: '活动主题',
- field: 'activityTitle',
- width: 200
- },
- {
- label: '活动类型',
- field: 'activityType',
- dictArr: DICT_TYPE.ACTIVITY_TYPE,
- type: '1'
- },
- {
- label: '活动开始时间',
- field: 'activityStartTime',
- width: 200
- },
- {
- label: '活动结束时间',
- field: 'activityEndTime',
- width: 200
- },
- {
- label: '活动主管',
- field: 'supervisorName'
- },
- {
- label: '活动地址/活动室',
- field: 'activityAddress',
- width: 180
- },
- {
- label: '已报名人数',
- field: 'number',
- width: 150
- },
- {
- label: '报名开始',
- field: 'registrationStartTime',
- width: 200
- },
- {
- label: '报名结束',
- field: 'registrationEndTime',
- width: 200
- },
- {
- label: '状态',
- field: 'status',
- dictArr: DICT_TYPE.ACTIVE_STATUS,
- type: '1'
- }
- ])
|