|
@@ -0,0 +1,580 @@
|
|
|
+import {BasicColumn} from '/@/components/Table';
|
|
|
+import {FormSchema} from '/@/components/Table';
|
|
|
+import { rules} from '/@/utils/helper/validator';
|
|
|
+import { render } from '/@/utils/common/renderUtils';
|
|
|
+import {JVxeTypes,JVxeColumn} from '/@/components/jeecg/JVxeTable/types'
|
|
|
+import { getWeekMonthQuarterYear } from '/@/utils';
|
|
|
+//列表数据
|
|
|
+export const columns: BasicColumn[] = [
|
|
|
+ {
|
|
|
+ title: '提交(submit)',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'submit_dictText'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '单据日期',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'billDate',
|
|
|
+ customRender:({text}) =>{
|
|
|
+ text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text);
|
|
|
+ return text;
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '项目主管',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'projectManager'
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ title: '项目名称',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'projectName'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '其他项目',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'otherProject'
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ title: '客户名称',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'customerName'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '地点(address)',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'address'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '排班日期(scheduling date)',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'schedulingDateBegin',
|
|
|
+ customRender:({text}) =>{
|
|
|
+ text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text);
|
|
|
+ return text;
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '排班人员(scheduling man)',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'schedulingMan'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '运维日志(maintenance log)',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'maintenanceLog'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '附件(attsch)',
|
|
|
+ align:"center",
|
|
|
+ dataIndex: 'attsch',
|
|
|
+ },
|
|
|
+];
|
|
|
+
|
|
|
+//子表表格配置
|
|
|
+export const afterServiceLogsDetailsColumns: JVxeColumn[] = [
|
|
|
+ {
|
|
|
+ title: '运维日期(scheduling date)',
|
|
|
+ key: 'schedulingDate',
|
|
|
+ type: JVxeTypes.date,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '备注(notes)',
|
|
|
+ key: 'notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '7-8点工作内容',
|
|
|
+ key: 'time78Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '7-8点工作重要程度',
|
|
|
+ key: 'time78Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '7-8点工作备注',
|
|
|
+ key: 'time78Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '8-9点工作内容',
|
|
|
+ key: 'time89Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '8-9点工作重要程度',
|
|
|
+ key: 'time89Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '8-9点工作备注',
|
|
|
+ key: 'time89Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '9-10点工作内容',
|
|
|
+ key: 'time910Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '9-10点工作重要程度',
|
|
|
+ key: 'time910Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '9-10点工作备注',
|
|
|
+ key: 'time910Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '10-11点工作内容',
|
|
|
+ key: 'time1011Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '10-11点工作重要程度',
|
|
|
+ key: 'time1011Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '10-11点工作备注',
|
|
|
+ key: 'time1011Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '11-12点工作内容',
|
|
|
+ key: 'time1112Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '11-12点工作重要程度',
|
|
|
+ key: 'time1112Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '11-12点工作备注',
|
|
|
+ key: 'time1112Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '12-13点工作内容',
|
|
|
+ key: 'time1213Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '12-13点工作重要程度',
|
|
|
+ key: 'time1213Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '12-13点工作备注',
|
|
|
+ key: 'time1213Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '13-14点工作内容',
|
|
|
+ key: 'time1314Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '13-14点工作重要程度',
|
|
|
+ key: 'time1314Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '13-14点工作备注',
|
|
|
+ key: 'time1314Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '14-15点工作内容',
|
|
|
+ key: 'time1415Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '14-15点工作重要程度',
|
|
|
+ key: 'time1415Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '14-15点工作备注',
|
|
|
+ key: 'time1415Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '15-16点工作内容',
|
|
|
+ key: 'time1516Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '15-16点工作重要程度',
|
|
|
+ key: 'time1516Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '15-16点工作备注',
|
|
|
+ key: 'time1516Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '16-17点工作内容',
|
|
|
+ key: 'time1617Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '16-17点工作重要程度',
|
|
|
+ key: 'time1617Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '16-17点工作备注',
|
|
|
+ key: 'time1617Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '17-18点工作内容',
|
|
|
+ key: 'time1718Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '17-18点工作重要程度',
|
|
|
+ key: 'time1718Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '17-18点工作备注',
|
|
|
+ key: 'time1718Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '18-19点工作内容',
|
|
|
+ key: 'time1819Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '18-19点工作重要程度',
|
|
|
+ key: 'time1819Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '18-19点工作备注',
|
|
|
+ key: 'time1819Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '19-20点工作内容',
|
|
|
+ key: 'time1920Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '19-20点工作重要程度',
|
|
|
+ key: 'time1920Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '19-20点工作备注',
|
|
|
+ key: 'time1920Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '20-21点工作内容',
|
|
|
+ key: 'time2021Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '20-21点工作重要程度',
|
|
|
+ key: 'time2021Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '20-21点工作备注',
|
|
|
+ key: 'time2021Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '21-22点工作内容',
|
|
|
+ key: 'time2122Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '21-22点工作重要程度',
|
|
|
+ key: 'time2122Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '21-22点工作备注',
|
|
|
+ key: 'time2122Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '22-23点工作内容',
|
|
|
+ key: 'time2223Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '22-23点工作重要程度',
|
|
|
+ key: 'time2223Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '22-23点工作备注',
|
|
|
+ key: 'time2223Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '23-24点工作内容',
|
|
|
+ key: 'time2324Work',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '23-24点工作重要程度',
|
|
|
+ key: 'time2324Degree',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '23-24点工作备注',
|
|
|
+ key: 'time2324Notes',
|
|
|
+ type: JVxeTypes.input,
|
|
|
+ width:"200px",
|
|
|
+ placeholder: '请输入${title}',
|
|
|
+ defaultValue:'',
|
|
|
+ },
|
|
|
+ ]
|
|
|
+
|
|
|
+// 高级查询数据
|
|
|
+export const superQuerySchema = {
|
|
|
+ submit: {title: '提交(submit)1是0否',order: 0,view: 'number', type: 'number',},
|
|
|
+ billDate: {title: '单据日期',order: 1,view: 'date', type: 'string',},
|
|
|
+ projectManager: {title: '项目主管',order: 2,view: 'text', type: 'string',},
|
|
|
+ project: {title: '项目',order: 3,view: 'text', type: 'string',},
|
|
|
+ projectName: {title: '项目名称',order: 4,view: 'text', type: 'string',},
|
|
|
+ otherProject: {title: '其他项目',order: 5,view: 'text', type: 'string',},
|
|
|
+ customer: {title: '客户',order: 6,view: 'text', type: 'string',},
|
|
|
+ customerName: {title: '客户名称',order: 7,view: 'text', type: 'string',},
|
|
|
+ address: {title: '地点(address)',order: 8,view: 'text', type: 'string',},
|
|
|
+ schedulingDateBegin: {title: '排班日期(scheduling date)开始',order: 9,view: 'date', type: 'string',},
|
|
|
+ schedulingDateEnd: {title: '排班日期(scheduling date)结束',order: 10,view: 'date', type: 'string',},
|
|
|
+ schedulingMan: {title: '排班人员(scheduling man)',order: 11,view: 'text', type: 'string',},
|
|
|
+ maintenanceLog: {title: '运维日志(maintenance log)',order: 12,view: 'text', type: 'string',},
|
|
|
+ attsch: {title: '附件(attsch)',order: 13,view: 'file', type: 'string',},
|
|
|
+ //子表高级查询
|
|
|
+ afterServiceLogsDetails: {
|
|
|
+ title: '运维日志-明细',
|
|
|
+ view: 'table',
|
|
|
+ fields: {
|
|
|
+ schedulingDate: {title: '运维日期(scheduling date)',order: 0,view: 'date', type: 'string',},
|
|
|
+ notes: {title: '备注(notes)',order: 1,view: 'text', type: 'string',},
|
|
|
+ time78Work: {title: '7-8点工作内容',order: 2,view: 'text', type: 'string',},
|
|
|
+ time78Degree: {title: '7-8点工作重要程度',order: 3,view: 'text', type: 'string',},
|
|
|
+ time78Notes: {title: '7-8点工作备注',order: 4,view: 'text', type: 'string',},
|
|
|
+ time89Work: {title: '8-9点工作内容',order: 5,view: 'text', type: 'string',},
|
|
|
+ time89Degree: {title: '8-9点工作重要程度',order: 6,view: 'text', type: 'string',},
|
|
|
+ time89Notes: {title: '8-9点工作备注',order: 7,view: 'text', type: 'string',},
|
|
|
+ time910Work: {title: '9-10点工作内容',order: 8,view: 'text', type: 'string',},
|
|
|
+ time910Degree: {title: '9-10点工作重要程度',order: 9,view: 'text', type: 'string',},
|
|
|
+ time910Notes: {title: '9-10点工作备注',order: 10,view: 'text', type: 'string',},
|
|
|
+ time1011Work: {title: '10-11点工作内容',order: 11,view: 'text', type: 'string',},
|
|
|
+ time1011Degree: {title: '10-11点工作重要程度',order: 12,view: 'text', type: 'string',},
|
|
|
+ time1011Notes: {title: '10-11点工作备注',order: 13,view: 'text', type: 'string',},
|
|
|
+ time1112Work: {title: '11-12点工作内容',order: 14,view: 'text', type: 'string',},
|
|
|
+ time1112Degree: {title: '11-12点工作重要程度',order: 15,view: 'text', type: 'string',},
|
|
|
+ time1112Notes: {title: '11-12点工作备注',order: 16,view: 'text', type: 'string',},
|
|
|
+ time1213Work: {title: '12-13点工作内容',order: 17,view: 'text', type: 'string',},
|
|
|
+ time1213Degree: {title: '12-13点工作重要程度',order: 18,view: 'text', type: 'string',},
|
|
|
+ time1213Notes: {title: '12-13点工作备注',order: 19,view: 'text', type: 'string',},
|
|
|
+ time1314Work: {title: '13-14点工作内容',order: 20,view: 'text', type: 'string',},
|
|
|
+ time1314Degree: {title: '13-14点工作重要程度',order: 21,view: 'text', type: 'string',},
|
|
|
+ time1314Notes: {title: '13-14点工作备注',order: 22,view: 'text', type: 'string',},
|
|
|
+ time1415Work: {title: '14-15点工作内容',order: 23,view: 'text', type: 'string',},
|
|
|
+ time1415Degree: {title: '14-15点工作重要程度',order: 24,view: 'text', type: 'string',},
|
|
|
+ time1415Notes: {title: '14-15点工作备注',order: 25,view: 'text', type: 'string',},
|
|
|
+ time1516Work: {title: '15-16点工作内容',order: 26,view: 'text', type: 'string',},
|
|
|
+ time1516Degree: {title: '15-16点工作重要程度',order: 27,view: 'text', type: 'string',},
|
|
|
+ time1516Notes: {title: '15-16点工作备注',order: 28,view: 'text', type: 'string',},
|
|
|
+ time1617Work: {title: '16-17点工作内容',order: 29,view: 'text', type: 'string',},
|
|
|
+ time1617Degree: {title: '16-17点工作重要程度',order: 30,view: 'text', type: 'string',},
|
|
|
+ time1617Notes: {title: '16-17点工作备注',order: 31,view: 'text', type: 'string',},
|
|
|
+ time1718Work: {title: '17-18点工作内容',order: 32,view: 'text', type: 'string',},
|
|
|
+ time1718Degree: {title: '17-18点工作重要程度',order: 33,view: 'text', type: 'string',},
|
|
|
+ time1718Notes: {title: '17-18点工作备注',order: 34,view: 'text', type: 'string',},
|
|
|
+ time1819Work: {title: '18-19点工作内容',order: 35,view: 'text', type: 'string',},
|
|
|
+ time1819Degree: {title: '18-19点工作重要程度',order: 36,view: 'text', type: 'string',},
|
|
|
+ time1819Notes: {title: '18-19点工作备注',order: 37,view: 'text', type: 'string',},
|
|
|
+ time1920Work: {title: '19-20点工作内容',order: 38,view: 'text', type: 'string',},
|
|
|
+ time1920Degree: {title: '19-20点工作重要程度',order: 39,view: 'text', type: 'string',},
|
|
|
+ time1920Notes: {title: '19-20点工作备注',order: 40,view: 'text', type: 'string',},
|
|
|
+ time2021Work: {title: '20-21点工作内容',order: 41,view: 'text', type: 'string',},
|
|
|
+ time2021Degree: {title: '20-21点工作重要程度',order: 42,view: 'text', type: 'string',},
|
|
|
+ time2021Notes: {title: '20-21点工作备注',order: 43,view: 'text', type: 'string',},
|
|
|
+ time2122Work: {title: '21-22点工作内容',order: 44,view: 'text', type: 'string',},
|
|
|
+ time2122Degree: {title: '21-22点工作重要程度',order: 45,view: 'text', type: 'string',},
|
|
|
+ time2122Notes: {title: '21-22点工作备注',order: 46,view: 'text', type: 'string',},
|
|
|
+ time2223Work: {title: '22-23点工作内容',order: 47,view: 'text', type: 'string',},
|
|
|
+ time2223Degree: {title: '22-23点工作重要程度',order: 48,view: 'text', type: 'string',},
|
|
|
+ time2223Notes: {title: '22-23点工作备注',order: 49,view: 'text', type: 'string',},
|
|
|
+ time2324Work: {title: '23-24点工作内容',order: 50,view: 'text', type: 'string',},
|
|
|
+ time2324Degree: {title: '23-24点工作重要程度',order: 51,view: 'text', type: 'string',},
|
|
|
+ time2324Notes: {title: '23-24点工作备注',order: 52,view: 'text', type: 'string',},
|
|
|
+ }
|
|
|
+ },
|
|
|
+};
|