This website works better with JavaScript.
首頁
探索
說明
註冊
登入
weapp
/
C
關註
8
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
66
Wiki
Activity
瀏覽代碼
update
tags/2.2.4
Stormeye.Wu
6 年之前
父節點
070c941713
當前提交
5421a94882
共有
2 個文件被更改
,包括
5 次插入
和
1 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
common/common.js
+1
-0
pages/coupons/details/index.js
+ 4
- 1
common/common.js
查看文件
@@ -163,7 +163,10 @@ const func = {
"token": app.globalData.token
},
method: "Post",
data: JSON.stringify({"couponId": couponId}),
data: {
couponId: couponId,
token: app.globalData.token
},
success: function (res) {
resolve(res)
},
+ 1
- 0
pages/coupons/details/index.js
查看文件
@@ -20,6 +20,7 @@ Page({
wx.showLoading({
title: '加载中...',
})
console.log(this.data.couponId)
Common.orderSave(''+this.data.couponId)
.then(res => {
wx.hideLoading();
Write
Preview
Loading…
取消
儲存