riku
2026-01-21 a2c5def7cf9562312a54216bc195a6ea071a26c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// pages/mUser/sceneauthentication/sceneauthentication.js
import $f from "../../../service/baserequest";
 
const app = getApp()
 
Page({
 
  /**
   * 页面的初始数据
   */
  data: {
    icon1: $f.baseIconUrl + 'res/companyinfo-1.png'
  },
 
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad(options) {
    this.setData({
      sceneType: app.globalData.userInfo.extension2
    })
    this.getOpenerEventChannel().on('acceptDataFromOpenerPage', (data) => {
      this.setData({
        authStatus: data.authStatus
      })
      if (data.barTitle) {
        wx.setNavigationBarTitle({
          title: data.barTitle,
        });
      }
    })
  },
 
  
 
  onSubmit(e) {
    console.log(e);
    const info = e.detail
 
  }
})