diff --git a/.gitignore b/.gitignore index 0670590a..43dda18e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ deploy.sh .hbuilderx/ .vscode/ **/.DS_Store -.env yarn.lock package-lock.json *.keystore diff --git a/pages/commission/components/account-info.vue b/pages/commission/components/account-info.vue index 8595aa3b..d904b8df 100644 --- a/pages/commission/components/account-info.vue +++ b/pages/commission/components/account-info.vue @@ -16,7 +16,7 @@ /> - + 查看明细 diff --git a/sheep/api/migration/third.js b/sheep/api/migration/third.js index 85db8cc3..5c811c14 100644 --- a/sheep/api/migration/third.js +++ b/sheep/api/migration/third.js @@ -18,6 +18,7 @@ export default { }), // 获取微信小程序码 + // TODO @puhui999:这个接口,挪到 /Users/yunai/Java/yudao-mall-uniapp/sheep/api/member/social.js getWxacode: async (path, query) => { return await request({ url: '/member/social-user/wxa-qrcode', diff --git a/sheep/platform/share.js b/sheep/platform/share.js index a5d1b0af..9ab2a3a6 100644 --- a/sheep/platform/share.js +++ b/sheep/platform/share.js @@ -65,7 +65,12 @@ const getShareInfo = ( return shareInfo; }; -// 构造spm分享参数 +/** + * 构造 spm 分享参数 + * + * @param params json 格式,其中包含:1)shareId 分享用户的编号;2)page 页面类型;3)query 页面 ID(参数);4)platform 平台类型;5)from 分享来源类型。 + * @return 分享串 `spm=${shareId}.${page}.${query}.${platform}.${from}` + */ const buildSpmQuery = (params) => { const user = $store('user'); let shareId = '0'; // 设置分享者用户ID @@ -87,7 +92,7 @@ const buildSpmQuery = (params) => { if (typeof params.from !== 'undefined') { from = platformMap.indexOf(params.from) + 1; } - //spmParams = ... 可按需扩展 + // spmParams = ... 可按需扩展 return `spm=${shareId}.${page}.${query}.${platform}.${from}`; }; diff --git a/sheep/store/app.js b/sheep/store/app.js index 573c2370..55d09978 100644 --- a/sheep/store/app.js +++ b/sheep/store/app.js @@ -28,7 +28,6 @@ const app = defineStore({ }, bind_mobile: 0, // 登陆后绑定手机号提醒 (弱提醒,可手动关闭) }, - chat: {}, template: { // 店铺装修模板 basic: {}, // 基本信息 @@ -73,7 +72,7 @@ const app = defineStore({ this.platform = { share: { methods: ["poster", "link"], - linkAddress: "https://shopro.sheepjs.com/#/", + linkAddress: "http://127.0.0.1:3000", // TODO 芋艿:可以考虑改到 .env 那 posterInfo: { "user_bg": "/static/img/shop/config/user-poster-bg.png", "goods_bg": "/static/img/shop/config/goods-poster-bg.png", @@ -82,10 +81,6 @@ const app = defineStore({ }, bind_mobile: 0 }; - this.chat = { - chat_domain: "https://api.shopro.sheepjs.com/chat", - room_id: "admin" - } this.has_wechat_trade_managed = 0; // 加载主题 diff --git a/sheep/store/user.js b/sheep/store/user.js index 195dade1..a4c1a7f9 100644 --- a/sheep/store/user.js +++ b/sheep/store/user.js @@ -80,15 +80,6 @@ const user = defineStore({ }); }, - // 添加分享记录 - // TODO 芋艿:整理下; - // async addShareLog(params) { - // const { - // error - // } = await userApi.addShareLog(params); - // if (error === 0) uni.removeStorageSync('shareLog'); - // }, - // 设置 token setToken(token = '', refreshToken = '') { if (token === '') { @@ -153,14 +144,6 @@ const user = defineStore({ // 绑定推广员 $share.bindBrokerageUser() - // 添加分享记录 - // TODO 芋艿:整理下; - // const shareLog = uni.getStorageSync('shareLog'); - // if (!isEmpty(shareLog)) { - // this.addShareLog({ - // ...shareLog, - // }); - // } }, // 登出系统