Authored by LUOXC

refacot

... ... @@ -55,7 +55,7 @@
<div style="padding:20px;">
<input id="refund_tradeBillsId" type="hidden" readonly disabled/>
<input id="refund_uid" type="hidden" readonly disabled/>
<label> 单 编 号:</label>
<label>单编号:</label>
<input id="refund_orderCode" type="text" class="easyui-textbox" style="width:250px" readonly disabled/>
<br/><br/>
... ... @@ -63,7 +63,7 @@
<input id="refund_alipayAccount" type="text" class="easyui-textbox" style="width:250px" readonly disabled/>
<br/><br/>
<label> 款 金 额:</label>
<label>款金额:</label>
<input id="refund_amount" type="text" class="easyui-textbox" style="width:250px" readonly disabled/>
</div>
... ... @@ -79,17 +79,17 @@
<div style="padding:20px;">
<input id="mark_paid_tradeBillsId" type="hidden" />
<input id="mark_paid_uid" type="hidden" />
<label> 单 编 号:</label>
<label>单编号:</label>
<input id="mark_paid_orderCode" type="text" class="easyui-textbox" style="width:250px" readonly disabled/>
<br/><br/>
<label>付款渠道:</label>
<select class="easyui-combobox" id="mark_paid_sceneId" style="width:250px">
<option value="102" selected>支付宝</option>
<label>打款渠道:</label>
<select id="mark_paid_sceneId" class="easyui-combobox" style="width:250px">
<option value="102">支付宝</option>
<option value="103">银行卡</option>
</select>
<br/><br/>
<label> 款 金 额:</label>
<label>款金额:</label>
<input id="mark_paid_amount" type="text" class="easyui-textbox" style="width:250px" readonly disabled/>
</div>
... ... @@ -260,6 +260,7 @@ function openConfirmDialog(id,uid,orderCode,alipayAccount,amount) {
function openMarkPaidConfirmDialog(id,uid,orderCode,alipayAccount,amount) {
//重新赋值
$("#mark_paid_sceneId").combobox('setValue','102');
$("#mark_paid_tradeBillsId").val(id);
$("#mark_paid_uid").val(uid);
$("#mark_paid_orderCode").textbox('setValue',orderCode);
... ... @@ -307,7 +308,7 @@ function refundGo() {
function markPaidGo() {
var param={};
param.sceneId = $("#mark_paid_sceneId").val();
param.sceneId = $("#mark_paid_sceneId").combobox('getValue');
param.tradeBillsId = $("#mark_paid_tradeBillsId").val();
param.uid=$("#mark_paid_uid").val();
param.orderCode=$("#mark_paid_orderCode").val();
... ...