列设置
可添加的合同属性
<% const columnGroups = [ { name: '合同详情', items: contractColumnOptions.detail }, { name: '附加属性', items: contractColumnOptions.attribute }, ]; %> <% for (const group of columnGroups) { %>
<%- group.name %>
<% if (group.items.length === 0) { %>
暂无可用属性
<% } %> <% for (const item of group.items) { %>
<%- item.name %>
<% } %>
<% } %>
已选择的列
<% for (const cs of colSet) { %> <% if (cs.fixed.indexOf('alias') >= 0) { %><% } else { %><% } %> <% } %>
列名显示别名操作
<%- cs.name %><% if (cs.hint) { %><% } %>
checked<% } %>>
- 上移 下移 <% if (cs.removable) { %>移除<% } %>
设置至其他<%- contractColCopyScope === 'tender' ? '标段' : '项目' %>
将当前“<%- ctx.contract_type === contractConst.type.income ? '收入合同' : '支出合同' %>”列设置复制到勾选的<%- contractColCopyScope === 'tender' ? '标段' : '子项目' %>。
<% if (!contractColCopyTargets.some(item => !item.is_folder && !item.current)) { %>
暂无其他可设置的<%- contractColCopyScope === 'tender' ? '标段' : '子项目' %>
<% } %> <% for (const target of contractColCopyTargets) { %>
<% if (target.is_folder) { %> <%- target.name %> <% } else { %> <% } %>
<% } %>