MicroCommunityWeb/public/pages/property/contractCreateFee/contractCreateFee.html

145 lines
8.3 KiB
HTML
Executable File

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5><span><vc:i18n name="查询条件" namespace="contractCreateFee"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
<!-- <button type="button" class="btn btn-link btn-sm" style="margin-right:10px;"
v-on:click="_moreCondition()">{{contractCreateFeeInfo.moreCondition == true?'隐藏':'更多'}}
</button> -->
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入合同名称','contractCreateFee')"
v-model="contractCreateFeeInfo.conditions.contractName" class=" form-control">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入合同编号','contractCreateFee')"
v-model="contractCreateFeeInfo.conditions.contractCode" class=" form-control">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入合同类型','contractCreateFee')"
v-model="contractCreateFeeInfo.conditions.contractType" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryRoomMethod()">
<i class="fa fa-search"></i>
<span><vc:i18n name="查询" namespace="contractCreateFee"></vc:i18n></span>
</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_resetRoomMethod()">
<i class="fa fa-repeat"></i>
<span><vc:i18n name="重置" namespace="contractCreateFee"></vc:i18n></span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="合同信息" namespace="contractCreateFee"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
v-on:click="_openContractCreateFeeAddModal(null,true)">
<i class="fa fa-plus"></i>
<span><vc:i18n name="批量创建" namespace="contractCreateFee"></vc:i18n></span>
</button>
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" style="margin-top:10px"
data-page-size="10">
<thead>
<tr>
<th class="text-center">
<span><vc:i18n name="合同名称" namespace="contractCreateFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="合同编号" namespace="contractCreateFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="父合同编号" namespace="contractCreateFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="合同类型" namespace="contractCreateFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="乙方" namespace="contractCreateFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="合同金额" namespace="contractCreateFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="开始时间" namespace="contractCreateFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="结束时间" namespace="contractCreateFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="操作" namespace="contractCreateFee"></vc:i18n></span>
</th>
</tr>
</thead>
<tbody>
<tr v-for="contract in contractCreateFeeInfo.contracts">
<td class="text-center">{{contract.contractName}}</td>
<td class="text-center">{{contract.contractCode}}</td>
<td class="text-center">
{{contract.parentContractCode?contract.parentContractCode:'-'}}
</td>
<td class="text-center">{{contract.contractTypeName}}</td>
<td class="text-center">{{contract.bContacts}}</td>
<td class="text-center">{{contract.amount}}</td>
<td class="text-center">{{contract.startTime}}</td>
<td class="text-center">{{contract.endTime}}</td>
<td class="text-center">
<div class="btn-group" v-if="contract.state != '2002'">
<button class="btn-white btn btn-xs"
v-on:click="_toOwnerPayFee(contract)">
<span><vc:i18n name="欠费缴费" namespace="contractCreateFee"></vc:i18n></span>
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_viewContract(contract)">
<span><vc:i18n name="详情" namespace="contractCreateFee"></vc:i18n></span>
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openViewRoomCreateFee(contract)">
<span><vc:i18n name="查看费用" namespace="contractCreateFee"></vc:i18n></span>
</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
<vc:create path="property/contractCreateFeeAdd"></vc:create>
</div>