go
This commit is contained in:
66
miniprogramPre/pages/about/index.js
Normal file
66
miniprogramPre/pages/about/index.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/about/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
||||
3
miniprogramPre/pages/about/index.json
Normal file
3
miniprogramPre/pages/about/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
2
miniprogramPre/pages/about/index.wxml
Normal file
2
miniprogramPre/pages/about/index.wxml
Normal file
@@ -0,0 +1,2 @@
|
||||
<!--pages/about/index.wxml-->
|
||||
<text>pages/about/index.wxml</text>
|
||||
1
miniprogramPre/pages/about/index.wxss
Normal file
1
miniprogramPre/pages/about/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/about/index.wxss */
|
||||
66
miniprogramPre/pages/chapters/index.js
Normal file
66
miniprogramPre/pages/chapters/index.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/chapters/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
||||
3
miniprogramPre/pages/chapters/index.json
Normal file
3
miniprogramPre/pages/chapters/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
2
miniprogramPre/pages/chapters/index.wxml
Normal file
2
miniprogramPre/pages/chapters/index.wxml
Normal file
@@ -0,0 +1,2 @@
|
||||
<!--pages/chapters/index.wxml-->
|
||||
<text>pages/chapters/index.wxml</text>
|
||||
1
miniprogramPre/pages/chapters/index.wxss
Normal file
1
miniprogramPre/pages/chapters/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/chapters/index.wxss */
|
||||
17
miniprogramPre/pages/index/index.js
Normal file
17
miniprogramPre/pages/index/index.js
Normal file
@@ -0,0 +1,17 @@
|
||||
const mp = require('miniprogram-render')
|
||||
const getBaseConfig = require('../base.js')
|
||||
const config = require('../../config')
|
||||
|
||||
function init(window, document) {require('../../common/index.js')(window, document)}
|
||||
|
||||
const baseConfig = getBaseConfig(mp, config, init)
|
||||
|
||||
Component({
|
||||
...baseConfig.base,
|
||||
methods: {
|
||||
...baseConfig.methods,
|
||||
|
||||
|
||||
|
||||
},
|
||||
})
|
||||
7
miniprogramPre/pages/index/index.json
Normal file
7
miniprogramPre/pages/index/index.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"navigationBarTitleText": "Soul创业实验",
|
||||
"enablePullDownRefresh": false,
|
||||
"usingComponents": {
|
||||
"element": "miniprogram-element"
|
||||
}
|
||||
}
|
||||
1
miniprogramPre/pages/index/index.wxml
Normal file
1
miniprogramPre/pages/index/index.wxml
Normal file
@@ -0,0 +1 @@
|
||||
<page-meta root-font-size="{{rootFontSize}}" page-style="{{pageStyle}}"></page-meta><element wx:if="{{pageId}}" class="{{bodyClass}}" style="{{bodyStyle}}" data-private-node-id="e-body" data-private-page-id="{{pageId}}" ></element>
|
||||
0
miniprogramPre/pages/index/index.wxss
Normal file
0
miniprogramPre/pages/index/index.wxss
Normal file
66
miniprogramPre/pages/match/index.js
Normal file
66
miniprogramPre/pages/match/index.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/match/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
||||
3
miniprogramPre/pages/match/index.json
Normal file
3
miniprogramPre/pages/match/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
2
miniprogramPre/pages/match/index.wxml
Normal file
2
miniprogramPre/pages/match/index.wxml
Normal file
@@ -0,0 +1,2 @@
|
||||
<!--pages/match/index.wxml-->
|
||||
<text>pages/match/index.wxml</text>
|
||||
1
miniprogramPre/pages/match/index.wxss
Normal file
1
miniprogramPre/pages/match/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/match/index.wxss */
|
||||
66
miniprogramPre/pages/my/index.js
Normal file
66
miniprogramPre/pages/my/index.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/my/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
||||
3
miniprogramPre/pages/my/index.json
Normal file
3
miniprogramPre/pages/my/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
2
miniprogramPre/pages/my/index.wxml
Normal file
2
miniprogramPre/pages/my/index.wxml
Normal file
@@ -0,0 +1,2 @@
|
||||
<!--pages/my/index.wxml-->
|
||||
<text>pages/my/index.wxml</text>
|
||||
1
miniprogramPre/pages/my/index.wxss
Normal file
1
miniprogramPre/pages/my/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/my/index.wxss */
|
||||
66
miniprogramPre/pages/purchases/index.js
Normal file
66
miniprogramPre/pages/purchases/index.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/purchases/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
||||
3
miniprogramPre/pages/purchases/index.json
Normal file
3
miniprogramPre/pages/purchases/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
2
miniprogramPre/pages/purchases/index.wxml
Normal file
2
miniprogramPre/pages/purchases/index.wxml
Normal file
@@ -0,0 +1,2 @@
|
||||
<!--pages/purchases/index.wxml-->
|
||||
<text>pages/purchases/index.wxml</text>
|
||||
1
miniprogramPre/pages/purchases/index.wxss
Normal file
1
miniprogramPre/pages/purchases/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/purchases/index.wxss */
|
||||
66
miniprogramPre/pages/read/index.js
Normal file
66
miniprogramPre/pages/read/index.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/read/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
||||
3
miniprogramPre/pages/read/index.json
Normal file
3
miniprogramPre/pages/read/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
2
miniprogramPre/pages/read/index.wxml
Normal file
2
miniprogramPre/pages/read/index.wxml
Normal file
@@ -0,0 +1,2 @@
|
||||
<!--pages/read/index.wxml-->
|
||||
<text>pages/read/index.wxml</text>
|
||||
1
miniprogramPre/pages/read/index.wxss
Normal file
1
miniprogramPre/pages/read/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/read/index.wxss */
|
||||
66
miniprogramPre/pages/referral/index.js
Normal file
66
miniprogramPre/pages/referral/index.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/referral/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
||||
3
miniprogramPre/pages/referral/index.json
Normal file
3
miniprogramPre/pages/referral/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
2
miniprogramPre/pages/referral/index.wxml
Normal file
2
miniprogramPre/pages/referral/index.wxml
Normal file
@@ -0,0 +1,2 @@
|
||||
<!--pages/referral/index.wxml-->
|
||||
<text>pages/referral/index.wxml</text>
|
||||
1
miniprogramPre/pages/referral/index.wxss
Normal file
1
miniprogramPre/pages/referral/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/referral/index.wxss */
|
||||
66
miniprogramPre/pages/search/index.js
Normal file
66
miniprogramPre/pages/search/index.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/search/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
||||
3
miniprogramPre/pages/search/index.json
Normal file
3
miniprogramPre/pages/search/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
2
miniprogramPre/pages/search/index.wxml
Normal file
2
miniprogramPre/pages/search/index.wxml
Normal file
@@ -0,0 +1,2 @@
|
||||
<!--pages/search/index.wxml-->
|
||||
<text>pages/search/index.wxml</text>
|
||||
1
miniprogramPre/pages/search/index.wxss
Normal file
1
miniprogramPre/pages/search/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/search/index.wxss */
|
||||
66
miniprogramPre/pages/settings/index.js
Normal file
66
miniprogramPre/pages/settings/index.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// pages/settings/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
||||
3
miniprogramPre/pages/settings/index.json
Normal file
3
miniprogramPre/pages/settings/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
2
miniprogramPre/pages/settings/index.wxml
Normal file
2
miniprogramPre/pages/settings/index.wxml
Normal file
@@ -0,0 +1,2 @@
|
||||
<!--pages/settings/index.wxml-->
|
||||
<text>pages/settings/index.wxml</text>
|
||||
1
miniprogramPre/pages/settings/index.wxss
Normal file
1
miniprogramPre/pages/settings/index.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/settings/index.wxss */
|
||||
Reference in New Issue
Block a user