MicroCommunityWeb/public/pages/property/contractCreateFee/contractCreateFee.html
2022-04-22 00:24:24 +08:00

118 lines
7.1 KiB
HTML
Executable File

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5><vc:i18n name="查询条件" namespace="contractCreateFee"></vc:i18n></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> <vc:i18n name="查询" namespace="contractCreateFee"></vc:i18n>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><vc:i18n name="合同信息" namespace="contractCreateFee"></vc:i18n></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> <vc:i18n name="批量创建" namespace="contractCreateFee"></vc:i18n>
</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"><vc:i18n name="合同名称" namespace="contractCreateFee"></vc:i18n></th>
<th class="text-center"><vc:i18n name="合同编号" namespace="contractCreateFee"></vc:i18n></th>
<th class="text-center"><vc:i18n name="父合同编号" namespace="contractCreateFee"></vc:i18n></th>
<th class="text-center"><vc:i18n name="合同类型" namespace="contractCreateFee"></vc:i18n></th>
<th class="text-center"><vc:i18n name="乙方" namespace="contractCreateFee"></vc:i18n></th>
<th class="text-center"><vc:i18n name="合同金额" namespace="contractCreateFee"></vc:i18n></th>
<th class="text-center"><vc:i18n name="开始时间" namespace="contractCreateFee"></vc:i18n></th>
<th class="text-center"><vc:i18n name="结束时间" namespace="contractCreateFee"></vc:i18n></th>
<th class="text-center"><vc:i18n name="操作" namespace="contractCreateFee"></vc:i18n></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)"><vc:i18n name="欠费缴费" namespace="contractCreateFee"></vc:i18n></button>
</div>
<div class="btn-group" >
<button class="btn-white btn btn-xs"
v-on:click="_viewContract(contract)"><vc:i18n name="详情" namespace="contractCreateFee"></vc:i18n>
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openViewRoomCreateFee(contract)"><vc:i18n name="查看费用" namespace="contractCreateFee"></vc:i18n>
</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>