| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | <% include ../tender/tender_sub_menu.ejs %><div class="panel-content">    <div class="panel-title"><!--收起详解目录添加类名 fluid -->        <div class="title-main d-flex"><!--工具-->            <% include ../tender/tender_sub_mini_menu.ejs %>            <div>                <div class="d-inline-block">                    <a <% if (returnUrl) { %>href="<%- returnUrl %>"<% } else { %>class="change_apply_sort_link" href="/tender/<%- tender.id %>/change/apply"<% } %>><i class="fa fa-chevron-left mr-2"></i><span>返回</span></a>                </div>                <div class="d-inline-block" id="change-apply-code">                    <%- change.code %>                </div>            </div>            <div class="ml-auto" id="sp-btn">                <% if (ctx.change.status === auditConst.status.checked) { %>                    <a href="#sp-list" data-toggle="modal" data-target="#sp-list" class="btn btn-outline-success btn-sm">审批意见</a>                <% } %>            </div>        </div>    </div>    <div class="content-wrap">        <div class="c-body">            <div class="sjs-height-0">                <div class="col-xl-8 mx-auto">                    <h4 class="text-center py-2">工程变更通知书</h4>                    <table class="table table-bordered" id="apply-table">                        <tr>                            <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" 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" style="vertical-align: middle">变更通知书编号</th>                            <td><input class="form-control form-control-sm" type="text" value="<%- change.notice_code %>" data-name="peg" <% if (change.readOnly) { %>readonly<% } %> placeholder=""></td>                        </tr>                        <tr>                            <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" 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" 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" 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" 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" 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>                    <table class="table table-bordered">                        <thead>                        <tr>                            <th></th>                            <th>附件</th>                            <th>上传者</th>                            <th>资料类型</th>                            <th>上传时间</th>                        </tr>                        </thead>                        <tbody>                        <tbody id="file-content">                        </tbody>                        </tbody>                    </table>                </div>            </div>        </div>    </div></div><script>    autoFlashHeight();    const auditConst = JSON.parse('<%- JSON.stringify(auditConst) %>');    const fileTypeConst = JSON.parse(unescape('<%- escape(JSON.stringify(changeConst.file_type)) %>'));    const fileList = JSON.parse(unescape('<%- escape(JSON.stringify(fileList)) %>')) || [];    const preUrl = '<%- preUrl %>';    const change = JSON.parse(unescape('<%- escape(JSON.stringify(change)) %>'));</script>
 |