123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- define(['core', 'tpl'], function(core, tpl) {
- var modal = {};
- modal.init = function(fromDetail) {
- if (typeof fromDetail === undefined) {
- fromDetail = true
- }
- modal.fromDetail = fromDetail;
- $('.order-cancel select').unbind('change').change(function() {
- var orderid = $(this).data('orderid');
- var val = $(this).val();
- if (val == '') {
- return
- }
- FoxUI.confirm('确认要取消该订单吗?', '提示', function() {
- modal.cancel(orderid, val, true)
- })
- });
- $('.order-delete').unbind('click').click(function() {
- var orderid = $(this).data('orderid');
- FoxUI.confirm('确认要删除该订单吗?', '提示', function() {
- modal.delete(orderid, 1)
- })
- });
- $('.order-deleted').unbind('click').click(function() {
- var orderid = $(this).data('orderid');
- FoxUI.confirm('确认要彻底删除该订单吗?', '提示', function() {
- modal.delete(orderid, 2)
- })
- });
- $('.order-recover').unbind('click').click(function() {
- var orderid = $(this).data('orderid');
- FoxUI.confirm('确认要恢复该订单吗?', '提示', function() {
- modal.delete(orderid, 0)
- })
- });
- $('.order-submoney').unbind('click').click(function() {
- var orderid = $(this).data('orderid');
- modal.submoney(orderid);
- });
- $('.order-finish').unbind('click').click(function() {
- var orderid = $(this).data('orderid');
- FoxUI.confirm('确认已收到货了吗?', '提示', function() {
- modal.finish(orderid)
- })
- });
- $('.order-verify').unbind('click').click(function() {
- var orderid = $(this).data('orderid');
- var verifycode = $(this).closest(".fui-list-group").data('verifycode');
- modal.verify(orderid, verifycode)
- })
- };
- modal.cancel = function(id, remark) {
- core.json('order/op/cancel', {
- id: id,
- remark: remark
- }, function(pay_json) {
- if (pay_json.status == 1) {
- if (modal.fromDetail) {
- location.href = core.getUrl('order')
- } else {
- $(".order-item[data-orderid='" + id + "']").remove()
- }
- return
- }
- FoxUI.toast.show(pay_json.result)
- }, true, true)
- };
- modal.delete = function(id, userdeleted) {
- core.json('order/op/delete', {
- id: id,
- userdeleted: userdeleted
- }, function(pay_json) {
- if (pay_json.status == 1) {
- if (modal.fromDetail) {
- location.href = core.getUrl('order')
- } else {
- $(".order-item[data-orderid='" + id + "']").remove()
- }
- return
- }
- FoxUI.toast.show(pay_json.result)
- }, true, true)
- };
-
- modal.submoney = function(id) {
- core.json('order/op/submoney', {
- id: id
- }, function(pay_json) {
- if (pay_json.status == 1) {
- location.href = location.href;
- return
- }
- FoxUI.toast.show(pay_json.result)
- }, true, true)
- };
- modal.finish = function(id) {
- core.json('order/op/finish', {
- id: id
- }, function(pay_json) {
- if (pay_json.status == 1) {
- location.href = pay_json.result.url;
- return
- }
- FoxUI.toast.show(pay_json.result)
- }, true, true)
- };
- modal.verify = function(orderid, verifycode) {
- console.log(verifycode);
- container = new FoxUIModal({
- content: $(".order-verify-hidden").html(),
- extraClass: "popup-modal",
- maskClick: function() {
- container.close()
- }
- });
- container.show();
- if ($(".code_box")) {
- $('.verify-pop').find('.code_box').unbind('click').click(function() {
- container.close()
- })
- } else {
- $('.verify-pop').find('.close').unbind('click').click(function() {
- container.close()
- })
- }
- core.json('verify/qrcode', {
- id: orderid
- }, function(ret) {
- if (ret.status == 0) {
- FoxUI.alert('生成出错,请刷新重试!');
- return
- }
- var time = +new Date();
- $('.verify-pop').find('.qrimg').attr('src', ret.result.url + "?timestamp=" + time).show();
- if (verifycode) {
- if (verifycode.toString().length == 9) {
- var verifycode1 = verifycode.toString().substr(0, 3);
- var verifycode2 = verifycode.toString().substr(3, 3);
- var verifycode3 = verifycode.toString().substr(6, 3);
- $('.verify-pop').find(".cav_code").html(verifycode1 + " " + verifycode2 + " " + verifycode3).show()
- } else {
- var verifycode1 = verifycode.toString().substr(0, 4);
- var verifycode2 = verifycode.toString().substr(4, 4);
- $('.verify-pop').find(".cav_code").html(verifycode1 + " " + verifycode2).show()
- }
- }
- }, false, true)
- };
- return modal
- });
|