mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 22:27:55 +08:00
优化代码
This commit is contained in:
parent
12f7f14820
commit
b25973e234
@ -12,20 +12,17 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入合同名称"
|
||||
v-model="contractChangeManageInfo.conditions.contractName" class=" form-control">
|
||||
<input type="text" placeholder="请输入合同名称" v-model="contractChangeManageInfo.conditions.contractName" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入合同编号"
|
||||
v-model="contractChangeManageInfo.conditions.contractCode" class=" form-control">
|
||||
<input type="text" placeholder="请输入合同编号" v-model="contractChangeManageInfo.conditions.contractCode" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入合同类型"
|
||||
v-model="contractChangeManageInfo.conditions.contractType" class=" form-control">
|
||||
<input type="text" placeholder="请输入合同类型" v-model="contractChangeManageInfo.conditions.contractType" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-1">
|
||||
@ -72,6 +69,7 @@
|
||||
<th class="text-center">乙方</th>
|
||||
<th class="text-center">变更类型</th>
|
||||
<th class="text-center">变更人</th>
|
||||
<th class="text-center">申请时间</th>
|
||||
<th class="text-center">说明</th>
|
||||
<th class="text-center">状态</th>
|
||||
<th class="text-right">操作</th>
|
||||
@ -86,16 +84,15 @@
|
||||
<td class="text-center">{{contract.partyB}}</td>
|
||||
<td class="text-center">{{contract.planTypeName}}</td>
|
||||
<td class="text-center">{{contract.changePersonName}}</td>
|
||||
<td class="text-center">{{contract.createTime}}</td>
|
||||
<td class="text-center">{{contract.remark}}</td>
|
||||
<td class="text-center">{{contract.stateName}}</td>
|
||||
<td class="text-right">
|
||||
<div class="btn-group" v-if="contract.state == '11'">
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_openDeleteContractModel(contract)">取消</button>
|
||||
<button class="btn-white btn btn-xs" v-on:click="_openDeleteContractModel(contract)">取消</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_toContractDetails(contract)">明细</button>
|
||||
<button class="btn-white btn btn-xs" v-on:click="_toContractDetails(contract)">明细</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -12,20 +12,17 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入合同名称"
|
||||
v-model="contractManageInfo.conditions.contractNameLike" class=" form-control">
|
||||
<input type="text" placeholder="请输入合同名称" v-model="contractManageInfo.conditions.contractNameLike" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入合同编号"
|
||||
v-model="contractManageInfo.conditions.contractCode" class=" form-control">
|
||||
<input type="text" placeholder="请输入合同编号" v-model="contractManageInfo.conditions.contractCode" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="form-group">
|
||||
<input type="text" placeholder="请输入合同类型"
|
||||
v-model="contractManageInfo.conditions.contractType" class=" form-control">
|
||||
<input type="text" placeholder="请输入合同类型" v-model="contractManageInfo.conditions.contractType" class=" form-control">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-1">
|
||||
@ -46,7 +43,7 @@
|
||||
<div class="ibox-title">
|
||||
<h5>合同信息</h5>
|
||||
<div class="ibox-tools" style="top:10px;">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="ibox-content">
|
||||
@ -62,6 +59,7 @@
|
||||
<th class="text-center">合同金额</th>
|
||||
<th class="text-center">开始时间</th>
|
||||
<th class="text-center">结束时间</th>
|
||||
<th class="text-center">起草时间</th>
|
||||
<th class="text-center">状态</th>
|
||||
<th class="text-center">操作</th>
|
||||
</tr>
|
||||
@ -77,22 +75,19 @@
|
||||
<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">{{contract.createTime}}</td>
|
||||
<td class="text-center">{{contract.stateName}}</td>
|
||||
<td class="text-center">
|
||||
<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_openContractFee(contract)">费用</button>
|
||||
<button class="btn-white btn btn-xs" v-on:click="_openContractFee(contract)">费用</button>
|
||||
</div>
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_viewContract(contract)">查看
|
||||
<button class="btn-white btn btn-xs" v-on:click="_viewContract(contract)">查看
|
||||
</button>
|
||||
<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_printContract(contract)">打印</button>
|
||||
<button class="btn-white btn btn-xs" v-on:click="_printContract(contract)">打印</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs"
|
||||
v-on:click="_openDeleteContractModel(contract)">删除</button>
|
||||
<button class="btn-white btn btn-xs" v-on:click="_openDeleteContractModel(contract)">删除</button>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user