...
|
...
|
@@ -408,8 +408,12 @@ webpackJsonp([74],[ |
|
|
// });
|
|
|
|
|
|
e.init();
|
|
|
|
|
|
new common.dropDown({ el: "#thirdType" });
|
|
|
if (item.couponsUseRuleVo.thirdType == '1'){
|
|
|
$("#weixin").show();
|
|
|
}else{
|
|
|
$("#weixin").hide();
|
|
|
}
|
|
|
});
|
|
|
|
|
|
// 查看操作记录
|
...
|
...
|
@@ -426,6 +430,15 @@ webpackJsonp([74],[ |
|
|
getOperationRecords(couponId);
|
|
|
});
|
|
|
|
|
|
$(document).on('change','#thirdType', function () {
|
|
|
var title = $(this).val();
|
|
|
if (title == '1'){
|
|
|
$("#weixin").show();
|
|
|
}else{
|
|
|
$("#weixin").hide();
|
|
|
}
|
|
|
});
|
|
|
|
|
|
function getOperationRecords(couponId) {
|
|
|
common.util.__ajax({
|
|
|
url: '/coupon/getOperationRecords',
|
...
|
...
|
|