fourcal/src/main/resources/templates/admin/project_list.ftl

1843 lines
111 KiB
Plaintext
Raw Normal View History

2021-10-29 10:15:36 +00:00
<#assign base=request.contextPath />
<#import "../common/defaultLayout.ftl" as defaultLayout>
2021-11-18 11:25:06 +00:00
2021-10-29 10:15:36 +00:00
<@defaultLayout.layout>
<link rel="stylesheet" href="../assets/css/amazeui.switch.css"/>
<style type="text/css">
.huanhang{
// 表格自动换行
table-layout:fixed;
word-break:break-all
}
.focus{
// 表格自动换行
table-layout:fixed;
word-break:break-all
}
/*固定表头的列表*/
.fixed-list {
flex: 1 1 auto;
overflow: hidden;
}
.fixed-list table {
display: block;
width: 100%;
max-height: 100%;
border-spacing: 0px;
border-collapse: collapse;
border: none;
overflow-y: hidden;
overflow-x: auto;
margin: 0;
}
2022-10-21 09:30:09 +00:00
.fixed-list.is-vertical-scroll table tbody {
max-height: calc(100% - 71px);
}
.fixed-list table>thead>tr>th {
height: 40px;
text-align: center;
vertical-align: middle;
}
.fixed-list table td {
height: 55px;
text-align: center;
}
.fixed-list table tbody {
display: block;
width: 100%;
max-height: calc(100% - 45px);
overflow-y: scroll;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
2022-10-21 09:30:09 +00:00
.fixed-list table tr {
table-layout: fixed;
display: table;
}
.fixed-list table thead tr {
width: calc(100% - 18px);
border-top: 1px solid #ddd;
border-bottom: none;
}
.fixed-list table tbody tr {
width: 100%;
}
</style>
2022-10-21 09:30:09 +00:00
2021-10-29 10:15:36 +00:00
<div class="admin-content">
<div class="am-cf am-padding" style="padding:1rem 1.6rem 1.6rem 1rem;margin:0px;">
<!-- padding:1px 2px 3px 4px;上、右、下,和左 -->
<div class="am-fl am-cf"><strong class="am-text-primary am-text-lg">项目管理</strong> /
<small>项目管理</small>
</div>
</div>
<div class="am-g">
<div class="am-u-sm-12">
<form class="am-form" id="listForm" action="${base}/project/list" method="POST">
<input type="hidden" id="keywords" name="keywords" value='${keywords!""}'/>
2022-09-14 04:49:20 +00:00
<input type="hidden" id="pageNumber" name="pageNumber" value='${pageNumber!}'/>
2022-09-26 06:17:31 +00:00
<input type="hidden" id="orderTypeStr" name="orderTypeStr" value='${orderTypeStr!""}'/>
<style>
.flex-row {
display: -webkit-box;
display: -webkit-flex;
display: flex;
display: -ms-flex;
}
.search-table {
position: relative;
width: 100%;
padding: 6px 0 0;
border: 1px solid #d8d8d8;
border-radius: 4px;
}
.search-table input {
border-color: #e6e6e6!important;
}
.search-table .st-row {
position: relative;
width: 100%;
justify-content: flex-start;
/*align-items: center;*/
padding: 0 6px 6px;
margin-bottom: 6px;
border-bottom: 1px solid #d8d8d8;
}
.search-table .tools-row {
position: relative;
width: 100%;
justify-content: flex-end;
padding-right: 6px;
margin-bottom: 6px;
}
.tools-row button {
margin-left: 12px;
}
/* 默认5等分一行5个 */
.st-row .st-col {
position: relative;
flex: 0 0 18%;
margin-right: 2%;
}
/* 4等分一行4个 */
.st-col.st-col-4 {
flex: 0 0 22%;
margin-right: 3%;
}
/* 3等分一行3个 */
.st-col.st-col-3 {
flex: 0 0 31%;
margin-right: 2.3%;
}
/* 2等分一行2个 */
.st-col.st-col-2 {
flex: 0 0 48%;
margin-right: 2%;
}
.st-col.hidden {
display: none;
}
.st-col .st-col-title {
font-size: 14px;
color: #333;
margin-bottom: 6px;
white-space: nowrap;
font-weight: bold;
}
.st-col .st-col-field {
align-items: center;
}
.st-col .mid-connect {
margin: 0 4px;
}
.expand-section {
display: block;
}
.expand-section.fold {
display: none;
}
</style>
<div class="search-table">
<#--第一行默认展示-->
<div class="flex-row st-row">
<div class="st-col">
<div class="st-col-title">项目编号</div>
<div class="st-col-field">
<input type="text" id="projectNo" class="am-form-field am-input-sm" value="${projectNo!}"/>
2022-08-12 07:55:28 +00:00
</div>
</div>
<div class="st-col">
<div class="st-col-title">项目名称</div>
<div class="st-col-field">
<input type="text" id="name" class="am-form-field am-input-sm" value="${name!}"/>
2021-10-29 10:15:36 +00:00
</div>
</div>
<div class="st-col">
2022-12-07 07:58:00 +00:00
<div class="st-col-title">项目当前状态</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500,searchBox: 1}" id="status" name="status">
2022-08-12 07:55:28 +00:00
<option value="-1">全部</option>
2022-11-15 10:14:03 +00:00
<option value="1" <#if status?? && status='1'>selected</#if>>概算</option>
2022-08-12 07:55:28 +00:00
<option value="5" <#if status?? && status='5'>selected</#if>>预算</option>
<option value="10" <#if status?? && status='10'>selected</#if>>结算</option>
<option value="15" <#if status?? && status='15'>selected</#if>>决算</option>
</select>
</div>
</div>
<div class="st-col">
<div class="st-col-title">项目创建者</div>
<div class="st-col-field">
<input type="text" id="creatorName" class="am-form-field am-input-sm" value="${creatorName!}"/>
2021-10-29 10:15:36 +00:00
</div>
</div>
<div class="st-col">
<div class="st-col-title">部门名称</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500,searchBox: 1}" id="deptId" name="deptId">
2022-08-12 07:55:28 +00:00
<option value="-1">全部</option>
<#list deptList as dept>
<option value=${dept.id!} <#if deptId! =="${dept.id}" >
selected
</#if>>${dept.name!}</option>
</#list>
</select>
</div>
</div>
</div>
<!-- 扩展区域 -->
<div class="expand-section <#if extend='1'> fold</#if>">
<!-- 第二行 -->
<div class="flex-row st-row">
<div class="st-col">
<div class="st-col-title">项目类型</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500,searchBox: 1}" id="type" name="type">
<option value="-1">全部</option>
<option value="1" <#if type?? && type='1'>selected</#if>>工程集成类</option>
<option value="2" <#if type?? && type='2'>selected</#if>>设备集成类</option>
</select>
</div>
2022-08-12 07:55:28 +00:00
</div>
<div class="st-col">
<div class="st-col-title">合作类型</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500,searchBox: 1}" id="cooperateType" name="cooperateType">
<option value="-1">全部</option>
<option value="1" <#if cooperateType?? && cooperateType='1'>selected</#if>>战略合作类</option>
<option value="2" <#if cooperateType?? && cooperateType='2'>selected</#if>>非战略合作类</option>
</select>
</div>
2022-11-16 06:16:58 +00:00
</div>
<div class="st-col">
<div class="st-col-title">垫资模式</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500,searchBox: 1}" id="underwrittenMode" name="underwrittenMode">
<option value="-1">全部</option>
<option value="1" <#if underwrittenMode?? && underwrittenMode='1'>selected</#if>>A类-不垫资</option>
<#-- <option value="2" <#if underwrittenMode?? && underwrittenMode='2'>selected</#if>>B类-不垫资(背靠背)</option>-->
<option value="3" <#if underwrittenMode?? && underwrittenMode='3'>selected</#if>>B类-垫资(账期覆盖)</option>
<option value="4" <#if underwrittenMode?? && underwrittenMode='4'>selected</#if>>C类-垫资(账期不覆盖)</option>
</select>
</div>
2022-08-12 07:55:28 +00:00
</div>
<div class="st-col">
<div class="st-col-title">项目把握度</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500,searchBox: 1}" id="certainty" name="certainty">
<option value="-1">全部</option>
<option value="1" <#if certainty?? && certainty='1'>selected</#if>>A项目成功率80%-100%</option>
<option value="2" <#if certainty?? && certainty='2'>selected</#if>>B项目成功率60%-80%</option>
<option value="3" <#if certainty?? && certainty='3'>selected</#if>>C项目成功率40%-60%</option>
</select>
</div>
2022-08-12 07:55:28 +00:00
</div>
<div class="st-col">
<div class="st-col-title">客户名称</div>
<div class="st-col-field">
<input type="text" id="customer" class="am-form-field am-input-sm" value="${customer!}"/>
</div>
2022-08-12 07:55:28 +00:00
</div>
</div>
<!-- 第三行 -->
<div class="flex-row st-row">
<div class="st-col">
<div class="st-col-title">最终用户名称</div>
<div class="st-col-field">
<input type="text" id="terminalCustomer" class="am-form-field am-input-sm" value="${terminalCustomer!}"/>
</div>
2022-08-12 07:55:28 +00:00
</div>
<div class="st-col">
<div class="st-col-title">项目负责人</div>
<div class="st-col-field">
<input type="text" id="principal" class="am-form-field am-input-sm" value="${principal!}"/>
</div>
2022-08-12 07:55:28 +00:00
</div>
<div class="st-col">
<div class="st-col-title">审核状态</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500,searchBox: 1}" id="approveStatus" name="approveStatus">
<option value="-1">全部</option>
<option value="0" <#if approveStatus?? && approveStatus='0'>selected</#if>>草稿</option>
<option value="1" <#if approveStatus?? && approveStatus='1'>selected</#if>>待审核</option>
<option value="2" <#if approveStatus?? && approveStatus='2'>selected</#if>>审核通过</option>
<option value="3" <#if approveStatus?? && approveStatus='3'>selected</#if>>审核不通过</option>
</select>
</div>
2022-08-18 01:01:16 +00:00
</div>
<div class="st-col expand-section <#if extend='1'> fold</#if>">
<div class="st-col-title">是否二次合作</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500}" id="isSecond" name="isSecond">
<option value="-1">全部</option>
<option value="1" <#if isSecond?? && isSecond='1'>selected</#if>>是</option>
<option value="2" <#if isSecond?? && isSecond='2'>selected</#if>>否</option>
</select>
</div>
</div>
<div class="st-col expand-section <#if extend='1'> fold</#if>">
2022-12-08 13:44:08 +00:00
<div class="st-col-title">直签</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500}" id="signType" name="signType">
<option value="-1">全部</option>
<option value="1" <#if signType?? && signType='1'>selected</#if>>是</option>
<option value="2" <#if signType?? && signType='2'>selected</#if>>否</option>
</select>
</div>
</div>
</div>
<!-- 第四行 -->
<div class="flex-row st-row">
2022-11-16 06:16:58 +00:00
<div class="st-col expand-section <#if extend='1'> fold</#if>">
<div class="st-col-title">行业场景</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500}" id="industryScene" name="industryScene">
<option value="-1">全部</option>
<option value="1" <#if industryScene?? && industryScene='1'>selected</#if>>信息安全</option>
<option value="2" <#if industryScene?? && industryScene='2'>selected</#if>>政府</option>
<option value="3" <#if industryScene?? && industryScene='3'>selected</#if>>公安</option>
<option value="4" <#if industryScene?? && industryScene='4'>selected</#if>>企业</option>
<option value="5" <#if industryScene?? && industryScene='5'>selected</#if>>教育</option>
<option value="6" <#if industryScene?? && industryScene='6'>selected</#if>>交通</option>
<option value="7" <#if industryScene?? && industryScene='7'>selected</#if>>医疗</option>
<option value="8" <#if industryScene?? && industryScene='8'>selected</#if>>电力资源</option>
<option value="9" <#if industryScene?? && industryScene='9'>selected</#if>>运营商</option>
<option value="10" <#if industryScene?? && industryScene='10'>selected</#if>>金融</option>
<option value="11" <#if industryScene?? && industryScene='11'>selected</#if>>专网</option>
<option value="12" <#if industryScene?? && industryScene='12'>selected</#if>>其他</option>
<option value="13" <#if industryScene?? && industryScene='13'>selected</#if>>互联网</option>
<option value="14" <#if industryScene?? && industryScene='14'>selected</#if>>银行</option>
</select>
</div>
</div>
<div class="st-col">
<div class="st-col-title">项目解决方案</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500}" id="resolvePlan" name="resolvePlan">
<option value="-1">全部</option>
<option value="1" <#if resolvePlan?? && resolvePlan='1'>selected</#if>>公共服务(智慧交通、雪亮工程、治安防控体系等)</option>
<option value="2" <#if resolvePlan?? && resolvePlan='2'>selected</#if>>泛行业(智慧园区、智慧医疗、智慧工地等)</option>
<option value="3" <#if resolvePlan?? && resolvePlan='3'>selected</#if>>其他生态</option>
</select>
</div>
2022-08-18 01:01:16 +00:00
</div>
2022-11-16 06:16:58 +00:00
<div class="st-col">
<div class="st-col-title">最后更新时间</div>
<div class="flex-row st-col-field">
<div class="am-form-icon">
2022-08-12 07:55:28 +00:00
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="startUpdateDate"
value="${startUpdateDate!}" placeholder="开始日期" autocomplete="off" data-am-datepicker>
</div>
<div class="mid-connect">至</div>
<div class="am-form-icon">
2022-08-12 07:55:28 +00:00
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="endUpdateDate"
value="${endUpdateDate!}" placeholder="结束日期" autocomplete="off" data-am-datepicker>
</div>
</div>
</div>
2022-11-16 06:16:58 +00:00
<div class="st-col">
<div class="st-col-title">项目周期</div>
<div class="flex-row st-col-field">
<div class="am-form-icon">
2021-11-01 03:22:37 +00:00
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="startDate"
2021-11-22 02:32:36 +00:00
value="${startDate!}" placeholder="开始日期" autocomplete="off" data-am-datepicker>
2021-11-01 03:22:37 +00:00
</div>
<div class="mid-connect">至</div>
<div class="am-form-icon">
2021-11-01 03:22:37 +00:00
<i class="am-icon-calendar"></i>
<input type="text" class="am-form-field am-input-sm" id="endDate"
2021-11-22 02:32:36 +00:00
value="${endDate!}" placeholder="结束日期" autocomplete="off" data-am-datepicker>
2021-11-01 03:22:37 +00:00
</div>
</div>
</div>
2022-11-16 06:16:58 +00:00
<div class="st-col">
<div class="st-col-title">预计合同签订时间</div>
<div class="flex-row st-col-field">
<div class="am-form-icon">
2021-11-08 08:27:33 +00:00
<i class="am-icon-calendar"></i>
2022-08-12 07:55:28 +00:00
<input type="text" class="am-form-field am-input-sm" id="contractStartTime"
value="${contractStartTime!}" placeholder="开始日期" autocomplete="off" data-am-datepicker>
2021-11-08 08:27:33 +00:00
</div>
<div class="mid-connect">至</div>
<div class="am-form-icon">
2021-11-08 08:27:33 +00:00
<i class="am-icon-calendar"></i>
2022-08-12 07:55:28 +00:00
<input type="text" class="am-form-field am-input-sm" id="contractEndTime"
value="${contractEndTime!}" placeholder="结束日期" autocomplete="off" data-am-datepicker>
2021-11-08 08:27:33 +00:00
</div>
</div>
</div>
</div>
2022-11-10 13:35:22 +00:00
<!-- 第五行 -->
<div class="flex-row st-row">
<div class="st-col st-col-4">
<div class="st-col-title">汇智产品金额</div>
<div class="flex-row st-col-field">
<div class="am-form-icon">
<input type="text" class="am-form-field am-input-sm" id="huizhiStart"
2022-11-14 08:48:58 +00:00
value="${huizhiStart!}" placeholder="汇智产品金额" autocomplete="off">
2022-11-10 13:35:22 +00:00
</div>
<div class="mid-connect">至</div>
<div class="am-form-icon">
<input type="text" class="am-form-field am-input-sm" id="huizhiEnd"
2022-11-14 08:48:58 +00:00
value="${huizhiEnd!}" placeholder="汇智产品金额" autocomplete="off">
2022-11-10 13:35:22 +00:00
</div>
</div>
</div>
<div class="st-col st-col-4">
<div class="st-col-title">华智产品金额</div>
<div class="flex-row st-col-field">
<div class="am-form-icon">
<input type="text" class="am-form-field am-input-sm" id="huazhiStart"
2022-11-14 08:48:58 +00:00
value="${huazhiStart!}" placeholder="华智产品金额" autocomplete="off">
2022-11-10 13:35:22 +00:00
</div>
<div class="mid-connect">至</div>
<div class="am-form-icon">
<input type="text" class="am-form-field am-input-sm" id="huazhiEnd"
2022-11-14 08:48:58 +00:00
value="${huazhiEnd!}" placeholder="华智产品金额" autocomplete="off">
2022-11-10 13:35:22 +00:00
</div>
</div>
</div>
<div class="st-col st-col-4">
<div class="st-col-title">华三产品金额</div>
<div class="flex-row st-col-field">
<div class="am-form-icon">
<input type="text" class="am-form-field am-input-sm" id="huasanStart"
2022-11-14 08:48:58 +00:00
value="${huasanStart!}" placeholder="华三产品金额" autocomplete="off">
2022-11-10 13:35:22 +00:00
</div>
<div class="mid-connect">至</div>
<div class="am-form-icon">
<input type="text" class="am-form-field am-input-sm" id="huasanEnd"
2022-11-14 08:48:58 +00:00
value="${huasanEnd!}" placeholder="华三产品金额" autocomplete="off">
2022-11-10 13:35:22 +00:00
</div>
</div>
</div>
<div class="st-col st-col-4">
<div class="st-col-title">其他产品金额</div>
<div class="flex-row st-col-field">
<div class="am-form-icon">
<input type="text" class="am-form-field am-input-sm" id="otherStart"
2022-11-14 08:48:58 +00:00
value="${otherStart!}" placeholder="其他产品金额" autocomplete="off">
2022-11-10 13:35:22 +00:00
</div>
<div class="mid-connect">至</div>
<div class="am-form-icon">
<input type="text" class="am-form-field am-input-sm" id="otherEnd"
2022-11-14 08:48:58 +00:00
value="${otherEnd!}" placeholder="其他产品金额" autocomplete="off">
2022-11-10 13:35:22 +00:00
</div>
</div>
</div>
</div>
2022-12-07 07:58:00 +00:00
<!-- 第六行 -->
<div class="flex-row st-row">
<div class="st-col st-col-4">
<div class="st-col-title">项目阶段</div>
<div class="st-col-field">
<select data-am-selected="{btnSize: 'sm',btnWidth: '100%',maxHeight: 500,searchBox: 1}" id="qstage" name="qstage">
<option value="-1">全部</option>
<option value="0" <#if qstage?? && qstage='0'>selected</#if>>S0-概算立项</option>
<option value="1" <#if qstage?? && qstage='1'>selected</#if>>S1-项目调研</option>
<option value="2" <#if qstage?? && qstage='2'>selected</#if>>S2-方案设计</option>
<option value="3" <#if qstage?? && qstage='3'>selected</#if>>S3-预算评估</option>
<option value="4" <#if qstage?? && qstage='4'>selected</#if>>S4-招标期</option>
<option value="5" <#if qstage?? && qstage='5'>selected</#if>>S5-合同期</option>
<option value="6" <#if qstage?? && qstage='6'>selected</#if>>S6-交付期</option>
<option value="7" <#if qstage?? && qstage='7'>selected</#if>>S7-结算期</option>
<option value="8" <#if qstage?? && qstage='8'>selected</#if>>S8-决算期</option>
<option value="9" <#if qstage?? && qstage='9'>selected</#if>>L-项目丢失</option>
</select>
</div>
</div>
</div>
2022-11-10 13:35:22 +00:00
</div>
<#-- 按钮 -->
<div class="flex-row tools-row">
<button type="button" class="am-btn am-btn-default am-btn-sm am-text-secondary"
id="extend" value="${extend!}">扩展筛选项
</button>
<@shiro.hasPermission name="PROJECT_QUERY">
<button type="button" class="am-btn am-btn-default am-btn-sm am-text-secondary"
id="submit-btn">搜索
</button>
</@shiro.hasPermission>
<@shiro.hasPermission name="PROJECT_EXPORT">
<button type="button" class="am-btn am-btn-default am-btn-sm am-text-secondary"
id="submit-btn-export">导出
</button>
</@shiro.hasPermission>
</div>
</div>
<#-- <table class="am-table am-table-bordered am-table-radius table-main" style="padding:0;">-->
<#-- <tbody>-->
<#-- <tr>-->
<#-- <th class="am-text-middle" style="width: 10%">项目编号</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <input type="text" id="projectNo" class="am-form-field am-input-sm"-->
<#-- value="${projectNo!}"/>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">项目名称</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <input type="text" id="name" class="am-form-field am-input-sm"-->
<#-- value="${name!}"/>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">项目状态</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500,searchBox: 1}" id="status" name="status">-->
<#-- <option value="-1">全部</option>-->
<#-- <option value="1" <#if status?? && status='1'>selected</#if>>项目创建(概算)</option>-->
<#-- <option value="5" <#if status?? && status='5'>selected</#if>>预算</option>-->
<#-- <option value="10" <#if status?? && status='10'>selected</#if>>结算</option>-->
<#-- <option value="15" <#if status?? && status='15'>selected</#if>>决算</option>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">项目创建者</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <input type="text" id="creatorName" class="am-form-field am-input-sm"-->
<#-- value="${creatorName!}"/>-->
<#-- </div>-->
<#-- </td>-->
<#-- </tr>-->
<#-- <tr>-->
<#-- <th class="am-text-middle" style="width: 10%">部门名称</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500,searchBox: 1}" id="deptId" name="deptId">-->
<#-- <option value="-1">全部</option>-->
<#-- <#list deptList as dept>-->
<#-- <option value=${dept.id!} <#if deptId! =="${dept.id}" >-->
<#-- selected-->
<#-- </#if>>${dept.name!}</option>-->
<#-- </#list>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">项目类型</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500,searchBox: 1}" id="type" name="type">-->
<#-- <option value="-1">全部</option>-->
<#-- <option value="1" <#if type?? && type='1'>selected</#if>>工程集成类</option>-->
<#-- <option value="2" <#if type?? && type='2'>selected</#if>>设备集成类</option>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">垫资模式</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500,searchBox: 1}" id="underwrittenMode" name="underwrittenMode">-->
<#-- <option value="-1">全部</option>-->
<#-- <option value="1" <#if underwrittenMode?? && underwrittenMode='1'>selected</#if>>A类-不垫资(战略合作)</option>-->
<#-- <option value="2" <#if underwrittenMode?? && underwrittenMode='2'>selected</#if>>B类-不垫资(背靠背)</option>-->
<#-- <option value="3" <#if underwrittenMode?? && underwrittenMode='3'>selected</#if>>C类-垫资(账期覆盖)</option>-->
<#-- <option value="4" <#if underwrittenMode?? && underwrittenMode='4'>selected</#if>>D类-垫资(账期不覆盖)</option>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">项目把握度</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500,searchBox: 1}" id="certainty" name="certainty">-->
<#-- <option value="-1">全部</option>-->
<#-- <option value="1" <#if certainty?? && certainty='1'>selected</#if>>A项目成功率80%-100%</option>-->
<#-- <option value="2" <#if certainty?? && certainty='2'>selected</#if>>B项目成功率60%-80%</option>-->
<#-- <option value="3" <#if certainty?? && certainty='3'>selected</#if>>C项目成功率40%-60%</option>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- </tr>-->
<#-- <tr>-->
<#-- <th class="am-text-middle" style="width: 10%">客户名称</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <input type="text" id="customer" class="am-form-field am-input-sm"-->
<#-- value="${customer!}"/>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">最终用户名称</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <input type="text" id="terminalCustomer" class="am-form-field am-input-sm"-->
<#-- value="${terminalCustomer!}"/>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">项目负责人</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <input type="text" id="principal" class="am-form-field am-input-sm"-->
<#-- value="${principal!}"/>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">审核状态</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500,searchBox: 1}" id="approveStatus" name="approveStatus">-->
<#-- <option value="-1">全部</option>-->
<#-- <option value="0" <#if approveStatus?? && approveStatus='0'>selected</#if>>草稿</option>-->
<#-- <option value="1" <#if approveStatus?? && approveStatus='1'>selected</#if>>待审核</option>-->
<#-- <option value="2" <#if approveStatus?? && approveStatus='2'>selected</#if>>审核通过</option>-->
<#-- <option value="3" <#if approveStatus?? && approveStatus='3'>selected</#if>>审核不通过</option>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- </tr>-->
<#-- <tr class="extendCondition" <#if extend='1'> hidden</#if>>-->
<#-- <th class="am-text-middle" style="width: 10%">是否二次合作</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500}" id="isSecond" name="isSecond">-->
<#-- <option value="-1">全部</option>-->
<#-- <option value="1" <#if isSecond?? && isSecond='1'>selected</#if>>是</option>-->
<#-- <option value="2" <#if isSecond?? && isSecond='2'>selected</#if>>否</option>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">直签</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500}" id="signType" name="signType">-->
<#-- <option value="-1">全部</option>-->
<#-- <option value="1" <#if signType?? && signType='1'>selected</#if>>是</option>-->
<#-- <option value="2" <#if signType?? && signType='2'>selected</#if>>否</option>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">行业场景</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500}" id="industryScene" name="industryScene">-->
<#-- <option value="-1">全部</option>-->
<#-- <option value="1" <#if industryScene?? && industryScene='1'>selected</#if>>信息安全</option>-->
<#-- <option value="2" <#if industryScene?? && industryScene='2'>selected</#if>>政府</option>-->
<#-- <option value="3" <#if industryScene?? && industryScene='3'>selected</#if>>公安</option>-->
<#-- <option value="4" <#if industryScene?? && industryScene='4'>selected</#if>>企业</option>-->
<#-- <option value="5" <#if industryScene?? && industryScene='5'>selected</#if>>教育</option>-->
<#-- <option value="6" <#if industryScene?? && industryScene='6'>selected</#if>>交通</option>-->
<#-- <option value="7" <#if industryScene?? && industryScene='7'>selected</#if>>医疗</option>-->
<#-- <option value="8" <#if industryScene?? && industryScene='8'>selected</#if>>电力资源</option>-->
<#-- <option value="9" <#if industryScene?? && industryScene='9'>selected</#if>>运营商</option>-->
<#-- <option value="10" <#if industryScene?? && industryScene='10'>selected</#if>>金融</option>-->
<#-- <option value="11" <#if industryScene?? && industryScene='11'>selected</#if>>专网</option>-->
<#-- <option value="12" <#if industryScene?? && industryScene='12'>selected</#if>>其他</option>-->
<#-- <option value="13" <#if industryScene?? && industryScene='13'>selected</#if>>互联网</option>-->
<#-- <option value="14" <#if industryScene?? && industryScene='14'>selected</#if>>银行</option>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">项目解决方案</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 500}" id="resolvePlan" name="resolvePlan">-->
<#-- <option value="-1">全部</option>-->
<#-- <option value="1" <#if resolvePlan?? && resolvePlan='1'>selected</#if>>公共服务(智慧交通、雪亮工程、治安防控体系等)</option>-->
<#-- <option value="2" <#if resolvePlan?? && resolvePlan='2'>selected</#if>>泛行业(智慧园区、智慧医疗、智慧工地等)</option>-->
<#-- <option value="3" <#if resolvePlan?? && resolvePlan='3'>selected</#if>>其他生态</option>-->
<#-- </select>-->
<#-- </div>-->
<#-- </td>-->
<#-- </tr>-->
<#-- <tr class="extendCondition" <#if extend='1'> hidden</#if>>-->
<#-- <th class="am-text-middle" style="width: 10%">最后更新时间</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <div class="am-form am-form-inline">-->
<#-- <div class="am-form-group am-form-icon">-->
<#-- <i class="am-icon-calendar"></i>-->
<#-- <input type="text" class="am-form-field am-input-sm" id="startUpdateDate"-->
<#-- value="${startUpdateDate!}" placeholder="开始日期" autocomplete="off" data-am-datepicker>-->
<#-- </div>-->
<#-- <div class="am-form-group">至</div>-->
<#-- <div class="am-form-group am-form-icon">-->
<#-- <i class="am-icon-calendar"></i>-->
<#-- <input type="text" class="am-form-field am-input-sm" id="endUpdateDate"-->
<#-- value="${endUpdateDate!}" placeholder="结束日期" autocomplete="off" data-am-datepicker>-->
<#-- </div>-->
<#-- </div>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">项目周期</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <div class="am-form am-form-inline">-->
<#-- <div class="am-form-group am-form-icon">-->
<#-- <i class="am-icon-calendar"></i>-->
<#-- <input type="text" class="am-form-field am-input-sm" id="startDate"-->
<#-- value="${startDate!}" placeholder="开始日期" autocomplete="off" data-am-datepicker>-->
<#-- </div>-->
<#-- <div class="am-form-group">至</div>-->
<#-- <div class="am-form-group am-form-icon">-->
<#-- <i class="am-icon-calendar"></i>-->
<#-- <input type="text" class="am-form-field am-input-sm" id="endDate"-->
<#-- value="${endDate!}" placeholder="结束日期" autocomplete="off" data-am-datepicker>-->
<#-- </div>-->
<#-- </div>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%">预计合同签订时间</th>-->
<#-- <td style="width: 15%">-->
<#-- <div class="am-u-sm-10">-->
<#-- <div class="am-form am-form-inline">-->
<#-- <div class="am-form-group am-form-icon">-->
<#-- <i class="am-icon-calendar"></i>-->
<#-- <input type="text" class="am-form-field am-input-sm" id="contractStartTime"-->
<#-- value="${contractStartTime!}" placeholder="开始日期" autocomplete="off" data-am-datepicker>-->
<#-- </div>-->
<#-- <div class="am-form-group">至</div>-->
<#-- <div class="am-form-group am-form-icon">-->
<#-- <i class="am-icon-calendar"></i>-->
<#-- <input type="text" class="am-form-field am-input-sm" id="contractEndTime"-->
<#-- value="${contractEndTime!}" placeholder="结束日期" autocomplete="off" data-am-datepicker>-->
<#-- </div>-->
<#-- </div>-->
<#-- </div>-->
<#-- </td>-->
<#-- <th class="am-text-middle" style="width: 10%"></th>-->
<#-- <td style="width: 15%">-->
<#-- </td>-->
<#-- </tr>-->
<#-- <tr>-->
<#-- <td colspan="8">-->
<#-- <div align='right'>-->
<#-- <button type="button" class="am-btn am-btn-default am-btn-sm am-text-secondary"-->
<#-- id="extend" value="${extend!}">扩展筛选项-->
<#-- </button>-->
<#-- <@shiro.hasPermission name="PROJECT_QUERY">-->
<#-- <button type="button" class="am-btn am-btn-default am-btn-sm am-text-secondary"-->
<#-- id="submit-btn">搜索-->
<#-- </button>-->
<#-- </@shiro.hasPermission>-->
<#-- <@shiro.hasPermission name="PROJECT_EXPORT">-->
<#-- <button type="button" class="am-btn am-btn-default am-btn-sm am-text-secondary"-->
<#-- id="submit-btn-export">导出-->
<#-- </button>-->
<#-- </@shiro.hasPermission>-->
<#-- </div>-->
<#-- </td>-->
<#-- </tr>-->
<#-- </tbody>-->
<#-- </table>-->
2021-10-29 10:15:36 +00:00
</form>
</div>
<div class="am-u-sm-12 am-u-md-12" style="padding:0 1.6rem 1.6rem 1rem;margin:0;">
<div class="am-btn-toolbar" style="padding-left:.5rem;">
<div class="am-btn-group am-btn-group-xs">
<@shiro.hasPermission name="PROJECT_ADD">
<button type="button" class="am-btn am-btn-default"
onclick="location.href='${base}/project/add'">
<span class="am-icon-plus"></span> 新增
</button>
</@shiro.hasPermission>
2021-11-08 08:55:37 +00:00
<@shiro.hasPermission name="PROJECT_APPROVE">
<button type="button" class="am-btn am-btn-default"
onclick="location.href='${base}/project/listApprove'">
2021-11-08 09:32:25 +00:00
<span class="am-icon-pencil"></span> 待我审核的项目
2021-11-08 08:55:37 +00:00
</button>
</@shiro.hasPermission>
2022-08-29 02:27:30 +00:00
<button type="button" class="am-btn am-btn-default"
onclick="openChengjieModal()">
<span class="am-icon-refresh"></span> 批量指定承接人
</button>
2022-09-06 09:05:44 +00:00
<#if adminId==1>
<button type="button" id="authorizeButton" disabled class="am-btn am-btn-default"
onclick="authorize('${base}/project/selectRoleUserBatch')" >
<span class="am-icon-trash-o"></span> 批量配置项目可见性
</button>
</#if>
2021-10-29 10:15:36 +00:00
</div>
</div>
</div>
</div>
2022-10-21 09:30:09 +00:00
<div class="am-g fixed-list is-vertical-scroll">
2021-10-29 10:15:36 +00:00
<div class="am-u-sm-12">
2022-10-21 09:30:09 +00:00
<div class="list-content">
2022-10-31 09:56:24 +00:00
<style>
td {
word-break: break-all;
}
</style>
2021-10-29 10:15:36 +00:00
<table class="am-table am-table-striped am-table-hover table-main">
2022-12-08 13:44:08 +00:00
<thead style="display:block;width: 1888px;">
2021-10-29 10:15:36 +00:00
<tr class="am-text-nowrap">
2022-10-21 09:30:09 +00:00
<th width="30px">
<input type="checkbox" id="allCheck">
</th>
2022-10-21 09:30:09 +00:00
<th class="table-title" width="60px">序号</th>
<th class="table-title" width="120px">项目编号<i class="am-icon-caret-down" <#if orderTypeStr == "projectNoDown">style="color: red"</#if> onclick="sub_function('projectNoDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "projectNoUp">style="color: red"</#if> onclick="sub_function('projectNoUp')"></i></th>
2022-10-26 09:52:48 +00:00
<th class="table-title" width="480px">项目名称<i class="am-icon-caret-down" <#if orderTypeStr == "projectNameDown">style="color: red"</#if> onclick="sub_function('projectNameDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "projectNameUp">style="color: red"</#if> onclick="sub_function('projectNameUp')"></i></th>
2022-12-08 03:55:00 +00:00
<th class="table-title" >项目类型<i class="am-icon-caret-down" <#if orderTypeStr == "projectTypeDown">style="color: red"</#if> onclick="sub_function('projectTypeDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "projectTypeUp">style="color: red"</#if> onclick="sub_function('projectTypeUp')"></i></th>
<th class="table-title" >项目阶段</th>
<#--<th class="table-title">垫资模式<i class="am-icon-caret-down" <#if orderTypeStr == "underModeDown">style="color: red"</#if> onclick="sub_function('underModeDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "underModeUp">style="color: red"</#if> onclick="sub_function('underModeUp')"></i></th>-->
<#--<th class="table-title">垫资利息<i class="am-icon-caret-down" <#if orderTypeStr == "underIntDown">style="color: red"</#if> onclick="sub_function('underIntDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "underIntUp">style="color: red"</#if> onclick="sub_function('underIntUp')"></i></th>-->
<#--<th class="table-title">垫资峰值<i class="am-icon-caret-down" <#if orderTypeStr == "underPeakDown">style="color: red"</#if> onclick="sub_function('underPeakDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "underPeakUp">style="color: red"</#if> onclick="sub_function('underPeakUp')"></i></th>-->
2022-12-08 03:55:00 +00:00
<th class="table-title" >项目合同金额<i class="am-icon-caret-down" <#if orderTypeStr == "projectContractDown">style="color: red"</#if> onclick="sub_function('projectContractDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "projectContractUp">style="color: red"</#if> onclick="sub_function('projectContractUp')"></i></th>
<#--<th class="table-title">项目毛利<i class="am-icon-caret-down" <#if orderTypeStr == "grossProfitDown">style="color: red"</#if> onclick="sub_function('grossProfitDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "grossProfitUp">style="color: red"</#if> onclick="sub_function('grossProfitUp')"></i></th>-->
<#--<th class="table-title">项目毛利率<i class="am-icon-caret-down" <#if orderTypeStr == "grossProfitMarginDown">style="color: red"</#if> onclick="sub_function('grossProfitMarginDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "grossProfitMarginUp">style="color: red"</#if> onclick="sub_function('grossProfitMarginUp')"></i></th>-->
<#--<th class="table-title">项目把握度<i class="am-icon-caret-down" <#if orderTypeStr == "certaintyDown">style="color: red"</#if> onclick="sub_function('certaintyDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "certaintyUp">style="color: red"</#if> onclick="sub_function('certaintyUp')"></i></th>-->
<#--<th class="table-title">汇智产品金额<i class="am-icon-caret-down" <#if orderTypeStr == "huizhiDown">style="color: red"</#if> onclick="sub_function('huizhiDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "huizhiUp">style="color: red"</#if> onclick="sub_function('huizhiUp')"></i></th>-->
<#--<th class="table-title">华智产品金额<i class="am-icon-caret-down" <#if orderTypeStr == "huazhiDown">style="color: red"</#if> onclick="sub_function('huazhiDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "huazhiUp">style="color: red"</#if> onclick="sub_function('huazhiUp')"></i></th>-->
<#--<th class="table-title">华三产品金额<i class="am-icon-caret-down" <#if orderTypeStr == "huasanDown">style="color: red"</#if> onclick="sub_function('huasanDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "huasanUp">style="color: red"</#if> onclick="sub_function('huasanUp')"></i></th>-->
<#--<th class="table-title">其他产品金额<i class="am-icon-caret-down" <#if orderTypeStr == "otherDown">style="color: red"</#if> onclick="sub_function('otherDown')"></i><i class="am-icon-caret-up" <#if orderTypeStr == "otherUp">style="color: red"</#if> onclick="sub_function('otherUp')"></i></th>-->
<#--<th class="table-title">项目状态</th>-->
<#--<th class="table-title">行业场景应用</th>-->
<#--<th class="table-title">解决方案</th>-->
<#--<th class="table-title">客户名称</th>-->
<#--<th class="table-title">最终用户名称</th>-->
<#--<th class="table-title">预计合同签订时间</th>-->
<#--<th class="table-title">项目计划招标时间</th>-->
<#--<th class="table-title">是否二次合作</th>-->
<#--<th class="table-title">直签</th>-->
<#--<th class="table-title">战略合作对象</th>-->
<#--<th class="table-title">项目负责人</th>-->
<#--<th class="table-title">审核状态</th>-->
2022-12-08 03:55:00 +00:00
<th class="table-title" >当前审核人</th>
<th class="table-title" >项目创建者</th>
<#--<th class="table-title">部门名称</th>-->
<#--<th class="table-title">项目周期</th>-->
<#--<th class="table-title">最后更新时间</th>-->
2022-12-08 13:44:08 +00:00
<th class="table-title" width="240px">操作</th>
2021-10-29 10:15:36 +00:00
</tr>
</thead>
2022-12-08 13:44:08 +00:00
<tbody style="display:block;width: 1888px;">
2021-11-19 07:21:57 +00:00
<#list pager.list as list>
2021-10-29 10:15:36 +00:00
<tr>
2022-10-21 09:30:09 +00:00
<td width="30px">
<input type="checkbox" name="ids" value="${list.id!}" />
</td>
<#--序号-->
2022-10-21 09:30:09 +00:00
<td width="60px">${list.tempId!}</td>
<#--项目编号-->
2022-10-21 09:30:09 +00:00
<td class="huanhang" width="120px">${list.projectNo!}</td>
<#--项目名称-->
<td class="huanhang" width="480px">
<a style="cursor: pointer;text-decoration:none" onclick="approve(${list.id})">${list.name!}</a>
</td>
<#--项目类型-->
2022-12-08 03:55:00 +00:00
<td >${list.typeDesc!}</td>
<#--项目阶段-->
2022-12-08 03:55:00 +00:00
<td>${list.stage!}</td>
<#--垫资模式-->
<#--<td>${list.underwrittenModeStr!}</td>-->
<#--垫资利息-->
<#--<td>${list.advanceInterestAmountRound!}</td>-->
<#--垫资峰值-->
<#--<td>${list.advancePeakAmountRound!}</td>-->
<#--项目合同金额-->
2022-12-08 03:55:00 +00:00
<td>${list.contractRound!}</td>
<#--项目毛利-->
<#--<td>${list.grossProfitRound!}</td>-->
<#--项目毛利率-->
<#--<td>${list.grossProfitMarginRound!}</td>-->
<#-- <td>${Utils.format(list.advanceInterestAmount, "0.00")}</td>-->
<#-- <td>${Utils.format(list.advancePeakAmount, "0.00")}</td>-->
<#-- <td>${Utils.format(list.contractAmount, "0.00")}</td>-->
<#-- <td>${Utils.format(list.grossProfit, "0.00")}</td>-->
<#-- <td>${Utils.format(list.grossProfitMargin, "0.00")}</td>-->
<#--项目把握度-->
<#--<td>${list.certaintyStr!}</td>-->
<#--汇智产品金额-->
<#--<td>${list.huizhiRound!}</td>-->
<#--华智产品金额-->
<#--<td>${list.huazhiRound!}</td>-->
<#--华三产品金额-->
<#--<td>${list.huasanRound!}</td>-->
<#--其他产品金额-->
<#--<td>${list.ziguangRound!}</td>-->
<#-- <td>${Utils.format(list.huizhiProductAmount, "0.00")}</td>-->
<#-- <td>${Utils.format(list.huazhiProductAmount, "0.00")}</td>-->
<#-- <td>${Utils.format(list.huasanProductAmount, "0.00")}</td>-->
<#-- <td>${Utils.format(list.ziguangOtherAmount, "0.00")}</td>-->
<#--项目状态-->
<#--<td>${list.statusDesc!}</td>-->
<#--行业场景应用-->
<#--<td>${list.industryScenario!}</td>-->
<#--解决方案-->
<#--<td>${list.resolvePlanStr!}</td>-->
<#--客户名称-->
<#--<td>${list.customer!}</td>-->
<#--最终用户名称-->
<#--<td>${list.terminalCustomer!}</td>-->
<#--预计合同签订时间-->
<#--<td>${(list.contractTime?string("yyyy-MM-dd"))!}</td>-->
<#--项目计划招标时间-->
<#--<td>${(list.bidsTime?string("yyyy-MM-dd"))!}</td>-->
<#--是否二次合作-->
<#--<td>${list.isSecondStr!}</td>-->
<#--直签-->
<#--<td>${list.signTypeStr!}</td>-->
<#--战略合作对象-->
<#--<td>${list.collaborator!}</td>-->
<#--项目负责人-->
<#--<td>${list.principal!}</td>-->
<#--审核状态-->
<#--<td>${list.approveStatusDesc!}</td>-->
<#--当前审核人-->
2022-12-08 03:55:00 +00:00
<td >${list.approveName!}</td>
<#--项目创建者-->
2022-12-08 03:55:00 +00:00
<td>${list.creatorName!}</td>
<#--部门名称-->
<#-- <td>${list.deptName!}</td>-->
<#--项目周期-->
<#--<td>${(list.startDate?string("yyyy-MM"))!} ~ ${(list.endDate?string("yyyy-MM"))!}</td>-->
<#--最后更新时间-->
<#--<td>${(list.lastUpdateTime?string("yyyy-MM-dd HH:mm:ss"))!}</td>-->
<#--操作-->
2022-12-08 13:44:08 +00:00
<td width="240px">
2021-11-01 13:09:10 +00:00
<div class="am-btn-toolbar">
<div class="am-btn-group am-btn-group-xs">
<#if adminId==1>
2021-11-19 07:21:57 +00:00
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="location.href='${base}/project/selectRoleUser?projectId=${list.id}'"><span class="am-icon-pencil-square-o"></span>设置项目可见性
</button>
</#if>
2022-07-20 09:16:21 +00:00
2022-08-10 00:55:46 +00:00
<#if adminId==1 && !list.projectNo??>
2022-07-20 09:16:21 +00:00
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
2022-07-20 17:32:27 +00:00
onclick="projectNo(${list.id})"><span class="am-icon-pencil-square-o"></span>填写项目编号
2022-07-20 09:16:21 +00:00
</button>
</#if>
2022-08-04 09:00:23 +00:00
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="location.href='${base}/project/exportAll?id=${list.id}'"><span class="am-icon-pencil-square-o"></span>导出总表
</button>
2021-11-18 08:22:56 +00:00
<#--<@shiro.hasPermission name="PROJECT_EDIT">-->
<#-- 项目等于概算状态、概算审核为草稿和不通过状态-->
2021-11-26 08:43:47 +00:00
<#if list.creatorId==adminId && list.status==1 && (list.approveStatusEstimate==0 || list.approveStatusEstimate==3)>
2021-11-01 13:09:10 +00:00
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="location.href='${base}/project/edit?id=${list.id}'"><span
2021-11-18 08:07:33 +00:00
class="am-icon-pencil-square-o"></span>编辑概算
2021-11-01 13:09:10 +00:00
</button>
2021-11-18 08:22:56 +00:00
</#if>
2021-11-16 03:39:33 +00:00
<#-- 项目等于概算状态、概算审核为草稿状态-->
<#if list.creatorId==adminId && list.status==1 && list.approveStatusEstimate==0>
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="deleteProject('${list.id}')"><span
class="am-icon-pencil-square-o"></span>删除
</button>
</#if>
2021-11-12 08:58:41 +00:00
<#-- </@shiro.hasPermission>
<@shiro.hasPermission name="PROJECT_EDIT">-->
2021-12-07 07:57:41 +00:00
<#-- 概算审核等于通过状态、预算审核不等于待审核状态、 项目不等于决算状态-->
<#if list.creatorId==adminId && list.approveStatusEstimate=2 && list.approveStatusBudget!=1 && list.status!=15 >
2021-11-02 06:43:42 +00:00
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="location.href='${base}/project/budgetEdit?id=${list.id}'"><span
class="am-icon-pencil-square-o"></span>填写预算表
</button>
2021-11-18 08:22:56 +00:00
</#if>
2021-11-18 08:07:33 +00:00
<#-- </@shiro.hasPermission>-->
2021-11-17 03:14:52 +00:00
<#-- 项目等于预算状态、预算审核等于通过状态 -->
2021-11-30 03:38:13 +00:00
<#if admin.getRoleLevel() == 6 && ((list.status==5 && list.approveStatusBudget=2) || (list.status=10 && list.approveStatusSettle=2)) >
2021-11-17 03:14:52 +00:00
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="location.href='${base}/project/settle/add?id=${list.id}'"><span
class="am-icon-pencil-square-o"></span>填写结算表
</button>
2021-11-17 13:52:40 +00:00
</#if>
<#-- 项目等于结算状态、结算审核不等于待审核状态-->
2021-11-30 03:38:13 +00:00
<#if admin.getRoleLevel() = 6 && list.status==10 && list.approveStatusSettle!=1>
2021-11-17 13:52:40 +00:00
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="location.href='${base}/project/settle/edit?id=${list.id}'"><span
class="am-icon-pencil-square-o"></span>编辑结算表
</button>
2021-11-17 03:14:52 +00:00
</#if>
<#-- 项目等于结算状态、结算审核等于通过状态 -->
2021-11-30 03:38:13 +00:00
<#if (admin.getRoleLevel() = 2 || admin.getRoleLevel() = 6) && (list.status== 10 && list.approveStatusSettle==2) >
2021-11-17 06:49:11 +00:00
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
2021-11-18 07:19:13 +00:00
onclick="location.href='${base}/project/final/add?id=${list.id}'"><span
2021-11-17 06:49:11 +00:00
class="am-icon-pencil-square-o"></span>发起决算
</button>
</#if>
2021-11-17 03:14:52 +00:00
<#-- 项目等于决算状态、决算审核不等于待审核状态、 决算审核不等于通过状态-->
2021-11-30 03:38:13 +00:00
<#if (admin.getRoleLevel() = 2 || admin.getRoleLevel() = 6) && list.status== 15 && list.approveStatusFinal!=1 && list.approveStatusFinal!=2 >
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="location.href='${base}/project/final/edit?id=${list.id}'"><span
class="am-icon-pencil-square-o"></span>编辑决算
</button>
</#if>
2021-11-18 07:19:13 +00:00
2021-11-19 08:58:28 +00:00
<#--<button type="button"
2021-11-18 07:19:13 +00:00
class="am-btn am-btn-default am-btn-xs am-text-secondary"
2021-11-13 08:21:52 +00:00
onclick="location.href='${base}/project/detail?id=${list.id}'"><span
class="am-icon-pencil-square-o"></span>查看
2021-11-19 08:58:28 +00:00
</button>-->
<#if (list.creatorId==adminId && list.approveStatusEstimate == 0) || (list.creatorId==adminId && list.approveStatusBudget == 0) || (admin.getRoleLevel() = 6 && list.approveStatusSettle == 0 && list.approveStatusBudget == 2) || ((admin.getRoleLevel() = 2 || admin.getRoleLevel() = 6) && list.approveStatusFinal == 0)>
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
2022-09-06 02:47:46 +00:00
onclick="approveProject(${list.id}, ${list.status})"><span
class="am-icon-pencil-square-o"></span>提交审核
</button>
</#if>
2021-11-16 03:39:33 +00:00
2021-11-23 09:32:08 +00:00
<#if adminId==list.approveId>
2021-11-16 03:39:33 +00:00
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
2022-04-12 09:10:48 +00:00
onclick="location.href='${base}/project/approve?listFrom=list&type=1&id=${list.id}'"><span
2021-11-16 03:39:33 +00:00
class="am-icon-pencil-square-o"></span>审核
</button>
</#if>
2022-08-16 08:48:29 +00:00
<#--预算状态 待审核状态 -->
<#if list.status==5 && list.approveStatusBudget==1 && list.actTaskName! != "执行董事" >
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="openHuiqianModal(${list.id}, '${list.name}')"><span class="am-icon-pencil-square-o"></span>会签
</button>
</#if>
2021-11-15 08:53:43 +00:00
2021-11-17 03:14:52 +00:00
<#if list.approveStatusEstimate != 0 >
<button type="button"
class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="location.href='${base}/project/taskRecords/${list.id?c}'"><span
class="am-icon-pencil-square-o"></span>查看审核流程
</button>
</#if>
2021-11-15 08:53:43 +00:00
2022-12-07 07:58:00 +00:00
<button type="button" class="am-btn am-btn-default am-btn-xs am-text-secondary"
onclick="stageRefreshModal(${list.id})">
<span class="am-icon-pencil-square-o"></span>项目阶段更新
</button>
2021-11-01 13:09:10 +00:00
</div>
</div>
2021-10-29 10:15:36 +00:00
</td>
</tr>
</#list>
</tbody>
</table>
</div>
2022-10-21 09:30:09 +00:00
2021-10-29 10:15:36 +00:00
</div>
</div>
2021-11-18 11:25:06 +00:00
2021-11-19 06:47:59 +00:00
<#--<div class="am-modal am-modal-prompt" tabindex="-1" id="my-prompt-select-role-user">
2021-11-18 11:25:06 +00:00
<div class="am-modal-dialog">
<div class="am-modal-hd">请选择项目可见性</div>
<div class="am-modal-bd">
请勾选能够看到该项目的人员或角色
<ul id="treeSelectRoleUser" class="ztree"></ul>
</div>
<div class="am-modal-footer">
<span class="am-modal-btn" data-am-modal-cancel>取消</span>
<span class="am-modal-btn" data-am-modal-confirm>提交</span>
</div>
</div>
2021-11-19 06:47:59 +00:00
</div>-->
2021-11-18 11:25:06 +00:00
2021-10-29 10:15:36 +00:00
<footer class="admin-content-footer">
2022-10-21 09:30:09 +00:00
<div class="am-cf">
<!-- 分页 -->
<#if (pager.list)?exists && (pager.list?size>0) >
<div class="am-fr">
<#include "../common/project_pager.ftl">
</div>
<#else>
<div class="am-kai" align="center">
<h3>没有找到任何记录!</h3>
</div>
</#if>
</div>
2021-10-29 10:15:36 +00:00
</footer>
</div>
2022-07-20 17:32:27 +00:00
<!-- 模态框Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">您正在编辑项目编号</h4>
</div>
<div>
2022-07-22 08:43:38 +00:00
<input type="text" id="newProjectNo" class="am-modal-prompt-input" placeholder="请输入项目编号" maxlength="50"/>
2022-07-20 17:32:27 +00:00
<input type="hidden" id="modelId" name="keywords" value=''/>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" data-am-modal-cancel>关闭</button>
<button type="button" class="btn btn-primary" data-am-modal-confirm onclick="projectNoCheck('')">提交</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
<!-- /.modal -->
2022-08-16 08:48:29 +00:00
<#--会签弹窗-->
<div class="modal fade" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">您正在进行项目会签,请确认该操作</h4>
<h5 class="modal-title" id="myModalLabel">项目名称:<span id="hqProjectName" style="color: red"></span></h5>
</div>
<input type="hidden" id="hqProjectId" name="hqProjectId" value=''/>
<div class="am-g am-form-group am-margin-top" style="display: flex;">
2022-08-16 10:20:21 +00:00
<div class="am-u-sm-3 am-u-md-3 am-text-right">
2022-08-16 08:48:29 +00:00
<span style="color: red;">*</span>请输入会签意见</div>
<div class="am-u-sm-6 am-u-md-6">
2022-08-16 10:20:21 +00:00
<textarea id="doc-vld-ta-2" minlength="1" rows="3" cols="40" maxlength="300" class="am-input"></textarea>
2022-08-16 08:48:29 +00:00
</div>
2022-08-16 10:20:21 +00:00
<div class="am-u-sm-3 am-u-md-3 input-msg"></div>
2022-08-16 08:48:29 +00:00
</div>
<div>
<div class="am-g am-form-group am-margin-top">
2022-08-16 10:20:21 +00:00
<div class="am-u-sm-3 am-u-md-3 am-text-right"><span style="color: red;">*</span>请上传会签单</div>
2022-08-16 08:48:29 +00:00
<div class="am-u-sm-6 am-u-md-6">
<input type="text" id="icon" name="icon" maxlength="500"
value="" required
2022-08-16 10:20:21 +00:00
style="width: 300px;"
placeholder="格式gif、jpg、jpeg、png、pdf"/>
2022-08-16 08:48:29 +00:00
</div>
<div class="am-form-file am-text-xs">
2022-08-16 10:20:21 +00:00
<button type="button" class="am-btn am-btn-primary am-btn-sm" style="margin-left: 20px">
2022-08-16 08:48:29 +00:00
<i class="am-icon-cloud-upload"></i> 上传
</button>
<input id="fileupload_button_icon" type="file" name="files[]" multiple>
</div>
<!-- The global progress bar -->
<div id="progress-area-icon" class="am-margin-top-sm am-hide">
<div id="progress-text-icon" class="am-text-xs am-text-right"></div>
<div id="progress" class="am-progress am-progress-xs">
<div class="am-progress-bar" style="width: 0%"></div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" data-am-modal-cancel>关闭</button>
<button type="button" class="btn btn-primary" data-am-modal-confirm onclick="huiQian()">提交</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
<!-- /.modal -->
2022-08-29 02:27:30 +00:00
<#--设置审批承接人弹窗-->
<div class="modal fade" id="myModal3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content" style="width: 500px">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">请选择承接账号</h4>
</div>
<input type="hidden" id="hqProjectId" name="hqProjectId" value=''/>
<div class="am-g am-form-group am-margin-top" style="display: flex;">
<div class="am-u-sm-6 am-u-md-6">
<select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 300,searchBox: 1}"
id="approveAdminSelect">
<#list adminList as l>
<option value="${l.id}">${l.realName!}</option>
</#list>
</select>
</div>
<div class="am-u-sm-3 am-u-md-3 input-msg"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" data-am-modal-cancel>关闭</button>
<button type="button" class="btn btn-primary" data-am-modal-confirm onclick="batchUpdateApprove()">提交</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
2022-12-07 07:58:00 +00:00
<#--项目阶段更新弹窗-->
<div class="modal fade" id="myModal4" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content" style="width: 500px">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">项目阶段更新</h4>
</div>
<input type="hidden" id="stageProjectId" name="stageProjectId" value=''/>
<div class="am-g am-form-group am-margin-top" style="display: flex;">
<div class="am-u-sm-3 am-u-md-3 am-text-right">
<span style="color: red;">*</span>项目阶段</div>
<div class="am-u-sm-6 am-u-md-6">
<select data-am-selected="{btnSize: 'sm',btnWidth: '150px',maxHeight: 300,searchBox: 1}"
id="stage" name="stage">
<option value="0" <#if stage?? && stage='0'>selected</#if>>S0-概算立项</option>
<option value="1" <#if stage?? && stage='1'>selected</#if>>S1-项目调研</option>
<option value="2" <#if stage?? && stage='2'>selected</#if>>S2-方案设计</option>
<option value="3" <#if stage?? && stage='3'>selected</#if>>S3-预算评估</option>
<option value="4" <#if stage?? && stage='4'>selected</#if>>S4-招标期</option>
<option value="5" <#if stage?? && stage='5'>selected</#if>>S5-合同期</option>
<option value="6" <#if stage?? && stage='6'>selected</#if>>S6-交付期</option>
<option value="7" <#if stage?? && stage='7'>selected</#if>>S7-结算期</option>
<option value="8" <#if stage?? && stage='8'>selected</#if>>S8-决算期</option>
<option value="9" <#if stage?? && stage='9'>selected</#if>>L-项目丢失</option>
</select>
</div>
<div class="am-u-sm-3 am-u-md-3 input-msg"></div>
</div>
<div class="am-g am-form-group am-margin-top" style="display: flex;">
<div class="am-u-sm-3 am-u-md-3 am-text-right">
<span style="color: red;">*</span>当前进度描述</div>
<div class="am-u-sm-6 am-u-md-6">
<textarea id="stageRemark" minlength="1" rows="3" cols="40" maxlength="1000" class="am-input"></textarea>
</div>
<div class="am-u-sm-3 am-u-md-3 input-msg"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" data-am-modal-cancel>关闭</button>
<button type="button" class="btn btn-primary" data-am-modal-confirm onclick="stageRefreshSave()">提交</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
2022-08-29 02:27:30 +00:00
<!-- /.modal -->
2021-10-29 10:15:36 +00:00
</@defaultLayout.layout>
2022-07-20 17:32:27 +00:00
<script type="text/javascript" src="../modal/js/modal.js"></script>
2021-10-29 10:15:36 +00:00
<script src="../assets/js/amazeui.switch.js"></script>
2021-11-18 11:25:06 +00:00
<script src="${base}/assets/js/project_common.js"></script>
2022-08-16 08:48:29 +00:00
<script src="${base}/common/jQuery-File-Upload/js/vendor/jquery.ui.widget.js"></script>
<script type="text/javascript" src="${base}/common/jQuery-File-Upload/js/jquery.iframe-transport.js"></script>
<script type="text/javascript" src="${base}/common/jQuery-File-Upload/js/jquery.fileupload.js"></script>
<script src="${base}/common/jQuery-File-Upload/js/jquery.fileupload-process.js"></script>
<script src="${base}/common/jQuery-File-Upload/js/jquery.fileupload-validate.js"></script>
2021-10-29 10:15:36 +00:00
<script type="text/javascript">
2022-09-06 02:47:46 +00:00
var approveProject = function (id, status) {
if (window.confirm('即将跳转详情页确认提交内容,请在确认后再提交')) {
if (status == '1') {
location.href = '${base}/project/edit?id=' + id;
} else if (status == '5') {
location.href = '${base}/project/budgetEdit?id=' + id;
} else if (status == '10') {
location.href = '${base}/project/settle/edit?id=' + id;
} else if (status == '15') {
location.href = '${base}/project/final/edit?id=' + id;
} else {
location.href = '${base}/project/list';
}
<#--$.ajax({-->
<#-- url: '${base}/project/saveApprove',-->
<#-- data: {id:id},-->
<#-- dataType: "json",-->
<#-- async: false,-->
<#-- success: function (data) {-->
<#-- if (data.status == 0) {-->
2022-10-26 09:52:48 +00:00
<#-- layer.alert(data.msg);-->
2022-09-06 02:47:46 +00:00
<#-- window.location.href = window.location.href;-->
<#-- } else if (data.status == 1) {-->
2022-10-26 09:52:48 +00:00
<#-- layer.alert(data.msg);-->
2022-09-06 02:47:46 +00:00
<#-- location.href = '${base}/project/toEditAllStatus?id=' + id;-->
<#-- }-->
<#-- }-->
<#--});-->
2021-12-29 02:49:01 +00:00
}
};
2022-09-14 04:49:20 +00:00
var approve = function (id) {
var pageNumber = $("#pageNumber").val();
var keywords = $("#keywords").val();
keywords = keywords.replace(/\{/g, '%7b').replace(/\}/g, '%7d');
console.log("keywords: " + keywords);
location.href = '${base}/project/approve?listFrom=list&type=1&id=' + id + '&pageNumber=' + pageNumber + '&keywords=' + keywords;
};
2022-09-14 08:01:15 +00:00
var sub_function = function (type) {
$("#pageNumber").val(1);
initSearch(type);
$("#listForm").attr("action", "${base}/project/list");
$("#listForm").submit();
};
var initSearch = function (type) {
var keywordsObj = {};
var extend = $("#extend").val();
keywordsObj.extend = extend;
keywordsObj.orderType = type;
if ($("#projectNo").val())
keywordsObj.projectNo = $("#projectNo").val();
if ($("#name").val())
keywordsObj.name = $("#name").val();
if ($("#creatorName").val())
keywordsObj.creatorName = $("#creatorName").val();
if ($("#status").val())
keywordsObj.status = $("#status").val();
if ($("#approveStatus").val())
keywordsObj.approveStatus = $("#approveStatus").val();
if ($("#deptId").val())
keywordsObj.deptId = $("#deptId").val();
if ($("#type").val())
keywordsObj.type = $("#type").val();
2022-11-16 06:16:58 +00:00
if ($("#cooperateType").val())
keywordsObj.cooperateType = $("#cooperateType").val();
2022-09-14 08:01:15 +00:00
if ($("#underwrittenMode").val())
keywordsObj.underwrittenMode = $("#underwrittenMode").val();
if ($("#certainty").val())
keywordsObj.certainty = $("#certainty").val();
if (extend === '0') {
if ($("#isSecond").val())
keywordsObj.isSecond = $("#isSecond").val();
if ($("#signType").val())
keywordsObj.signType = $("#signType").val();
if ($("#resolvePlan").val())
keywordsObj.resolvePlan = $("#resolvePlan").val();
if ($("#startDate").val())
keywordsObj.startDate = $("#startDate").val();
if ($("#endDate").val())
keywordsObj.endDate = $("#endDate").val();
if ($("#startUpdateDate").val())
keywordsObj.startUpdateDate = $("#startUpdateDate").val();
if ($("#endUpdateDate").val())
keywordsObj.endUpdateDate = $("#endUpdateDate").val();
if ($("#contractStartTime").val())
keywordsObj.contractStartTime = $("#contractStartTime").val();
if ($("#contractEndTime").val())
keywordsObj.contractEndTime = $("#contractEndTime").val();
if ($("#industryScene").val())
keywordsObj.industryScene = $("#industryScene").val();
2022-11-10 13:35:22 +00:00
if ($("#huizhiStart").val())
keywordsObj.huizhiStart = $("#huizhiStart").val();
if ($("#huizhiEnd").val())
keywordsObj.huizhiEnd = $("#huizhiEnd").val();
if ($("#huazhiStart").val())
keywordsObj.huazhiStart = $("#huazhiStart").val();
if ($("#huazhiEnd").val())
keywordsObj.huazhiEnd = $("#huazhiEnd").val();
if ($("#huasanStart").val())
keywordsObj.huasanStart = $("#huasanStart").val();
if ($("#huasanEnd").val())
keywordsObj.huasanEnd = $("#huasanEnd").val();
if ($("#otherStart").val())
keywordsObj.otherStart = $("#otherStart").val();
if ($("#otherEnd").val())
keywordsObj.otherEnd = $("#otherEnd").val();
2022-12-07 07:58:00 +00:00
if ($("#qstage").val())
keywordsObj.stage = $("#qstage").val();
2022-09-14 08:01:15 +00:00
}
if ($("#customer").val())
keywordsObj.customer = $("#customer").val();
if ($("#terminalCustomer").val())
keywordsObj.terminalCustomer = $("#terminalCustomer").val();
if ($("#principal").val())
keywordsObj.principal = $("#principal").val();
var keywords = "";
if (!$.isEmptyObject(keywordsObj)) {
keywords = JSON.stringify(keywordsObj);
}
console.log("keywords = " + keywords);
$("#keywords").val(keywords);
};
2021-10-29 10:15:36 +00:00
$(function () {
2022-08-18 06:50:47 +00:00
$("#extend").on("click", function () {
var extend = $("#extend").val();
if (extend === '0') {
$(".extendCondition").hide();
$('.expand-section').hide()
2022-08-18 06:50:47 +00:00
$("#extend").val(1);
$("#extend").text("扩展筛选项");
} else {
$(".extendCondition").show();
2022-12-08 13:44:08 +00:00
$('.expand-section').show();
2022-08-18 06:50:47 +00:00
$("#extend").val(0);
$("#extend").text("隐藏筛选项");
}
});
2021-10-29 10:15:36 +00:00
$("#submit-btn").on("click", function () {
$("#pageNumber").val(1);
2021-11-02 01:39:33 +00:00
setKeywords();
$("#listForm").attr("action","${base}/project/list");
$("#listForm").submit();
});
$("#submit-btn-export").on("click", function () {
setKeywords();
$("#listForm").attr("action","${base}/project/export");
$("#listForm").submit();
});
2022-09-02 03:22:31 +00:00
var $allCheck = $("#allCheck");// 全选复选框
var $idsCheck = $('[name=ids]:checkbox');// ID复选框
var $authorizeButton = $("#authorizeButton");// 批量按钮
// 全选
$allCheck.click(function() {
var isChecked = $allCheck.is(":checked");
if (isChecked == false) {
$authorizeButton.prop("disabled", true);
$idsCheck.prop("checked", false);
} else {
$authorizeButton.prop("disabled", false);
$idsCheck.prop("checked", true);
}
});
// 无复选框被选中时,批量按钮不可用
$idsCheck.click(function() {
var $idsChecked = $("[name='ids']:checked");
if ($idsChecked.length > 0) {
$authorizeButton.prop("disabled", false);
} else {
$authorizeButton.prop("disabled", true);
}
if($idsChecked.length == $idsCheck.length){
$allCheck.prop("checked", true);
}else {
$allCheck.prop("checked", false);
}
});
2021-11-02 01:39:33 +00:00
function setKeywords() {
var keywordsObj = {};
2022-08-18 06:50:47 +00:00
var extend = $("#extend").val();
keywordsObj.extend = extend;
2022-09-26 06:17:31 +00:00
if ($("#orderTypeStr").val())
keywordsObj.orderType = $("#orderTypeStr").val();
2022-08-12 07:55:28 +00:00
if ($("#projectNo").val())
keywordsObj.projectNo = $("#projectNo").val();
2021-10-29 10:15:36 +00:00
if ($("#name").val())
keywordsObj.name = $("#name").val();
if ($("#creatorName").val())
keywordsObj.creatorName = $("#creatorName").val();
if ($("#status").val())
keywordsObj.status = $("#status").val();
if ($("#approveStatus").val())
keywordsObj.approveStatus = $("#approveStatus").val();
if ($("#deptId").val())
keywordsObj.deptId = $("#deptId").val();
if ($("#type").val())
keywordsObj.type = $("#type").val();
2022-11-16 06:16:58 +00:00
if ($("#cooperateType").val())
keywordsObj.cooperateType = $("#cooperateType").val();
2022-08-12 07:55:28 +00:00
if ($("#underwrittenMode").val())
keywordsObj.underwrittenMode = $("#underwrittenMode").val();
if ($("#certainty").val())
keywordsObj.certainty = $("#certainty").val();
2022-08-18 06:50:47 +00:00
if (extend === '0') {
if ($("#isSecond").val())
keywordsObj.isSecond = $("#isSecond").val();
if ($("#signType").val())
keywordsObj.signType = $("#signType").val();
if ($("#resolvePlan").val())
keywordsObj.resolvePlan = $("#resolvePlan").val();
if ($("#startDate").val())
keywordsObj.startDate = $("#startDate").val();
if ($("#endDate").val())
keywordsObj.endDate = $("#endDate").val();
if ($("#startUpdateDate").val())
keywordsObj.startUpdateDate = $("#startUpdateDate").val();
if ($("#endUpdateDate").val())
keywordsObj.endUpdateDate = $("#endUpdateDate").val();
if ($("#contractStartTime").val())
keywordsObj.contractStartTime = $("#contractStartTime").val();
if ($("#contractEndTime").val())
keywordsObj.contractEndTime = $("#contractEndTime").val();
if ($("#industryScene").val())
keywordsObj.industryScene = $("#industryScene").val();
2022-11-10 13:35:22 +00:00
if ($("#huizhiStart").val())
keywordsObj.huizhiStart = $("#huizhiStart").val();
if ($("#huizhiEnd").val())
keywordsObj.huizhiEnd = $("#huizhiEnd").val();
if ($("#huazhiStart").val())
keywordsObj.huazhiStart = $("#huazhiStart").val();
if ($("#huazhiEnd").val())
keywordsObj.huazhiEnd = $("#huazhiEnd").val();
if ($("#huasanStart").val())
keywordsObj.huasanStart = $("#huasanStart").val();
if ($("#huasanEnd").val())
keywordsObj.huasanEnd = $("#huasanEnd").val();
if ($("#otherStart").val())
keywordsObj.otherStart = $("#otherStart").val();
if ($("#otherEnd").val())
keywordsObj.otherEnd = $("#otherEnd").val();
2022-08-18 06:50:47 +00:00
}
2022-08-12 07:55:28 +00:00
if ($("#customer").val())
keywordsObj.customer = $("#customer").val();
if ($("#terminalCustomer").val())
keywordsObj.terminalCustomer = $("#terminalCustomer").val();
if ($("#principal").val())
keywordsObj.principal = $("#principal").val();
2021-10-29 10:15:36 +00:00
var keywords = "";
if (!$.isEmptyObject(keywordsObj)) {
keywords = JSON.stringify(keywordsObj);
}
console.log("keywords = " + keywords);
$("#keywords").val(keywords);
2021-11-02 01:39:33 +00:00
}
2021-10-29 10:15:36 +00:00
2022-08-16 08:48:29 +00:00
generateFileupload("icon");
2021-10-29 10:15:36 +00:00
});
2022-09-02 03:22:31 +00:00
// 批量可见性
var authorize = function(url){
// var $authorizeButton = $("#authorizeButton");// 删除按钮
var ids = "";
$("input[name='ids']:checked").each(function(){
console.log("id: " + $(this).val());
ids +=$(this).val()+",";
console.log("ids: " + ids);
});
console.log("url: " + url + "?ids=" + ids);
location.href=url + "?ids=" + ids;
}
2022-08-16 08:48:29 +00:00
//会签
var huiQian = function () {
var projectId = $("#hqProjectId").val();
var fileUrl = $("#icon").val();
if (fileUrl == '') {
2022-10-26 09:52:48 +00:00
layer.alert("请上传会签单");
2022-08-16 08:48:29 +00:00
return;
}
var message = $("#doc-vld-ta-2").val();
if (message == '') {
2022-10-26 09:52:48 +00:00
layer.alert("请填写会签意见");
2022-08-16 08:48:29 +00:00
return;
}
var params = {
message: message,
fileUrl: fileUrl
};
$.ajax({
url: '${base}/project/skipTask/' + projectId,
data: JSON.stringify(params),
dataType: "json",
contentType: "application/json",
type: 'post',
async: false,
success: function (data) {
if (data.status == 0) {
2022-10-26 09:52:48 +00:00
layer.alert(data.msg);
2022-08-16 08:48:29 +00:00
window.location.href=window.location.href;
} else if (data.status == 1) {
2022-10-26 09:52:48 +00:00
layer.alert(data.msg);
2022-08-16 08:48:29 +00:00
}
}
});
};
2022-08-29 02:27:30 +00:00
/**
* 设置流程承接人 将自己审批的任务转交给别人
*/
var batchUpdateApprove = function () {
var adminId = $("#approveAdminSelect option:selected").val();
if (adminId == '') {
2022-10-26 09:52:48 +00:00
layer.alert("请选择承接账号");
2022-08-29 02:27:30 +00:00
return;
}
var params = {
adminId: adminId
};
$.ajax({
url: '${base}/project/batchUpdateApprove',
data: JSON.stringify(params),
dataType: "json",
contentType: "application/json",
type: 'post',
async: false,
success: function (data) {
if (data.status == 0) {
2022-10-26 09:52:48 +00:00
layer.alert(data.msg);
2022-08-29 02:27:30 +00:00
window.location.href=window.location.href;
} else if (data.status == 1) {
2022-10-26 09:52:48 +00:00
layer.alert(data.msg);
2022-08-29 02:27:30 +00:00
}
}
});
};
2022-12-07 07:58:00 +00:00
/**
* 项目阶段更新保存
*/
var stageRefreshSave = function () {
var stage = $("#stage").val();
console.info("=============="+stage);
var stageRemark = $("#stageRemark").val();
var projectId = $("#stageProjectId").val();
if (stage == '') {
layer.alert("请选择项目阶段");
return;
}
if (stageRemark == '') {
layer.alert("请填写当前进度描述");
return;
}
var params = {
stage: stage,
stageRemark: stageRemark
};
$.ajax({
url: '${base}/project/stageRefreshSave/' + projectId,
data: JSON.stringify(params),
dataType: "json",
contentType: "application/json",
type: 'post',
async: false,
success: function (data) {
if (data.status == 0) {
layer.alert(data.msg);
window.location.href=window.location.href;
} else if (data.status == 1) {
layer.alert(data.msg);
}
}
});
};
2022-08-29 02:27:30 +00:00
2022-08-16 08:48:29 +00:00
//上传会签单
var generateFileupload = function (name) {
var progressArea = $("#progress-area-" + name);//div
var progressText = $("#progress-text-" + name);//进度条提示
var progressBar = $(".am-progress-bar");//进度条
console.info(name);
$("#fileupload_button_" + name).fileupload({
url: "${base}/file/upload",
dataType: 'json',
acceptFileTypes: /(\.|\/)(gif|jpe?g|png|pdf)$/i,
maxFileSize: 20 * 1024 * 1024,
maxNumberOfFiles: 1,
messages: {
maxFileSize: '最大允许上传的图片大小为20M',
acceptFileTypes: '文件格式不正确请上传gif、jpg、jpeg、png、pdf类型的图片文件'
},
start: function (e) {
progressArea.removeClass("am-hide");
progressText.removeClass("am-text-danger");
progressText.html("");
progressBar.css("width", "0%");
},
done: function (e, data) {
console.log("--data-->"+ JSON.stringify(data.result.data));
//设置服务器返回的url
$("#" + name).val(data.result.data.url);
setTimeout(function () {
progressArea.addClass("am-hide");
}, 1500);
},
progressall: function (e, data) {
var progress = parseInt(data.loaded / data.total * 100, 10);
console.log(progress);
progressBar.css("width", progress + "%");
progressText.html(progress + "%");
},
error: function (jqXHR2, textStatus, errorThrown) {
progressArea.removeClass("am-hide");
progressText.addClass("am-text-danger");
progressText.html("imageupload error");
progressBar.css("width", "0%");
setTimeout(function () {
progressArea.addClass("am-hide");
}, 2000);
},
fail: function (jqXHR2, textStatus) {
progressArea.removeClass("am-hide");
progressText.addClass("am-text-danger");
progressText.html("imageupload fail");
progressBar.css("width", "0%");
setTimeout(function () {
progressArea.addClass("am-hide");
}, 2000);
},
processfail: function (e, data) {
var currentFile = data.files[data.index];
if (data.files.error && currentFile.error) {
parent.layer.msg(currentFile.error);
}
}
});
};
var deleteProject = function (id) {
if (window.confirm('确定要删除此项目吗?')) {
$.ajax({
url: '${base}/project/deleteProject/' + id,
dataType: "json",
async: false,
success: function (data) {
if (data.status == 0) {
2022-10-26 09:52:48 +00:00
layer.alert(data.msg);
window.location.href = window.location.href;
} else if (data.status == 1) {
2022-10-26 09:52:48 +00:00
layer.alert(data.msg);
}
}
});
}
2021-12-29 02:49:01 +00:00
};
2022-07-20 17:32:27 +00:00
var projectNo = function(id) {
console.log("~~~~~~~~~~~~~"+id);
$("#modelId").val(id);
// $('#myModal').modal('show');
$('#myModal').modal({
relatedElement: this,
onConfirm: function(id) {
console.log("提交");
projectNoCheck(id);
},
onCancel: function() {
console.log("取消");
}
});
};
2022-08-16 08:48:29 +00:00
var openHuiqianModal = function(id, name) {
console.log("~~~~~~~~~~~~~"+id);
$("#hqProjectId").val(id);
$("#hqProjectName").html(name);
$('#myModal2').modal({
relatedElement: this,
onConfirm: function(id) {
console.log("提交");
2022-08-29 02:27:30 +00:00
},
onCancel: function() {
console.log("取消");
}
});
};
var openChengjieModal = function() {
$('#myModal3').modal({
relatedElement: this,
onConfirm: function() {
console.log("提交");
2022-08-16 08:48:29 +00:00
},
onCancel: function() {
console.log("取消");
}
});
};
2022-12-07 07:58:00 +00:00
var stageRefreshModal = function(id) {
$.ajax({
url: "${base}/project/info/" + id,
dataType: "json",
contentType: "application/json",
type: 'post',
async: false,
success: function (data) {
$("#stage").val(data.data.stage);
$("#stageRemark").val(data.data.stageRemark);
}
});
$("#stageProjectId").val(id);
$('#myModal4').modal({
relatedElement: this,
onConfirm: function() {
console.log("提交");
},
onCancel: function() {
console.log("取消");
}
});
};
2022-07-20 17:32:27 +00:00
var projectNoCheck = function () {
var newProjectNo = $("#newProjectNo").val();
var id = $("#modelId").val();
$.ajax({
url: "${base}/project/editProjectNo?projectNo=" + newProjectNo + "&id=" + id,
type: "get",
dataType: "json",
async: false,
success: function (data) {
2022-10-26 09:52:48 +00:00
layer.alert(data.msg);
2022-07-20 17:32:27 +00:00
window.location.href=window.location.href;
}
});
};
2021-10-29 10:15:36 +00:00
</script>