Browse Source

[fix] 基础资料模块

按照万材要求:修改出差单列表页面:出差事由和出差详细地址字段新增使用tooltip函数,设置如果内容超过5个字就部分隐藏
dev
liuxiaoxu 1 month ago
parent
commit
827c624942
  1. 12
      ruoyi-admin/src/main/resources/templates/system/baseEvectionForm/baseEvectionForm.html

12
ruoyi-admin/src/main/resources/templates/system/baseEvectionForm/baseEvectionForm.html

@ -146,8 +146,16 @@
{title: '出差人',field: 'evectionBy',align: 'center',visible: false,}, {title: '出差人',field: 'evectionBy',align: 'center',visible: false,},
{title: '同行人',field: 'partnerBy',align: 'center',}, {title: '同行人',field: 'partnerBy',align: 'center',},
{title: '出差地',field: 'evectionAddr',align: 'center',}, {title: '出差地',field: 'evectionAddr',align: 'center',},
{title: '出差详细地址',field: 'evectionDetailAddr',align: 'center',}, {title: '出差详细地址',field: 'evectionDetailAddr',align: 'center',
{title: '出差事由',field: 'evectionCauses',align: 'center',}, formatter: function(value, row, index) {
return $.table.tooltip(value,5,"open");
}
},
{title: '出差事由',field: 'evectionCauses',align: 'center',
formatter: function(value, row, index) {
return $.table.tooltip(value,5,"open");
}
},
{title: '出差起始时间',field: 'evectionBeginTime',align: 'center',visible: false,}, {title: '出差起始时间',field: 'evectionBeginTime',align: 'center',visible: false,},
{title: '出差结束时间',field: 'evectionEndTime',align: 'center',visible: false,}, {title: '出差结束时间',field: 'evectionEndTime',align: 'center',visible: false,},
{title: '出差时间',field: 'evectionTime',align: 'center', {title: '出差时间',field: 'evectionTime',align: 'center',

Loading…
Cancel
Save