Browse Source

通知文字居中

laiguoran 3 years ago
parent
commit
6109d7cfc4
1 changed files with 9 additions and 9 deletions
  1. 9 9
      app/view/change/apply_information_notice.ejs

+ 9 - 9
app/view/change/apply_information_notice.ejs

@@ -25,33 +25,33 @@
                     <h4 class="text-center py-2">工程变更通知书</h4>
                     <table class="table table-bordered" id="apply-table">
                         <tr>
-                            <th width="" class="text-center">项目名称</th>
+                            <th width="" class="text-center" style="vertical-align: middle">项目名称</th>
                             <td colspan="3"><input class="form-control form-control-sm" value="<%- ctx.tender.info.deal_info.buildName %>" <% if (change.readOnly) { %>readonly<% } %> type="text" placeholder=""></td>
                         </tr>
                         <tr>
-                            <th width="120" class="text-center">工程变更名称</th>
+                            <th width="120" class="text-center" style="vertical-align: middle">工程变更名称</th>
                             <td><input class="form-control form-control-sm" value="<%- change.name %>" data-name="name" <% if (change.readOnly) { %>readonly<% } %> type="text" placeholder=""></td>
-                            <th width="140" class="text-center">编号</th>
+                            <th width="140" class="text-center" style="vertical-align: middle">编号</th>
                             <td><input class="form-control form-control-sm" type="text" value="<%- ctx.tender.info.deal_info.dealCode %>" data-name="peg" <% if (change.readOnly) { %>readonly<% } %> placeholder=""></td>
                         </tr>
                         <tr>
-                            <th width="" class="text-center">承包人</th>
+                            <th width="" class="text-center" style="vertical-align: middle">承包人</th>
                             <td><input class="form-control form-control-sm" type="text" value="<%- ctx.tender.info.construction_unit.contract1.company %>" data-name="class" <% if (change.readOnly) { %>readonly<% } %> placeholder=""></td>
-                            <th width="" class="text-center">合同段</th>
+                            <th width="" class="text-center" style="vertical-align: middle">合同段</th>
                             <td><input class="form-control form-control-sm" type="text" value="<%- ctx.tender.info.deal_info.dealName %>" data-name="change_price" <% if (change.readOnly) { %>readonly<% } %> placeholder=""></td>
                         </tr>
                         <tr>
-                            <th width="" class="text-center">桩号</th>
+                            <th width="" class="text-center" style="vertical-align: middle">桩号</th>
                             <td><input class="form-control form-control-sm" type="text" value="<%- change.peg %>" data-name="peg" <% if (change.readOnly) { %>readonly<% } %> placeholder=""></td>
-                            <th width="" class="text-center">工程造价增减(元)</th>
+                            <th width="" class="text-center" style="vertical-align: middle">工程造价增减(元)</th>
                             <td><input class="form-control form-control-sm" type="text" value="<%- change.crease_price %>" data-name="crease_price" <% if (change.readOnly) { %>readonly<% } %> placeholder=""></td>
                         </tr>
                         <tr>
-                            <th width="" class="text-center">变更原因</th>
+                            <th width="" class="text-center" style="vertical-align: middle">变更原因</th>
                             <td colspan="3"><textarea class="form-control form-control-sm" data-name="reason" <% if (change.readOnly) { %>readonly<% } %> rows="3"><%- change.reason %></textarea></td>
                         </tr>
                         <tr>
-                            <th width="" class="text-center">变更内容</th>
+                            <th width="" class="text-center" style="vertical-align: middle">变更内容</th>
                             <td colspan="3"><textarea class="form-control form-control-sm" data-name="content" <% if (change.readOnly) { %>readonly<% } %> rows="3"><%- change.content %></textarea></td>
                         </tr>
                     </table>