Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
李勇
/
McuClient
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
李勇
2017-06-20 23:43:38 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
51e886c5e7fcd06f9e4a662071aaec162c455e1d
51e886c5
1 parent
d54fa751
答题卡和点名模块修复学生端答题后删除了本地数据,导致在答题结束收不到消息的问题
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
2 行增加
和
2 行删除
dist/McuClient.js
src/EngineEntrance.js
src/apes/QuestionApe.js
dist/McuClient.js
查看文件 @
51e886c
此 diff 太大无法显示。
src/EngineEntrance.js
查看文件 @
51e886c
...
...
@@ -32,7 +32,7 @@ import QuestionApe from 'apes/QuestionApe';
import
UTF8
from
'utf-8'
;
let
loger
=
Loger
.
getLoger
(
'McuClient'
);
let
_sdkInfo
=
{
"version"
:
"v1.36.
7
.20170620"
,
"author"
:
"www.3mang.com"
};
let
_sdkInfo
=
{
"version"
:
"v1.36.
8
.20170620"
,
"author"
:
"www.3mang.com"
};
//APE
let
_sass
;
...
...
src/apes/QuestionApe.js
查看文件 @
51e886c
...
...
@@ -187,7 +187,7 @@ class QuestionApe extends Ape {
//学生->如果自己已经提交过答案就不需要再显示
if
(
model
.
totalUserList
.
indexOf
(
GlobalConfig
.
userId
)
>=
0
){
loger
.
log
(
"已经提交过答案-不需要显示答题卡->userId:"
+
GlobalConfig
.
userId
);
delete
this
.
questionList
[
itemIdx
];
//
delete this.questionList[itemIdx];
}
else
{
//显示答题卡数据
this
.
_emit
(
MessageTypes
.
START_ANSWER_QUESTION
,
model
);
...
...
请
注册
或
登录
后发表评论