登陆参数问题

main
shuxiaoquan 9 months ago
parent 4f82cc1f8f
commit 4058f23cc9
  1. 2
      config.js
  2. 4
      ext.json
  3. 2
      manifest.json
  4. 7
      pages/login/index.vue

@ -15,7 +15,7 @@ export default {
* 可在超管后台-商城列表中查看10025 * 可在超管后台-商城列表中查看10025
*/ */
storeId: wx.getExtConfigSync().store_id? wx.getExtConfigSync().store_id : 10048, storeId: wx.getExtConfigSync().store_id? wx.getExtConfigSync().store_id : 10045,
// storeId: 10037, // storeId: 10037,

@ -1,7 +1,7 @@
{ {
"extEnable": true, "extEnable": true,
"extAppid": "wxa3127ed5c3542a28", "extAppid": "wx9f7e94fe11dc0c23",
"ext": { "ext": {
"store_id": 10048 "store_id": 10045
} }
} }

@ -92,7 +92,7 @@
"quickapp" : {}, "quickapp" : {},
/* */ /* */
"mp-weixin" : { "mp-weixin" : {
"appid" : "wxa3127ed5c3542a28", "appid" : "wx9f7e94fe11dc0c23",
"libVersion" : "latest", "libVersion" : "latest",
"setting" : { "setting" : {
// TLS // TLS

@ -84,8 +84,11 @@ export default {
// //
const scene = getSceneData(o) const scene = getSceneData(o)
// ID // ID
const refereeId = scene.refereeId ? scene.refereeId : scene.uid const refereeId = scene.refereeId ? scene.refereeId : (scene.uid?scene.uid:o.refereeId)
this.refereeId = refereeId this.refereeId = refereeId;
console.log(scene)
console.log(o)
console.log("refereeId",refereeId)
}, },
methods: { methods: {
toTextPage(n) { toTextPage(n) {

Loading…
Cancel
Save