变更待办

This commit is contained in:
his-uncles-father 2021-04-01 20:45:54 +08:00
parent 99d65ec59a
commit 8e3d0debe0
2 changed files with 6 additions and 0 deletions

View File

@ -87,6 +87,9 @@
<button class="btn-white btn btn-xs"
v-on:click="_openEditContractModel(contract)">修改</button>
</div> -->
<button class="btn-white btn btn-xs"
v-on:click="_openEditContractModel(contract)">查看
</button>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_printContract(contract)">打印</button>

View File

@ -80,6 +80,9 @@
},
_printContract: function (_contract) {
window.open("/print.html#/pages/admin/printContract?contractTypeId=" + _contract.contractType+"&contractId="+_contract.contractId);
},
_viewContract:function(_contract){
vc.jumpToPage("/admin.html#/pages/admin/contractDetailView?contractId="+_contract.contractId);
}
}
});