|
|
|
@ -347,7 +347,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
|
|
Fast.api.open(`shopro/coupon/select?multiple=true&status=normal&use_scope=goods&ids=${ids.join(',')}`, "选择商品券", { |
|
|
|
|
callback(data) { |
|
|
|
|
console.log(JSON.parse(JSON.stringify(data))) |
|
|
|
|
form.model.coupon_rules.programme_1 = data.data; |
|
|
|
|
form.model.coupon_rules.programme_1 = JSON.parse(JSON.stringify(data)); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
@ -360,7 +360,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
|
|
Fast.api.open(`shopro/coupon/select?multiple=true&status=normal&use_scope=goods&ids=${ids.join(',')}`, "选择商品券", { |
|
|
|
|
callback(data) { |
|
|
|
|
console.log(JSON.parse(JSON.stringify(data))) |
|
|
|
|
form.model.coupon_rules.programme_2 = data.data; |
|
|
|
|
form.model.coupon_rules.programme_2 = JSON.parse(JSON.stringify(data)); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|