| 1234567891011121314151617181920212223242526272829 |
- import common from '../../utils/util';
- import server from '../../utils/main';
- const app = getApp();
- Page({
- data: {
- },
- onLoad: function (options) {
- console.log(options);
- this.updateData(options);
- this.setData({
- Height: common.getSystemHeight(),
- });
- },
- updateData: function (param) {
- var that = this;
- server.getData('UpdateWXUsersAll?ProductID=' + param.ProductID
- + "&ProductUserID=" + param.ProductUserID
- + "&CurrentProductID=" + param.CurrentProductID
- + "&CurrentUserID=" + param.CurrentUserID
- + "&ProductBuyInfoID=" + param.ProductBuyInfoID
- + "&BuyType=" + param.BuyType, function (data) {
- if (data) {
- }
- });
- },
- })
|