|
@@ -51,13 +51,13 @@
|
|
|
<table class="table table-bordered" id="pay-table">
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
- <th width="120px">支付编号</th>
|
|
|
- <th width="300px" class="text-left"><%- financialPay.code %></th>
|
|
|
- <th width="120px">支付用途</th>
|
|
|
+ <th width="120px" class="text-center align-middle">支付编号</th>
|
|
|
+ <td width="300px"><input class="form-control form-control-sm" disabled value="<%- financialPay.code %>" /></td>
|
|
|
+ <th width="120px" class="text-center align-middle">支付用途</th>
|
|
|
<% if (financialPay.readOnly) { %>
|
|
|
- <th width="300px" class="text-left"><%- financialPay.used %></th>
|
|
|
+ <td width="300px"><input class="form-control form-control-sm" disabled value="<%- financialPay.used %>" /></td>
|
|
|
<% } else { %>
|
|
|
- <th width="300px">
|
|
|
+ <td width="300px">
|
|
|
<select class="form-control form-control-sm" data-name="used">
|
|
|
<% for (const used of usedList) { %>
|
|
|
<option <% if (used === financialPay.used) { %>selected<% } %>><%- used %></option>
|
|
@@ -65,28 +65,16 @@
|
|
|
</select>
|
|
|
</td>
|
|
|
<% } %>
|
|
|
- <th width="120px">支付金额</th>
|
|
|
- <th width="300px" class="text-left" id="pay-total-price"><%- financialPay.total_price %></th>
|
|
|
+ <th width="120px" class="text-center align-middle">支付金额</th>
|
|
|
+ <td width="300px"><input id="pay-total-price" class="form-control form-control-sm" disabled value="<%- financialPay.total_price %>" /></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
- <th width="">申请支付单位</th>
|
|
|
- <% if (financialPay.readOnly) { %>
|
|
|
- <th width="" class="text-left"><%- financialPay.entity %></th>
|
|
|
- <% } else { %>
|
|
|
- <td width=""><input type="text" data-name="entity" value="<%- financialPay.entity %>" class="form-control form-control-sm"></td>
|
|
|
- <% } %>
|
|
|
- <th width="">支付单位开户行</th>
|
|
|
- <% if (financialPay.readOnly) { %>
|
|
|
- <th width="" class="text-left"><%- financialPay.bank %></th>
|
|
|
- <% } else { %>
|
|
|
- <td width=""><input type="text" data-name="bank" value="<%- financialPay.bank %>" class="form-control form-control-sm"></td>
|
|
|
- <% } %>
|
|
|
- <th width="">支付账号</th>
|
|
|
- <% if (financialPay.readOnly) { %>
|
|
|
- <th width="" class="text-left"><%- financialPay.bank_account %></th>
|
|
|
- <% } else { %>
|
|
|
- <td width=""><input type="text" data-name="bank_account" value="<%- financialPay.bank_account %>" class="form-control form-control-sm"></td>
|
|
|
- <% } %>
|
|
|
+ <th width="" class="text-center align-middle">申请支付单位</th>
|
|
|
+ <td width=""><input type="text" data-name="entity" value="<%- financialPay.entity %>" <% if (financialPay.readOnly) { %>readonly<% } %> class="form-control form-control-sm"></td>
|
|
|
+ <th width="" class="text-center align-middle">支付单位开户行</th>
|
|
|
+ <td width=""><input type="text" data-name="bank" value="<%- financialPay.bank %>" <% if (financialPay.readOnly) { %>readonly<% } %> class="form-control form-control-sm"></td>
|
|
|
+ <th width="" class="text-center align-middle">支付账号</th>
|
|
|
+ <td width=""><input type="text" data-name="bank_account" value="<%- financialPay.bank_account %>" <% if (financialPay.readOnly) { %>readonly<% } %> class="form-control form-control-sm"></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<th width="120px" >备注</th>
|