Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wandouchengzhang_coach
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
石盼盼
wandouchengzhang_coach
Commits
b4c092c1
Commit
b4c092c1
authored
Nov 10, 2020
by
石盼盼
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'shipanpan' into 'master'
教练抢班,已抢班级详情接口对接 See merge request
!4
parents
39dab9f5
cc70340e
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
336 additions
and
382 deletions
+336
-382
classManagement.js
pages/index/classManagement/classManagement.js
+7
-0
classManagement.wxml
pages/index/classManagement/classManagement.wxml
+5
-3
classManagement.wxss
pages/index/classManagement/classManagement.wxss
+6
-0
bindTel.wxss
pages/sign/bindTel/bindTel.wxss
+2
-1
class.js
pages/tabbar/class/class.js
+27
-26
class.wxml
pages/tabbar/class/class.wxml
+23
-25
financial.wxml
pages/tabbar/financial/financial.wxml
+5
-66
financial.wxss
pages/tabbar/financial/financial.wxss
+2
-1
teamDetail.js
pages/team/teamDetail/teamDetail.js
+47
-43
teamDetail.wxml
pages/team/teamDetail/teamDetail.wxml
+38
-64
teamDetail.wxss
pages/team/teamDetail/teamDetail.wxss
+14
-0
project.config.json
project.config.json
+160
-153
No files found.
pages/index/classManagement/classManagement.js
View file @
b4c092c1
...
...
@@ -5,6 +5,7 @@ Page({
* 页面的初始数据
*/
data
:
{
showView
:
true
,
},
...
...
@@ -13,6 +14,12 @@ Page({
*/
onLoad
:
function
(
options
)
{
},
showButton
:
function
()
{
var
that
=
this
;
that
.
setData
({
showView
:
(
!
that
.
data
.
showView
)
})
},
gocourseInstant
:
function
(){
wx
.
navigateTo
({
...
...
pages/index/classManagement/classManagement.wxml
View file @
b4c092c1
...
...
@@ -20,8 +20,8 @@
</view>
</view>
<view>
<view class="sign">已签到</view>
<view class="evaluation" catchtap="goevaluation">运动评价</view>
<view class="sign
{{showView?'show':'hide'}}" bindtap="showButton
">已签到</view>
<view class="evaluation
{{showView?'hide':'show'}}
" catchtap="goevaluation">运动评价</view>
</view>
</view>
<view class="item flex-h flex-vc flex-hb">
...
...
@@ -46,7 +46,9 @@
</view>
</view>
<view>
<view class="sign1">签到</view>
<!-- <view class="sign1">签到</view> -->
<view class="sign1 {{showView?'show':'hide'}}" bindtap="showButton">签到</view>
<view class="evaluation {{showView?'hide':'show'}}" catchtap="goevaluation">运动评价</view>
</view>
</view>
<view class="item flex-h flex-vc flex-hb">
...
...
pages/index/classManagement/classManagement.wxss
View file @
b4c092c1
...
...
@@ -128,4 +128,10 @@
font-size: 30rpx;
text-align: center;
line-height: 80rpx;
}
.hide{
display: none;
}
.show{
display: block;
}
\ No newline at end of file
pages/sign/bindTel/bindTel.wxss
View file @
b4c092c1
...
...
@@ -40,6 +40,7 @@
padding: 0 !important;
font-size: 30rpx;
border: none;
outline: none;
outline: none;
line-height: 82rpx;
}
pages/tabbar/class/class.js
View file @
b4c092c1
...
...
@@ -5,23 +5,17 @@ import {
}
from
'
../../../utils/base.js
'
;
const
base
=
new
Base
()
Page
({
/**
* 页面的初始数据
*/
data
:
{
show
:
false
,
activeIndex
:
1
,
datalList
:
[],
locked
:
false
},
/**
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
this
.
getList
();
this
.
getMyclasslist
()
this
.
getMyclasslist
();
this
.
getList
();
},
getList
:
function
()
{
wx
.
showLoading
({
...
...
@@ -37,10 +31,10 @@ Page({
console
.
log
(
data
)
wx
.
hideLoading
();
this
.
setData
({
show
:
true
,
datalList
:
data
,
locked
:
false
})
console
.
log
(
data
)
}
}
base
.
newRequest
(
params
)
...
...
@@ -58,8 +52,7 @@ Page({
callback
:
(
data
)
=>
{
console
.
log
(
data
)
wx
.
hideLoading
();
this
.
setData
({
show
:
true
,
this
.
setData
({
datalList
:
data
,
locked
:
false
})
...
...
@@ -67,6 +60,23 @@ Page({
}
base
.
newRequest
(
params
)
},
getrobclass
:
function
()
{
const
{
coach_id
,
class_id
}
=
this
.
data
let
params
=
{
url
:
'
coach/robclass
'
,
data
:
{
coach_id
:
5
,
class_id
:
16
},
callback
:
(
data
)
=>
{
console
.
log
(
data
)
this
.
setData
({
datalList
:
data
})
}
}
base
.
newRequest
(
params
)
},
changeTab
(
e
)
{
let
index
=
e
.
currentTarget
.
dataset
.
index
if
(
this
.
data
.
activeIndex
!=
index
)
{
...
...
@@ -76,14 +86,15 @@ Page({
}
},
goteamDetail
(
e
)
{
let
item
=
e
.
currentTarget
.
dataset
.
item
console
.
log
(
item
)
wx
.
navigateTo
({
url
:
'
../../team/teamDetail/teamDetail
'
,
url
:
'
../../team/teamDetail/teamDetail
?lesson_id=
'
+
item
.
lesson_id
,
})
},
initData
:
function
(){
this
.
setData
({
show
:
false
,
list
:[],
datalList
:[],
locked
:
false
})
},
...
...
@@ -93,18 +104,8 @@ Page({
this
.
setData
({
locked
:
true
})
this
.
getList
();
this
.
getMyclasslist
()
this
.
onLoadFun
();
}
wx
.
stopPullDownRefresh
()
},
onReachBottom
:
function
()
{
if
(
!
this
.
data
.
locked
&&
this
.
data
.
more
){
this
.
setData
({
locked
:
true
})
this
.
getList
();
this
.
getMyclasslist
()
}
}
})
pages/tabbar/class/class.wxml
View file @
b4c092c1
...
...
@@ -4,35 +4,33 @@
<text class="{{activeIndex == 2 ? 'active': ''}}" catchtap="changeTab" data-index="2">我的班级</text>
</view>
<view>
<view wx:if="{{show}}">
<view wx:if="{{datalList.length>0}}">
<view class="tabContent" wx:if="{{activeIndex == 1 }}" wx:for="{{datalList}}" wx:key="item" data-item="{{item}}" >
<view class="tab_item">
<view class="class-title">{{item.course.name}}</view>
<view class="text column">
<text>所在区域:{{item.stadium.region.name}}</text>
<text>上课场馆:{{item.stadium.name}}</text>
<text>上课时间:{{item.course_time.name}}</text>
</view>
<view class="goclass">我要上课</view>
<view wx:if="{{datalList.length>0}}">
<view class="tabContent" wx:if="{{activeIndex == 1 }}" wx:for="{{datalList}}" wx:key="item" data-item="{{item}}">
<view class="tab_item">
<view class="class-title">{{item.course.name}}</view>
<view class="text column">
<text>所在区域:{{item.stadium.region.name}}</text>
<text>上课场馆:{{item.stadium.name}}</text>
<text>上课时间:{{item.course_time.name}}</text>
</view>
<view class="goclass" bindtap="getrobclass">我要上课</view>
</view>
</view>
<none wx:else></none>
</view>
<view wx:if="{{show}}">
<view wx:if="{{datalList.length>0}}">
<view class="tabContent1" wx:if="{{activeIndex == 2}}" wx:for="{{datalList}}" wx:key="item" data-item="{{item}}" catchtap="goteamDetail">
<view class="tab_item1">
<view class="top">
<view class="class-title">{{item.course.name}}</view>
<view class="statue">{{item.class_status_display}}</view>
</view>
<view class="text column">
<text>所在区域:{{item.stadium.region.name}}</text>
<text>上课场馆:{{item.stadium.name}}</text>
<text>上课时间:{{item.course_time.name}}</text>
</view>
<none wx:else></none>
</view>
<view>
<view wx:if="{{datalList.length>0}}">
<view class="tabContent1" wx:if="{{activeIndex == 2}}" wx:for="{{datalList}}" wx:key="item" data-item="{{item}}" catchtap="goteamDetail">
<view class="tab_item1">
<view class="top">
<view class="class-title">{{item.course.name}}</view>
<view class="statue">{{item.class_status_display}}</view>
</view>
<view class="text column">
<text>所在区域:{{item.stadium.region.name}}</text>
<text>上课场馆:{{item.stadium.name}}</text>
<text>上课时间:{{item.course_time.name}}</text>
</view>
</view>
</view>
...
...
pages/tabbar/financial/financial.wxml
View file @
b4c092c1
...
...
@@ -7,61 +7,54 @@
<view hidden="{{activeIndex == 1}}">
<view class="detailed flex-h">
<view class="item-one">
<view class="num">
22
00</view>
<view class="num">
5
00</view>
<view class="small">预计收益</view>
</view>
<view class="line"></view>
<view class="item-two">
<view class="num">
10
00</view>
<view class="num">
3
00</view>
<view class="small">已结算</view>
</view>
</view>
<van-icon class="question_icon" name="question-o" />
<view class="tx">全部提现</view>
<view class="tip">提示:每周二为提现日!其他日不支持提现</view>
<view class="table">
<view class="table-tr">
<view class="table-th">日期</view>
<view class="table-th">结算金额</view>
<view class="table-th">说明</view>
<view class="table-th">提现金额</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
<view class="table-td">用户"西西"第一节课</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
<view class="table-td">用户"西西"第一节课</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
<view class="table-td">用户"西西"第一节课</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
<view class="table-td">用户"西西"第一节课</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
<view class="table-td">用户"西西"第一节课</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
<view class="table-td">用户"西西"第一节课</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
<view class="table-td">用户"西西"第一节课</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
<view class="table-td">用户"西西"第一节课</view>
</view>
</view>
</view>
...
...
@@ -126,59 +119,5 @@
</view>
</view>
</view>
<view hidden="{{currentTabIndex != 2}}">
<view class="detailed flex-h">
<view class="item-one">
<view class="num">500</view>
<view class="small">预计收益</view>
</view>
<view class="line"></view>
<view class="item-two">
<view class="num">300</view>
<view class="small">已结算</view>
</view>
</view>
<van-icon class="question_icon" name="question-o" />
<view class="tx">全部提现</view>
<view class="tip">提示:每周二为提现日!其他日不支持提现</view>
<view class="table">
<view class="table-tr">
<view class="table-th">日期</view>
<view class="table-th">提现金额</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
</view>
<view class="table-tr">
<view class="table-td">2020-10-28</view>
<view class="table-td">10</view>
</view>
</view>
</view>
</view>
</view>
\ No newline at end of file
pages/tabbar/financial/financial.wxss
View file @
b4c092c1
...
...
@@ -159,7 +159,8 @@
font-size: 24rpx;
line-height: 53rpx;
text-align: left;
padding-left: 22rpx;
padding-left: 12rpx;
margin-left: 30rpx;
}
/* table表格 */
.table{
...
...
pages/team/teamDetail/teamDetail.js
View file @
b4c092c1
// pages/team/teamDetail/teamDetail.js
const
app
=
getApp
()
import
{
Base
}
from
'
../../../utils/base.js
'
;
const
base
=
new
Base
()
Page
({
/**
* 页面的初始数据
*/
data
:
{
courseData
:
''
,
studentList
:
[],
lessonList
:
[],
},
/**
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
console
.
log
(
options
)
console
.
log
(
options
.
lesson_id
)
this
.
getclassdetail
();
this
.
getlessondetail
();
},
getclassdetail
:
function
()
{
const
{
coach_id
,
class_id
}
=
this
.
data
let
params
=
{
url
:
'
coach/classdetail
'
,
data
:
{
coach_id
:
5
,
class_id
:
16
},
callback
:
(
data
)
=>
{
console
.
log
(
data
)
this
.
setData
({
courseData
:
data
,
studentList
:
data
.
class_students
,
})
}
}
base
.
newRequest
(
params
)
},
getlessondetail
:
function
()
{
const
{
coach_id
,
class_id
,
lesson_id
}
=
this
.
data
let
params
=
{
url
:
'
coach/lessondetail
'
,
data
:{
coach_id
:
5
,
class_id
:
16
,
lesson_id
:
69
},
callback
:
(
data
)
=>
{
console
.
log
(
data
)
this
.
setData
({
lessonList
:
data
})
}
}
base
.
newRequest
(
params
)
},
goclassDetail
:
function
(){
wx
.
navigateTo
({
...
...
@@ -20,13 +55,6 @@ Page({
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady
:
function
()
{
},
/**
* 生命周期函数--监听页面显示
*/
...
...
@@ -34,20 +62,6 @@ Page({
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide
:
function
()
{
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload
:
function
()
{
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
...
...
@@ -55,17 +69,7 @@ Page({
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom
:
function
()
{
},
/**
* 用户点击右上角分享
*/
onShareAppMessage
:
function
()
{
}
})
\ No newline at end of file
pages/team/teamDetail/teamDetail.wxml
View file @
b4c092c1
<view class="top">
<view class="course">
<view class="course_top flex-h flex-vc">
<image src="../../../images/personal_pic_01.jpg"></image>
<view>
<view class="class">足球课</view>
<text class="years">3~6岁</text>
<text>|</text>
<text class="time">4课时</text>
</view>
</view>
<view class="course_bot">
<view class="class_time">上课时间:周三 15:00-16:00</view>
<view class="class_place">上课地点:新天际建华幼儿园</view>
</view>
</view>
<view class="course_top flex-h flex-vc">
<image src="{{courseData.course.main_img}}"></image>
<view>
<view class="class">{{courseData.course.name}}</view>
<text class="years">{{courseData.course_attr.age_meal.age_range}}</text>
<text>|</text>
<text class="time">{{courseData.course_attr.class_meal.name}}</text>
</view>
</view>
<view class="course_bot">
<view class="class_time">上课时间:{{courseData.course_time.name}}</view>
<view class="class_place">上课地点:{{courseData.stadium.name}}</view>
</view>
</view>
<view class="state flex-h">
<view>已上课</view>
<view>即将上课</view>
<view>待上课</view>
<view>待上课</view>
</view>
</view>
<view class="students">
<text>本班学员</text>
<view class="stu flex-h flex-hw">
<view class="stus column">
<image src="../../../images/photo.png"></image>
<view>西西</view>
</view>
<view class="stus column">
<image src="../../../images/photo.png"></image>
<view>西西</view>
</view>
<view class="stus column">
<image src="../../../images/photo.png"></image>
<view>西西</view>
</view>
<view class="stus column">
<image src="../../../images/photo.png"></image>
<view>西西</view>
</view>
<view class="stus column">
<image src="../../../images/photo.png"></image>
<view>西西</view>
</view>
<view class="stus column">
<image src="../../../images/photo.png"></image>
<view>西西</view>
</view>
<view class="stus column">
<image src="../../../images/photo.png"></image>
<view>西西</view>
</view>
</view>
<text>本班学员</text>
<view class="stu flex-h flex-hw">
<view class="stus column" wx:for="{{studentList}}" wx:key="index" wx:for-item="item">
<image src="/images/default_head.png" wx:if="{{item.child.thumb == null}}"></image>
<image src="{{item.child.thumb}}" wx:else></image>
<view class="name">{{item.child.child_name}}</view>
</view>
</view>
</view>
<view class="haveclass">
<text class="title">已上课时</text>
<view class="item">
<view class="lesson">第二节课</view>
<view class="date">日期:2020-10-21</view>
<view class="number">
<text>应到:8人</text>
<text>实到:7人</text>
</view>
<view class="btn" catchtap="goclassDetail">课程详情</view>
</view>
<view class="item">
<view class="lesson">第一节课</view>
<view class="date">日期:2020-10-21</view>
<view class="number">
<text>应到:8人</text>
<text>实到:7人</text>
</view>
<view class="btn" catchtap="goclassDetail">课程详情</view>
</view>
<text class="title">已上课时</text>
<view class="item" wx:for="{{lessonList}}" wx:key="index" wx:for-item="item">
<view class="lesson">第二节课</view>
<view class="date">日期:2020-10-21</view>
<view class="number">
<text>应到:8人</text>
<text>实到:7人</text>
</view>
<view class="btn" catchtap="goclassDetail">课程详情</view>
</view>
</view>
\ No newline at end of file
pages/team/teamDetail/teamDetail.wxss
View file @
b4c092c1
...
...
@@ -24,6 +24,7 @@ page{
width: 220rpx;
height: 144rpx;
margin-right: 30rpx;
border-radius: 8rpx;
}
.top .course .course_top .class{
color: #000000;
...
...
@@ -43,6 +44,14 @@ page{
.top .course .course_bot .class_time{
margin-bottom: 20rpx;
}
.top .state{
width:100%;
margin-top: 150rpx;
padding-left: 20rpx;
}
.top .state>view{
width:190rpx;
}
.students{
width: 100%;
background: #FFFFFF;
...
...
@@ -66,6 +75,11 @@ page{
width: 80rpx;
height: 80rpx;
margin-bottom: 10rpx;
border-radius: 50%;
}
.students .stu .name{
color: #1A1A1A;
font-size: 24rpx;
}
.haveclass{
width: 100%;
...
...
project.config.json
View file @
b4c092c1
{
"description"
:
"项目配置文件"
,
"packOptions"
:
{
"ignore"
:
[]
},
"setting"
:
{
"urlCheck"
:
false
,
"es6"
:
true
,
"enhance"
:
false
,
"postcss"
:
true
,
"preloadBackgroundData"
:
false
,
"minified"
:
true
,
"newFeature"
:
false
,
"coverView"
:
true
,
"nodeModules"
:
false
,
"autoAudits"
:
false
,
"showShadowRootInWxmlPanel"
:
true
,
"scopeDataCheck"
:
false
,
"uglifyFileName"
:
false
,
"checkInvalidKey"
:
true
,
"checkSiteMap"
:
true
,
"uploadWithSourceMap"
:
true
,
"compileHotReLoad"
:
false
,
"babelSetting"
:
{
"ignore"
:
[],
"disablePlugins"
:
[],
"outputPath"
:
""
},
"useIsolateContext"
:
true
,
"useCompilerModule"
:
false
,
"userConfirmedUseCompilerModuleSwitch"
:
false
},
"compileType"
:
"miniprogram"
,
"libVersion"
:
"2.14.0"
,
"appid"
:
"wx6e6eaca9cc1c406d"
,
"projectname"
:
"wandouchengzhang_coach"
,
"debugOptions"
:
{
"hidedInDevtools"
:
[]
},
"scripts"
:
{},
"isGameTourist"
:
false
,
"simulatorType"
:
"wechat"
,
"simulatorPluginLibVersion"
:
{},
"condition"
:
{
"search"
:
{
"list"
:
[]
},
"conversation"
:
{
"list"
:
[]
},
"plugin"
:
{
"list"
:
[]
},
"game"
:
{
"list"
:
[]
},
"gamePlugin"
:
{
"list"
:
[]
},
"miniprogram"
:
{
"list"
:
[
{
"id"
:
-1
,
"name"
:
"pages/tabbar/personal/personal"
,
"pathName"
:
"pages/tabbar/personal/personal"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/tabbar/personal/personal"
,
"pathName"
:
"pages/tabbar/personal/personal"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/my/parents/parents"
,
"pathName"
:
"pages/my/parents/parents"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/tabbar/personal/personal"
,
"pathName"
:
"pages/tabbar/personal/personal"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/my/teachingArea/teachingArea"
,
"pathName"
:
"pages/my/teachingArea/teachingArea"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/index/classManagement/classManagement"
,
"pathName"
:
"pages/index/classManagement/classManagement"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/index/courseInstant/courseInstant"
,
"pathName"
:
"pages/index/courseInstant/courseInstant"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
7
,
"name"
:
"pages/index/classDetail/classDetail"
,
"pathName"
:
"pages/index/classDetail/classDetail"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/team/teamDetail/teamDetail"
,
"pathName"
:
"pages/team/teamDetail/teamDetail"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/index/performance/performance"
,
"pathName"
:
"pages/index/performance/performance"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/index/evaluation/evaluation"
,
"pathName"
:
"pages/index/evaluation/evaluation"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"个人中心"
,
"pathName"
:
"pages/tabbar/personal/personal"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/tabbar/class/class"
,
"pathName"
:
"pages/tabbar/class/class"
,
"scene"
:
null
}
]
}
}
"description"
:
"项目配置文件"
,
"packOptions"
:
{
"ignore"
:
[]
},
"setting"
:
{
"urlCheck"
:
false
,
"es6"
:
true
,
"enhance"
:
false
,
"postcss"
:
true
,
"preloadBackgroundData"
:
false
,
"minified"
:
true
,
"newFeature"
:
false
,
"coverView"
:
true
,
"nodeModules"
:
false
,
"autoAudits"
:
false
,
"showShadowRootInWxmlPanel"
:
true
,
"scopeDataCheck"
:
false
,
"uglifyFileName"
:
false
,
"checkInvalidKey"
:
true
,
"checkSiteMap"
:
true
,
"uploadWithSourceMap"
:
true
,
"compileHotReLoad"
:
false
,
"babelSetting"
:
{
"ignore"
:
[],
"disablePlugins"
:
[],
"outputPath"
:
""
},
"useIsolateContext"
:
true
,
"useCompilerModule"
:
false
,
"userConfirmedUseCompilerModuleSwitch"
:
false
},
"compileType"
:
"miniprogram"
,
"libVersion"
:
"2.14.0"
,
"appid"
:
"wx6e6eaca9cc1c406d"
,
"projectname"
:
"wandouchengzhang_coach"
,
"debugOptions"
:
{
"hidedInDevtools"
:
[]
},
"scripts"
:
{},
"isGameTourist"
:
false
,
"simulatorType"
:
"wechat"
,
"simulatorPluginLibVersion"
:
{},
"condition"
:
{
"search"
:
{
"list"
:
[]
},
"conversation"
:
{
"list"
:
[]
},
"plugin"
:
{
"list"
:
[]
},
"game"
:
{
"list"
:
[]
},
"gamePlugin"
:
{
"list"
:
[]
},
"miniprogram"
:
{
"list"
:
[
{
"id"
:
-1
,
"name"
:
"pages/tabbar/personal/personal"
,
"pathName"
:
"pages/tabbar/personal/personal"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/tabbar/personal/personal"
,
"pathName"
:
"pages/tabbar/personal/personal"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/my/parents/parents"
,
"pathName"
:
"pages/my/parents/parents"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/tabbar/personal/personal"
,
"pathName"
:
"pages/tabbar/personal/personal"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/my/teachingArea/teachingArea"
,
"pathName"
:
"pages/my/teachingArea/teachingArea"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/index/classManagement/classManagement"
,
"pathName"
:
"pages/index/classManagement/classManagement"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/index/courseInstant/courseInstant"
,
"pathName"
:
"pages/index/courseInstant/courseInstant"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
7
,
"name"
:
"pages/index/classDetail/classDetail"
,
"pathName"
:
"pages/index/classDetail/classDetail"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/team/teamDetail/teamDetail"
,
"pathName"
:
"pages/team/teamDetail/teamDetail"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/index/performance/performance"
,
"pathName"
:
"pages/index/performance/performance"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/index/evaluation/evaluation"
,
"pathName"
:
"pages/index/evaluation/evaluation"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"个人中心"
,
"pathName"
:
"pages/tabbar/personal/personal"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/tabbar/class/class"
,
"pathName"
:
"pages/tabbar/class/class"
,
"query"
:
""
,
"scene"
:
null
},
{
"id"
:
-1
,
"name"
:
"pages/team/teamDetail/teamDetail"
,
"pathName"
:
"pages/team/teamDetail/teamDetail"
,
"scene"
:
null
}
]
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment