|
@@ -90,6 +90,26 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</li>
|
|
|
+ <li class="f_item">
|
|
|
+ <div class="box">
|
|
|
+ <div class="f_label">
|
|
|
+ <span>发行日期: </span>
|
|
|
+ </div>
|
|
|
+ <div class="box_flex f_content">
|
|
|
+ <span id="add_time_str"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ <li class="f_item">
|
|
|
+ <div class="box">
|
|
|
+ <div class="f_label">
|
|
|
+ <span>兑换日期: </span>
|
|
|
+ </div>
|
|
|
+ <div class="box_flex f_content">
|
|
|
+ <span id="exchange_time_str"></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
<li class="f_item">
|
|
|
<div class="box">
|
|
|
<div class="f_label">
|
|
@@ -534,6 +554,8 @@
|
|
|
{field:'pwd', title:'提货密码', width:40,sortable:false},
|
|
|
{field:'coding_num', title:'验证码', width:40,sortable:false},
|
|
|
{field:'coupon_coding', title:'礼品券编号', width:40,sortable:false},
|
|
|
+ {field:'add_time_str', title:'发行日期', width:40,sortable:false},
|
|
|
+ {field:'exchange_time_str', title:'兑换日期', width:40,sortable:false},
|
|
|
{field:'expire_time', title:'过期时间', width:40,sortable:true,formatter: function(value, row){
|
|
|
return row.expire_time_str;
|
|
|
}},
|
|
@@ -555,6 +577,8 @@
|
|
|
$('#gift_num').html(data.coupon_coding);
|
|
|
$('#coding_num').html(data.coding_num);
|
|
|
$('#expreid_time').html(data.expire_time_str);
|
|
|
+ $('#add_time_str').html(data.add_time_str);
|
|
|
+ $('#exchange_time_str').html(data.exchange_time_str);
|
|
|
$('#setStatus').combobox('setValue', row.status);
|
|
|
|
|
|
|