...
|
...
|
@@ -40,14 +40,28 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
|
|
|
// 生成兑换码
|
|
|
$(document).on('click', ".create-code", function () {
|
|
|
Layer.confirm('确认生成兑换码吗', {
|
|
|
btn: ['确认','取消'] //按钮
|
|
|
}, function(index){
|
|
|
// Layer.confirm('确认生成兑换码吗', {
|
|
|
// btn: ['确认','取消'] //按钮
|
|
|
// }, function(index){
|
|
|
// Backend.api.ajax({
|
|
|
// url: $.fn.bootstrapTable.defaults.extend.create_code_url,
|
|
|
// }, function () {
|
|
|
// table.bootstrapTable('refresh');
|
|
|
// Layer.close(index);
|
|
|
// });
|
|
|
// });
|
|
|
Layer.prompt({title: __('请输入生成数量'), formType: 0}, function (value, index) {
|
|
|
Backend.api.ajax({
|
|
|
url: $.fn.bootstrapTable.defaults.extend.create_code_url,
|
|
|
data: {
|
|
|
number:value
|
|
|
},
|
|
|
}, function () {
|
|
|
table.bootstrapTable('refresh');
|
|
|
Layer.close(index);
|
|
|
}, function (data, ret) {
|
|
|
Layer.msg(ret.msg);
|
|
|
return false;
|
|
|
});
|
|
|
});
|
|
|
});
|
...
|
...
|
|