Browse Source

refactor(pda): 更新工具检查维修发送页面的表格布局

- 移除旧的 Bootstrap 表格样式
- 集成 iview 组件库的表格组件
- 添加新的 ivu-row 和 ivu-table-wrapper 容器
- 实现固定表格布局以改善显示效果
- 保留原有的表头和提示信息结构
- 添加透明对象元素以支持交互功能
master
常熟吴彦祖 1 month ago
parent
commit
b6fad282b4
  1. 24
      src/main/resources/templates/pda/toolInspectRepairSend.ftl

24
src/main/resources/templates/pda/toolInspectRepairSend.ftl

@ -161,8 +161,22 @@
style="padding: 1px 8px;font-size: 12px;height: 24px;width:60px;margin-left:6px;">筛选</button>
</div>
<div class="pda-clear"></div>
<div class="sp-scroll" style="max-height:58vh;overflow:auto;">
<table class="table table-bordered table-condensed" style="font-size:12px;margin:8px;margin-top:4px;">
<#-- <div class="sp-scroll" style="max-height:58vh;overflow:auto;">-->
<#-- <table class="table table-bordered table-condensed" style="font-size:12px;margin:8px;margin-top:4px;">-->
<#-- <thead>-->
<#-- <tr><th style="width:30%;">SupplierID</th><th style="width:50%;">SupplierName</th></tr>-->
<#-- </thead>-->
<#-- <tbody class="sp-tbody">-->
<#-- <tr><td colspan="2" align="center" style="color:#909399;">请先点筛选(留空可查该工厂前500条)</td></tr>-->
<#-- </tbody>-->
<#-- </table>-->
<#-- </div>-->
<div class="ivu-row" >
<div class="ivu-table-wrapper sp-scroll">
<div class="ivu-table" style="font-size: 11px;">
<div class="ivu-table-header">
<table style="width: 100%;" cellspacing="0" cellpadding="0" border="0" style="table-layout:fixed;">
<thead>
<tr><th style="width:30%;">SupplierID</th><th style="width:50%;">SupplierName</th></tr>
</thead>
@ -171,6 +185,12 @@
</tbody>
</table>
</div>
</div>
<object style="display: block; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; border: medium none; padding: 0px; margin: 0px; opacity: 0; z-index: -1000; pointer-events: none;" tabindex="-1" type="text/html" data="about:blank"></object>
</div>
</div>
</div>
</body>

Loading…
Cancel
Save