1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- const _Http = getApp().globalData.http;
- Page({
- data: {
- loading: true
- },
- onLoad(options) {
- console.log(options)
- if (options.id) this.setData({
- sa_itemgroupid: options.id
- })
- this.getDetail()
- },
- getDetail() {
- _Http.basic({
- "id": "20220926142403",
- "content": {
- "sa_itemgroupid": this.data.sa_itemgroupid
- }
- }).then(res => {
- console.log("商品详情", res)
- if (res.msg != '成功') return wx.showToast({
- title: res.msg,
- icon: "none"
- })
- this.setData({
- detail: res.data[0],
- loading: false
- })
- })
- },
- /* 加入购物车 */
- storage() {
- _Http.basic({
- "id": "20220926142403",
- "content": {
- "sa_itemgroupid": this.data.sa_itemgroupid
- }
- }).then(res => {
- console.log(res)
- if (res.msg != '成功') return wx.showToast({
- title: res.msg,
- icon: "none"
- })
- })
- },
- onReady() {
- }
- })
|