riku
2022-09-14 2206df0da6499846c78a358cf95ca33c218a5c5d
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
// pages/m_service/p_scheduledetail/p_scheduledetail.js
Page({
 
  /**
   * 页面的初始数据
   */
  data: {
    steps:[{
      index: '01',
      title: ['前往环', '保部门'],
      content: '前往相关环保部门提供相关证件,可进行营业执照续期。'
    },{
      index: '02',
      title: ['营业执', '照续期'],
      content: '前往相关环保部门提供相关证件,可进行营业执照续期。'
    },{
      index: '03',
      title: ['营业执', '照续期'],
      content: '前往相关环保部门提供相关证件,可进行营业执照续期。'
    }]
  },
 
  /**
   * 生命周期函数--监听页面加载
   */
  onLoad(options) {
 
  },
 
  onSubmit() {
    wx.navigateTo({
      url: '/pages/m_service/p_schedule/p_schedule',
      success: (result) => {},
    })
  }
})