Authored by cailing

本来生活添加js配置

... ... @@ -11,7 +11,7 @@ require("js/passport/entry");
require("js/product/entry");
require("js/me/entry");
require("js/cart/entry");
require("js/life/entry");
module.exports = yohobuy;
});
... ... @@ -12320,3 +12320,60 @@ $confim.on('touchend', '.confim', function() {
});
});
define("js/life/entry", ["jquery"], function(require, exports, module){
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
require("js/life/login");
require("js/life/coupon");
});
define("js/life/login", ["jquery"], function(require, exports, module){
var $ = require("jquery"),
tel = $('.btn-input').val();
$('.notice').click(function() {
$('.code').show();
$('.mark').show();
});
$('.close').click(function() {
$('.code').hide();
$('.mark').hide();
});
function get(tel) {
$.ajax({
type: 'get',
url: '/index/life/sendCoupon',
dataType: 'json',
data: {
tel: tel
},
success: function(data) {
if (data.code === 200) {
location.href = '/life/coupon' + '?' + 'code' + '=' + data.data;
} else {
alert(data.message);
}
}
});
}
$('.coupon-btn').click(function() {
get(tel);
});
});
define("js/life/coupon", ["jquery"], function(require, exports, module){
var $ = require("jquery"),
code = window.location.search;
var arr = code.split('=');
$('.coupon-input').val(arr[1]);
});
... ...
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
... ... @@ -10,5 +10,5 @@ require('./js/passport/entry');
require('./js/product/entry');
require('./js/me/entry');
require('./js/cart/entry');
require('./js/life/entry');
module.exports = yohobuy;
... ...
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
require('./login');
require('./coupon');
... ...