|
@@ -23,8 +23,8 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="modal-footer">
|
|
|
- <button type="button" class="btn btn-secondary" data-dismiss="modal">取消</button>
|
|
|
- <button type="button" class="btn btn-primary" id="batch-ok">确定</button>
|
|
|
+ <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">取消</button>
|
|
|
+ <button type="button" class="btn btn-primary btn-sm" id="batch-ok">确定</button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -42,14 +42,14 @@
|
|
|
<label>选择审批人</label>
|
|
|
<div class="input-group">
|
|
|
<div class="input-group-prepend">
|
|
|
- <select class="form-control" id="account_group">
|
|
|
+ <select class="form-control form-control-sm" id="account_group">
|
|
|
<option value="0">所有分组</option>
|
|
|
<% for (const dw in accountGroup) { %>
|
|
|
<option value="<%= dw %>"><%= accountGroup[dw] %></option>
|
|
|
<% } %>
|
|
|
</select>
|
|
|
</div>
|
|
|
- <select class="form-control" id="account_list">
|
|
|
+ <select class="form-control form-control-sm" id="account_list">
|
|
|
<option value="0">选择审批人</option>
|
|
|
<% for (const account of accountList) { %>
|
|
|
<option value="<%= account.id %>"><%= account.name %><% if (account.role !== '') { %>(<%= account.role %>)<% } %><% if (account.company !== '') { %> -<%= account.company %><% } %></option>
|
|
@@ -73,9 +73,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<form class="modal-footer" method="post" action="/tender/<%- ctx.tender.id %>/revise/audit/start" onsubmit="return checkAuditorFrom()">
|
|
|
- <button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">关闭</button>
|
|
|
<input type="hidden" name="_csrf" value="<%= ctx.csrf %>">
|
|
|
- <button class="btn btn-primary" type="submit">确认上报</button>
|
|
|
+ <button class="btn btn-primary btn-sm" type="submit">确认上报</button>
|
|
|
</form>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -188,9 +188,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<form class="modal-footer" action="/tender/<%- ctx.tender.id %>/revise/audit/start" method="post" onsubmit="return checkAuditorFrom()">
|
|
|
- <button type="submit" class="btn btn-primary">确认上报</button>
|
|
|
+ <button type="submit" class="btn btn-primary btn-sm">确认上报</button>
|
|
|
<input type="hidden" name="_csrf" value="<%= ctx.csrf %>">
|
|
|
- <button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">关闭</button>
|
|
|
</form>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -218,7 +218,7 @@
|
|
|
<% } else if (auditors[i].status === audit.status.checking) { %>
|
|
|
<div class="form-group">
|
|
|
<label>审批意见<b class="text-danger">*</b></label>
|
|
|
- <textarea class="form-control" name="opinion">同意</textarea>
|
|
|
+ <textarea class="form-control form-control-sm" name="opinion">同意</textarea>
|
|
|
</div>
|
|
|
<% } %>
|
|
|
</li>
|
|
@@ -227,10 +227,10 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="modal-footer">
|
|
|
- <button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">关闭</button>
|
|
|
<input type="hidden" name="_csrf" value="<%= ctx.csrf %>" />
|
|
|
<input type="hidden" name="checkType" value="<%= audit.status.checked %>" />
|
|
|
- <button type="submit" class="btn btn-success" >确认通过</button>
|
|
|
+ <button type="submit" class="btn btn-success btn-sm" >确认通过</button>
|
|
|
</div>
|
|
|
</form>
|
|
|
</div>
|
|
@@ -256,7 +256,7 @@
|
|
|
<% } else if (auditors[i].status === audit.status.checking) { %>
|
|
|
<div class="form-group">
|
|
|
<label>审批意见<b class="text-danger">*</b></label>
|
|
|
- <textarea class="form-control" name="opinion">不同意</textarea>
|
|
|
+ <textarea class="form-control form-control-sm" name="opinion">不同意</textarea>
|
|
|
</div>
|
|
|
<div class="alert alert-warning">审批退回,将直接退回给上报人。</div>
|
|
|
<% } %>
|
|
@@ -266,10 +266,10 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="modal-footer">
|
|
|
- <button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">关闭</button>
|
|
|
<input type="hidden" name="_csrf" value="<%= ctx.csrf %>" />
|
|
|
<input type="hidden" name="checkType" value="<%= audit.status.checkNo %>" />
|
|
|
- <button type="submit" class="btn btn-warning" >确认退回</button>
|
|
|
+ <button type="submit" class="btn btn-warning btn-sm" >确认退回</button>
|
|
|
</div>
|
|
|
</form>
|
|
|
</div>
|
|
@@ -380,7 +380,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="modal-footer">
|
|
|
- <button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
|
|
|
+ <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">关闭</button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|