@ -1,9 +1,9 @@
|
||||
##v0.14.3
|
||||
## v0.14.3
|
||||
* F 实训文件内容获取失败(文件path错误)
|
||||
* F 个人信息性别设置bug
|
||||
* D 删除实名认证界面
|
||||
|
||||
##v0.14.2
|
||||
## v0.14.2
|
||||
* F 签到界面无权限访问提示
|
||||
* F 更改头像界面图片初次加载失败
|
||||
* F 电脑端用户界面图标及文字位置不正确
|
@ -1,7 +1,8 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"iconfont":"../iconfont/iconfont"
|
||||
"iconfont":"../iconfont/iconfont",
|
||||
"mp-icon": "/weui-miniprogram/icon/icon"
|
||||
},
|
||||
"navigationBarBackgroundColor": "#00b0f0",
|
||||
"navigationBarTextStyle": "white"
|
||||
|
Before Width: | Height: | Size: 457 B |
@ -1,4 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
"usingComponents": {
|
||||
"mp-dialog": "/weui-miniprogram/dialog/dialog"
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 733 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 859 B |
After Width: | Height: | Size: 859 B |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 884 B |
After Width: | Height: | Size: 884 B |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 919 B |
After Width: | Height: | Size: 919 B |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 804 B |
After Width: | Height: | Size: 804 B |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 822 B |
After Width: | Height: | Size: 822 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1022 B |
After Width: | Height: | Size: 1022 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.0 KiB |
@ -1,5 +1,7 @@
|
||||
<view class="module">
|
||||
<scroll-view class="activities" scroll-y="1" lower-threshold="120" bindscrolltolower="onReachBottom">
|
||||
<view wx:for="{{activityGroups}}">
|
||||
<view wx:for="{{activityGroups}}" wx:key="index">
|
||||
<activity-group date="{{index}}" activities="{{item}}" course_identity="{{course_identity}}" course_id="{{course_id}}"/>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
|
@ -1,3 +1,6 @@
|
||||
.module{
|
||||
height: 100%;
|
||||
}
|
||||
.activities{
|
||||
background: white;
|
||||
height: 100%;
|
||||
|
@ -1,6 +1,6 @@
|
||||
<view class="activity-group">
|
||||
<view class="date">{{_date}}</view>
|
||||
<view class="activity-wrap" wx:for="{{activities}}">
|
||||
<view class="activity-wrap" wx:for="{{activities}}" wx:key="course_act_id">
|
||||
<activity-item data="{{item}}" course_identity="{{course_identity}}" course_id="{{course_id}}"/>
|
||||
</view>
|
||||
</view>
|
@ -0,0 +1,2 @@
|
||||
<textarea></textarea>
|
||||
<editor/>
|
@ -0,0 +1,5 @@
|
||||
const app = getApp();
|
||||
|
||||
Page({
|
||||
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1 @@
|
||||
/* miniprogram/pages/feedback/feedback.wxss */
|