在单据界面 增加新增账户的按钮

This commit is contained in:
季圣华
2019-08-24 00:17:26 +08:00
parent d82cd28ef1
commit d106312334
3 changed files with 29 additions and 4 deletions

View File

@@ -100,8 +100,22 @@
width:135px; width:135px;
} }
#depotHeadDlg .add-org-btn{ #depotHeadDlg .account-list{
float: left; float: left;
width:30px; width:112px;
}
#depotHeadDlg .add-org-btn, #depotHeadDlg .add-account-btn{
float: left;
width:20px;
padding: 2px; padding: 2px;
}
#depotHeadDlg .other-money-list{
float: left;
width:122px;
}
#depotHeadDlg .other-money-ico{
padding-left: 5px;
} }

View File

@@ -1481,6 +1481,9 @@
}); });
$("#addCustomer").off("click").on("click",function(){ $("#addCustomer").off("click").on("click",function(){
supplierDlgFun("客户"); supplierDlgFun("客户");
});
$("#addAccount").off("click").on("click",function(){
alert("增加结算账户");
}); });
url = '/depotHead/addDepotHeadAndDetail'; url = '/depotHead/addDepotHeadAndDetail';

View File

@@ -125,7 +125,13 @@
<tr> <tr>
<td>结算账户:</td> <td>结算账户:</td>
<td style="padding:5px"> <td style="padding:5px">
<select name="AccountId" id="AccountId" style="width:110px;"></select> <div class="account-list">
<select name="AccountId" id="AccountId" style="width:110px;"></select>
</div>
<div class="add-account-btn">
<img id="addAccount" src="/js/easyui-1.3.5/themes/icons/edit_add.png"
style="cursor: pointer;" alt="增加结算账户" title="增加结算账户"/>
</div>
<img class="many-account-ico" src="/js/easyui-1.3.5/themes/icons/filelist.jpg" <img class="many-account-ico" src="/js/easyui-1.3.5/themes/icons/filelist.jpg"
style="display: none;"/> style="display: none;"/>
</td> </td>
@@ -135,7 +141,9 @@
</td> </td>
<td>采购费用:</td> <td>采购费用:</td>
<td style="padding:5px"> <td style="padding:5px">
<input id="OtherMoney" name="OtherMoney" style="width:120px;" readonly="readonly"/> <div class="other-money-list">
<input id="OtherMoney" name="OtherMoney" style="width:120px;" readonly="readonly"/>
</div>
<img class="other-money-ico" src="/js/easyui-1.3.5/themes/icons/filelist.jpg"/> <img class="other-money-ico" src="/js/easyui-1.3.5/themes/icons/filelist.jpg"/>
</td> </td>
<td></td> <td></td>