1 Star 1 Fork 0

特快云/wechat-app-mall

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.js 4.00 KB
一键复制 编辑 原始数据 按行查看 历史
javazj 提交于 2018-09-11 13:58 . 增加拼团功能
//app.js
App({
onLaunch: function () {
var that = this;
// 获取商城名称
wx.request({
url: 'https://api.it120.cc/'+ that.globalData.subDomain +'/config/get-value',
data: {
key: 'mallName'
},
success: function(res) {
if (res.data.code == 0) {
wx.setStorageSync('mallName', res.data.data.value);
}
}
})
wx.request({
url: 'https://api.it120.cc/' + that.globalData.subDomain + '/score/send/rule',
data: {
code: 'goodReputation'
},
success: function (res) {
if (res.data.code == 0) {
that.globalData.order_reputation_score = res.data.data[0].score;
}
}
})
wx.request({
url: 'https://api.it120.cc/' + that.globalData.subDomain + '/config/get-value',
data: {
key: 'recharge_amount_min'
},
success: function (res) {
if (res.data.code == 0) {
that.globalData.recharge_amount_min = res.data.data.value;
}
}
})
// 获取砍价设置
wx.request({
url: 'https://api.it120.cc/' + that.globalData.subDomain + '/shop/goods/kanjia/list',
data: {},
success: function (res) {
if (res.data.code == 0) {
that.globalData.kanjiaList = res.data.data.result;
}
}
})
// 判断是否登录
let token = wx.getStorageSync('token');
if (!token) {
that.goLoginPageTimeOut()
return
}
wx.request({
url: 'https://api.it120.cc/' + that.globalData.subDomain + '/user/check-token',
data: {
token: token
},
success: function (res) {
if (res.data.code != 0) {
wx.removeStorageSync('token')
that.goLoginPageTimeOut()
}
}
})
},
sendTempleMsg: function (orderId, trigger, template_id, form_id, page, postJsonString){
var that = this;
wx.request({
url: 'https://api.it120.cc/' + that.globalData.subDomain + '/template-msg/put',
method:'POST',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
data: {
token: wx.getStorageSync('token'),
type:0,
module:'order',
business_id: orderId,
trigger: trigger,
template_id: template_id,
form_id: form_id,
url:page,
postJsonString: postJsonString
},
success: (res) => {
//console.log('*********************');
//console.log(res.data);
//console.log('*********************');
}
})
},
sendTempleMsgImmediately: function (template_id, form_id, page, postJsonString) {
var that = this;
wx.request({
url: 'https://api.it120.cc/' + that.globalData.subDomain + '/template-msg/put',
method: 'POST',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
data: {
token: wx.getStorageSync('token'),
type: 0,
module: 'immediately',
template_id: template_id,
form_id: form_id,
url: page,
postJsonString: postJsonString
},
success: (res) => {
console.log(res.data);
}
})
},
goLoginPageTimeOut: function () {
setTimeout(function(){
wx.navigateTo({
url: "/pages/authorize/index"
})
}, 1000)
},
globalData:{
userInfo:null,
subDomain: "tz", // 如果你的域名是: https://api.it120.cc/abcd 那么这里只要填写 abcd
version: "4.0.0",
shareProfile: '百款精品商品,总有一款适合您' // 首页转发的时候话术
}
/*
根据自己需要修改下单时候的模板消息内容设置,可增加关闭订单、收货时候模板消息提醒;
1、/pages/to-pay-order/index.js 中已添加关闭订单、商家发货后提醒消费者;
2、/pages/order-details/index.js 中已添加用户确认收货后提供用户参与评价;评价后提醒消费者好评奖励积分已到账;
3、请自行修改上面几处的模板消息ID,参数为您自己的变量设置即可。
*/
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/kmtky/wechat-app-mall.git
git@gitee.com:kmtky/wechat-app-mall.git
kmtky
wechat-app-mall
wechat-app-mall
master

搜索帮助