1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- * Copyright (c) 2018-2025, lengleng All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * Neither the name of the pig4cloud.com developer nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- * Author: lengleng (wangiegie@gmail.com)
- */
- export const tableOption = {
- border: true,
- index: true,
- indexLabel: '序号',
- stripe: true,
- menuAlign: 'center',
- menuWidth: 150,
- menuBtn: true,
- align: 'center',
- editBtn: false,
- delBtn: false,
- searchShow: false,
- labelWidth: 120,
- column: [{
- fixed: true,
- label: '模型ID',
- prop: 'id',
- editDisabled: true,
- addVisdiplay: false
- }, {
- fixed: true,
- label: '模型标识',
- prop: 'key',
- editDisabled: true
- }, {
- label: '流程分类',
- prop: 'category',
- search: true
- }, {
- label: '模型名称',
- prop: 'name'
- }, {
- label: '版本号',
- prop: 'version',
- editDisabled: true,
- addVisdiplay: false
- }, {
- width: 150,
- label: '创建时间',
- prop: 'createTime',
- type: 'datetime',
- format: 'yyyy-MM-dd HH:mm',
- valueFormat: 'yyyy-MM-dd HH:mm:ss',
- editDisabled: true,
- addVisdiplay: false
- }, {
- width: 150,
- label: '最后更新时间',
- prop: 'lastUpdateTime',
- type: 'datetime',
- format: 'yyyy-MM-dd HH:mm',
- valueFormat: 'yyyy-MM-dd HH:mm:ss',
- editDisabled: true,
- addVisdiplay: false
- }, {
- label: '备注',
- prop: 'desc',
- editVisdiplay: false,
- hide: true
- }]
- }
|