Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
L
learn-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
learn-online-pc
Commits
cc8387a2
提交
cc8387a2
authored
12月 20, 2019
作者:
GOD_ZYX
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改 视频第一次禁止拖拽+新增课程考试
上级
76067d6a
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
18 个修改的文件
包含
148 行增加
和
36 行删除
+148
-36
chapterExam.vue
client/client/components/player/chapterExam/chapterExam.vue
+55
-24
videoH5.vue
client/client/components/player/chapterVideo/videoH5.vue
+10
-0
sideChapterList.vue
...nt/client/components/player/rightSide/sideChapterList.vue
+2
-0
chapter_api.js
client/client/components/services/api/chapter_api.js
+11
-1
ChapterAction.js
client/client/project/actions/ChapterAction.js
+50
-3
CourseAction.js
client/client/project/actions/CourseAction.js
+11
-2
courseDetail.vue
client/client/project/pages/myLearn/courseDetail.vue
+3
-0
index.html
server/client-dist/index.html
+2
-2
11.aeae3d41.js
server/client-dist/resources/11.aeae3d41.js
+0
-0
14.02a4bcce.js
server/client-dist/resources/14.02a4bcce.js
+0
-0
14.2e113f3cf715.css
server/client-dist/resources/14.2e113f3cf715.css
+2
-2
14.71455ff6.js
server/client-dist/resources/14.71455ff6.js
+0
-0
21.87fdb223.js
server/client-dist/resources/21.87fdb223.js
+0
-0
21.cf5249c9d1f6.css
server/client-dist/resources/21.cf5249c9d1f6.css
+0
-0
6.492b006c.js
server/client-dist/resources/6.492b006c.js
+0
-0
6.adf556fa1464.css
server/client-dist/resources/6.adf556fa1464.css
+0
-0
app.dd8dd6c2.js
server/client-dist/resources/app.dd8dd6c2.js
+0
-0
manifest.2efa785f.js
server/client-dist/resources/manifest.2efa785f.js
+2
-2
没有找到文件。
client/client/components/player/chapterExam/chapterExam.vue
浏览文件 @
cc8387a2
...
...
@@ -104,7 +104,8 @@ export default {
/* 当前 radio点击 */
radioCur
:
''
,
/* 当前 checkbox点击 */
checkCur
:
''
checkCur
:
''
,
courseExam
:
false
}
},
mounted
()
{
...
...
@@ -350,29 +351,41 @@ export default {
*/
loadAjax
()
{
const
loading
=
this
.
$loading
({
lock
:
true
,
text
:
''
,
spinner
:
''
,
background
:
'rgba(255, 255, 255, 0.9)'
})
cAction
.
chapterAction
.
getExamDetail
(
this
.
sid
,
this
.
cid
,
this
.
id
).
then
(
_data
=>
{
let
json
=
_data
.
homework
if
(
json
)
{
json
.
score
=
_data
.
score
json
.
work_contents
=
_data
.
work_contents
this
.
exam
=
this
.
updateData
(
json
)
let
_ajax
=
null
/* 多增加一次接口请求,判断是否为考试 */
cAction
.
chapterAction
.
getChapterList
(
this
.
cid
,
this
.
sid
,
this
.
id
).
then
(
json
=>
{
if
(
json
.
curJson
&&
json
.
curJson
.
id
===
this
.
id
&&
json
.
curJson
.
homework
.
courseExam
)
{
this
.
courseExam
=
true
}
if
(
this
.
courseExam
)
{
_ajax
=
cAction
.
chapterAction
.
getExamDetailAfterCourse
}
else
{
this
.
exam
=
{}
_ajax
=
cAction
.
chapterAction
.
getExamDetail
}
}).
catch
(
e
=>
{
this
.
$message
.
error
(
e
.
message
)
}).
finally
(()
=>
{
this
.
setTime
=
setInterval
(()
=>
{
// console.log(this.chapterExam.work_id, this.id)
if
(
this
.
chapterExam
.
work_id
&&
this
.
chapterExam
.
work_id
===
this
.
id
)
{
if
(
!
this
.
exam
.
id
)
{
this
.
exam
=
this
.
updateData
(
this
.
chapterExam
)
/* 滚动到头部 */
document
.
querySelector
(
'.play-paper'
).
scrollTop
=
0
}
clearInterval
(
this
.
setTime
)
_ajax
(
this
.
sid
,
this
.
cid
,
this
.
id
).
then
(
_data
=>
{
let
json
=
_data
.
homework
if
(
json
)
{
json
.
score
=
_data
.
score
json
.
work_contents
=
_data
.
work_contents
this
.
exam
=
this
.
updateData
(
json
)
}
else
{
this
.
exam
=
{}
}
},
50
)
loading
.
close
()
})
}).
catch
(
e
=>
{
this
.
$message
.
error
(
e
.
message
)
}).
finally
(()
=>
{
this
.
setTime
=
setInterval
(()
=>
{
// console.log(this.chapterExam.work_id, this.id)
if
(
this
.
chapterExam
.
work_id
&&
this
.
chapterExam
.
work_id
===
this
.
id
)
{
if
(
!
this
.
exam
.
id
)
{
this
.
exam
=
this
.
updateData
(
this
.
chapterExam
)
/* 滚动到头部 */
document
.
querySelector
(
'.play-paper'
).
scrollTop
=
0
}
clearInterval
(
this
.
setTime
)
}
},
50
)
loading
.
close
()
})
}).
catch
(
e
=>
{
this
.
$message
.
error
(
e
.
message
)
}).
finally
(()
=>
{
loading
.
close
()
})
},
/**
* 辅助 radio选择
...
...
@@ -474,9 +487,21 @@ export default {
this
.
param
.
score
=
(
score
/
total
*
100
).
toFixed
(
1
)
const
loading
=
this
.
$loading
({
lock
:
true
,
text
:
''
,
spinner
:
''
,
background
:
'rgba(255, 255, 255, 0.9)'
})
cAction
.
chapterAction
.
submitExamDetail
(
this
.
param
).
then
(
_res
=>
{
let
_ajax
=
null
if
(
this
.
courseExam
)
{
_ajax
=
cAction
.
chapterAction
.
submitExamDetailAfterCourse
}
else
{
_ajax
=
cAction
.
chapterAction
.
submitExamDetail
}
_ajax
(
this
.
param
).
then
(
_res
=>
{
if
(
_res
.
status
)
{
cAction
.
chapterAction
.
getExamDetail
(
this
.
sid
,
this
.
cid
,
this
.
id
).
then
(
_data
=>
{
let
_ajax
=
null
if
(
this
.
courseExam
)
{
_ajax
=
cAction
.
chapterAction
.
getExamDetailAfterCourse
}
else
{
_ajax
=
cAction
.
chapterAction
.
getExamDetail
}
_ajax
(
this
.
sid
,
this
.
cid
,
this
.
id
).
then
(
_data
=>
{
let
json
=
_data
.
homework
if
(
json
)
{
json
.
score
=
_data
.
score
...
...
@@ -509,7 +534,13 @@ export default {
}
if
(
!
_flag
)
{
return
}
const
loading
=
this
.
$loading
({
lock
:
true
,
text
:
''
,
spinner
:
''
,
background
:
'rgba(255, 255, 255, 0.9)'
})
cAction
.
chapterAction
.
getExamDetail
(
this
.
sid
,
this
.
cid
,
this
.
id
).
then
(
_data
=>
{
let
_ajax
=
null
if
(
this
.
courseExam
)
{
_ajax
=
cAction
.
chapterAction
.
getExamDetailAfterCourse
}
else
{
_ajax
=
cAction
.
chapterAction
.
getExamDetail
}
_ajax
(
this
.
sid
,
this
.
cid
,
this
.
id
).
then
(
_data
=>
{
this
.
exam
=
{}
}).
catch
(
e
=>
{
this
.
$message
.
error
(
e
.
message
)
}).
finally
(()
=>
{
this
.
setTime
=
setInterval
(()
=>
{
...
...
client/client/components/player/chapterVideo/videoH5.vue
浏览文件 @
cc8387a2
...
...
@@ -21,6 +21,7 @@ let videoPlayer = null
let
objPlayer
=
null
let
continueStart
=
0
// 继续学习初始值
let
isLocked
=
true
// 是否开启 - 锁定音视频播放
export
default
{
props
:
{
...
...
@@ -51,6 +52,7 @@ export default {
const
loading
=
this
.
$loading
({
lock
:
true
,
text
:
''
,
spinner
:
''
,
background
:
'rgba(255, 255, 255, 0.9)'
})
cAction
.
chapterAction
.
getCurrentChapterDetailAliyun
(
this
.
videoId
).
then
(
json
=>
{
this
.
videoArr
=
json
.
video
isLocked
=
json
.
isLocked
let
player
=
this
.
getPlayer
()
if
(
!
objPlayer
||
!
player
.
innerHTML
)
{
this
.
renderPlayer
(
PLAYER_ID
,
this
.
videoId
,
this
.
autoPlay
,
this
.
videoSrt
,
this
.
username
,
this
.
width
,
this
.
height
)
...
...
@@ -74,6 +76,13 @@ export default {
}
else
if
(
continueStart
)
{
videoPlayer
.
seek
(
parseInt
(
continueStart
))
}
/* 是否可以 第一次调整音视频进度 */
if
(
!
isLocked
)
{
if
(
that
.
chapterVideo
.
progress
.
mpt
+
20
<
videoPlayer
.
getDuration
())
{
$
(
'.prism-progress'
).
css
({
'pointer-events'
:
'none'
})
$
(
'.rate-components'
).
hide
()
}
}
}
// 播放过程中不断触发,传递当前播放到的时间
window
.
_playerIng
=
function
(
time
)
{
...
...
@@ -146,6 +155,7 @@ export default {
const
loading
=
that
.
$loading
({
lock
:
true
,
text
:
''
,
spinner
:
''
,
background
:
'rgba(255, 255, 255, 0.9)'
})
cAction
.
chapterAction
.
getCurrentChapterDetailAliyun
(
that
.
videoId
).
then
(
json
=>
{
that
.
videoArr
=
json
.
video
isLocked
=
json
.
isLocked
let
player
=
that
.
getPlayer
()
if
(
!
objPlayer
||
!
player
.
innerHTML
)
{
that
.
renderPlayer
(
PLAYER_ID
,
that
.
videoId
,
that
.
autoPlay
,
that
.
videoSrt
,
that
.
username
,
that
.
width
,
that
.
height
)
...
...
client/client/components/player/rightSide/sideChapterList.vue
浏览文件 @
cc8387a2
...
...
@@ -50,6 +50,8 @@ export default {
return
}
this
.
$router
.
push
({
path
:
`/player/
${
cid
}
/course-work/course_work`
})
}
else
if
(
_course
.
chapters
[
i2
].
id
===
'course_exam'
)
{
this
.
$router
.
push
({
path
:
`/player/
${
cid
}
/chapter-exam/
${
_course
.
chapters
[
i2
].
exam_id
}
`
})
}
else
if
(
_course
.
chapters
[
i2
].
type
===
3
)
{
if
(
_course
.
chapters
[
i2
].
work_type
===
1
)
{
this
.
$router
.
push
({
path
:
`/player/
${
cid
}
/chapter-exam/
${
_id
}
`
})
...
...
client/client/components/services/api/chapter_api.js
浏览文件 @
cc8387a2
...
...
@@ -40,12 +40,22 @@ export default class ChapterAPI extends BaseAPI {
* 获取试题信息
* @param {[string]} eid
*/
getExamDetail
=
(
eid
)
=>
this
.
get
(
`/v2/education/homeworks/
${
eid
}
`
,
{})
getExamDetail
=
(
sid
,
cid
,
eid
)
=>
this
.
get
(
`/v2/education/homeworks/
${
eid
}
`
,
{})
/**
* 提交考试信息
* @param {[object]} param
*/
submitExamDetail
=
(
param
)
=>
this
.
post
(
`/v2/education/homeworks`
,
param
)
/**
* 获取试题信息 - 课程后考试
* @param {[string]} eid
*/
getExamDetailAfterCourse
=
(
sid
,
cid
,
eid
)
=>
this
.
get
(
`/v2/education/examinations/
${
cid
}
/
${
eid
}
`
,
{})
/**
* 提交考试信息 - 课程后考试
* @param {[object]} param
*/
submitExamDetailAfterCourse
=
(
param
)
=>
this
.
post
(
`/v2/education/examinations`
,
param
)
/**
* 获取对应 作业或问题 回答
* @param {[string]} id resource_id
...
...
client/client/project/actions/ChapterAction.js
浏览文件 @
cc8387a2
...
...
@@ -103,6 +103,32 @@ export default class ChapterAction {
nextVideo
:
nextVideo
,
prevVideo
:
prevVideo
}
/* 课程考试单独设置 */
let
tmp123
=
null
if
(
curJson
&&
!
curJson
.
id
&&
_res
.
examinations
.
length
&&
_id
===
_res
.
examinations
[
0
].
id
)
{
tmp123
=
_res
.
examinations
[
0
]
if
(
tmp123
)
{
tmp123
.
course_id
=
_res
.
course_id
tmp123
.
chapter_id
=
tmp123
.
id
tmp123
.
work_id
=
tmp123
.
id
tmp123
.
semester_id
=
_res
.
semester_id
tmp123
.
courseExam
=
true
}
curJson
=
{
id
:
tmp123
.
id
,
video_provider
:
''
,
time
:
''
,
name
:
'课程考试'
,
chapterId
:
tmp123
.
id
,
// 需要chapterId 用来 提交 作业或问题 , 这个 chapterId 是 每个章节下 对应课程的 id,不是 章节id
type
:
3
,
work_type
:
1
,
homework
:
tmp123
,
chapterRead
:
''
,
chapterWork
:
''
,
chapterVideo
:
''
}
}
json
.
course
.
push
({
title
:
'大作业及资料'
,
chapters
:
[{
...
...
@@ -111,11 +137,16 @@ export default class ChapterAction {
// }, {
name
:
'课程资料'
,
id
:
'course_info'
// }, {
// name: '教学评估',
// id: 'teach_evaluation'
},
{
name
:
'教学评估'
,
id
:
'teach_evaluation'
name
:
'课程考试'
,
id
:
'course_exam'
,
exam_id
:
(
_res
.
examinations
&&
_res
.
examinations
[
0
]
&&
_res
.
examinations
[
0
].
id
)
||
''
}]
})
let
courseWork
=
_res
.
curriculum
||
{}
courseWork
[
'end_date'
]
=
_res
.
end_date
courseWork
[
'essay_date'
]
=
_res
.
essay_date
...
...
@@ -172,7 +203,8 @@ export default class ChapterAction {
selectIndex
:
0
,
timeArr
:
(
_res
.
ppts
&&
_res
.
ppts
.
map
(
function
(
_
,
i
)
{
return
_
.
ppt_point
}))
||
[]
},
rData
:
_res
rData
:
_res
,
is_locked
:
_res
.
is_locked
}
// callback(json) // 可以不使用callback 因为使用then
return
json
...
...
@@ -212,6 +244,21 @@ export default class ChapterAction {
return
res
})
}
/* 获取试题信息 - 课程后考试 */
getExamDetailAfterCourse
(
sid
,
cid
,
eid
)
{
console
.
log
(
eid
)
return
chapterApi
.
getExamDetailAfterCourse
(
sid
,
cid
,
eid
).
then
(
res
=>
{
// callback(res) // 可以不使用callback 因为使用then
return
res
})
}
/* 提交考试信息 - 课程后考试 */
submitExamDetailAfterCourse
(
param
)
{
return
chapterApi
.
submitExamDetailAfterCourse
(
param
).
then
(
res
=>
{
// callback(res) // 可以不使用callback 因为使用then
return
res
})
}
/* 获取对应 作业或问题 回答 */
getHomework
(
sid
,
cid
,
id
)
{
return
chapterApi
.
getHomework
(
sid
,
cid
,
id
).
then
(
res
=>
res
)
...
...
client/client/project/actions/CourseAction.js
浏览文件 @
cc8387a2
...
...
@@ -142,13 +142,22 @@ export default class CourseAction {
cid
:
cid
})
json
.
tabs1ChapterList
.
course
.
push
({
title
:
'
教学评估
'
,
title
:
'
课程考试
'
,
isUp
:
true
,
chapters
:
[],
type
:
'teach_evaluation'
,
data
:
data
.
examinations
,
type
:
'course_exam'
,
sid
:
sid
,
cid
:
cid
})
// json.tabs1ChapterList.course.push({
// title: '教学评估',
// isUp: true,
// chapters: [],
// type: 'teach_evaluation',
// sid: sid,
// cid: cid
// })
/* 课程考核 考核标准文案读取 */
json
.
tabs3richTest
=
cur
.
course_evaluation
// callback(json) // 可以不使用callback 因为使用then
...
...
client/client/project/pages/myLearn/courseDetail.vue
浏览文件 @
cc8387a2
...
...
@@ -482,6 +482,9 @@ export default {
// } else {
// this.$router.push({ path: `/survey-phone/${cid}` })
// }
} else if (course.type === '
course_exam
') {
let _id = course.data[0].id
this.$router.push({ path: `/player/${cid}/chapter-exam/${_id}` })
}
}
},
...
...
server/client-dist/index.html
浏览文件 @
cc8387a2
...
...
@@ -15,4 +15,4 @@
<script src="https://zws-imgs-pub.ezijing.com/static/build/learn-mba/static/compatible/console-polyfill.js"></script>
<script src="https://zws-imgs-pub.ezijing.com/static/build/learn-mba/static/compatible/html5shiv.min.js"></script>
<script src="https://zws-imgs-pub.ezijing.com/static/build/learn-mba/static/compatible/respond.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
src=
"https://zws-imgs-pub.ezijing.com/static/build/learn-enterprise/resources/manifest.f8243a97.js"
></script><script
type=
"text/javascript"
src=
"https://zws-imgs-pub.ezijing.com/static/build/learn-enterprise/resources/vendor.b388921e.js"
></script><script
type=
"text/javascript"
src=
"https://zws-imgs-pub.ezijing.com/static/build/learn-enterprise/resources/app.3ae78adc.js"
></script></body></html>
\ No newline at end of file
<![endif]-->
<script
type=
"text/javascript"
src=
"https://zws-imgs-pub.ezijing.com/static/build/learn-enterprise/resources/manifest.2efa785f.js"
></script><script
type=
"text/javascript"
src=
"https://zws-imgs-pub.ezijing.com/static/build/learn-enterprise/resources/vendor.b388921e.js"
></script><script
type=
"text/javascript"
src=
"https://zws-imgs-pub.ezijing.com/static/build/learn-enterprise/resources/app.dd8dd6c2.js"
></script></body></html>
\ No newline at end of file
server/client-dist/resources/11.
dbc8ed6d
.js
→
server/client-dist/resources/11.
aeae3d41
.js
浏览文件 @
cc8387a2
差异被折叠。
点击展开。
server/client-dist/resources/14.02a4bcce.js
0 → 100644
浏览文件 @
cc8387a2
差异被折叠。
点击展开。
server/client-dist/resources/14.
96e432718f4
5.css
→
server/client-dist/resources/14.
2e113f3cf71
5.css
浏览文件 @
cc8387a2
.play
.exam
[
data-v-9cab85c2
]
{
padding
:
0
}
.play
.exam
.topic
[
data-v-9cab85c2
]
{
display
:
inline-block
;
margin-bottom
:
.1rem
}
.play
.exam
.topic
.tit
[
data-v-9cab85c2
]
{
margin
:
0
auto
;
padding
:
0
.2rem
;
text-align
:
center
;
font-size
:
.24rem
;
color
:
#313131
;
background
:
#fff
;
-moz-box-sizing
:
border-box
;
box-sizing
:
border-box
;
-webkit-box-sizing
:
border-box
}
.play
.exam
.topic
.cur
[
data-v-9cab85c2
]
{
text-align
:
center
;
font-size
:
.18rem
;
color
:
#313131
;
line-height
:
.4rem
}
.play
.exam
.q-group
[
data-v-9cab85c2
]
{
padding
:
.1rem
;
border-bottom
:
1px
solid
hsla
(
0
,
0%
,
78.8%
,
.48
);
overflow
:
hidden
}
.play
.exam
.q-group
.q-num
[
data-v-9cab85c2
]
{
float
:
left
;
margin-right
:
.1rem
;
font-size
:
.16rem
;
color
:
#676a6c
}
.play
.exam
.q-group
.q-title
[
data-v-9cab85c2
]
{
float
:
left
;
width
:
90%
;
font-size
:
.16rem
;
color
:
#676a6c
;
text-align
:
justify
}
.play
.exam
.q-group
.q-type
[
data-v-9cab85c2
]
{
float
:
right
;
font-size
:
.16rem
;
color
:
#676a6c
}
.play
.exam
.q-group
.radio-group
[
data-v-9cab85c2
]
{
float
:
left
;
margin-top
:
.1rem
;
width
:
100%
}
.play
.exam
.q-group
.radio-group
.radio
[
data-v-9cab85c2
]
{
display
:
block
;
font-size
:
.18rem
;
color
:
#3f3b3a
;
line-height
:
.3rem
;
margin-bottom
:
.1rem
}
.play
.exam
.q-group
.checkbox-group
[
data-v-9cab85c2
]
{
float
:
left
;
margin-top
:
.1rem
;
width
:
100%
}
.play
.exam
.q-group
.checkbox-group
.checkbox
[
data-v-9cab85c2
]
{
display
:
block
;
font-size
:
.18rem
;
color
:
#3f3b3a
;
line-height
:
.3rem
;
margin-bottom
:
.1rem
}
.play
.exam
.q-group
.checkbox-group
.checkbox.error
[
data-v-9cab85c2
],
.play
.exam
.q-group
.radio-group
.radio.error
[
data-v-9cab85c2
]
{
color
:
#d80000
}
.play
.exam
.q-group
.checkbox-group
.checkbox.success
[
data-v-9cab85c2
],
.play
.exam
.q-group
.radio-group
.radio.success
[
data-v-9cab85c2
]
{
color
:
#090
}
.play
.exam
.q-group
.result
[
data-v-9cab85c2
]
{
float
:
right
;
font-size
:
.18rem
;
color
:
#3f3b3a
;
margin-right
:
0
}
.play
.exam
.q-group
.result
.stu
[
data-v-9cab85c2
]
{
display
:
inline-block
}
.play
.exam
.q-group
.result
.stu.error
[
data-v-9cab85c2
]
{
color
:
#d80000
}
.play
.exam
.q-group
.result
.stu.success
[
data-v-9cab85c2
]
{
color
:
#090
}
.play
.exam
.q-group
[
data-v-9cab85c2
]
:last-child
{
border-bottom
:
none
}
.play
.exam
.btn
[
data-v-9cab85c2
]
{
margin
:
.2rem
auto
;
width
:
60%
;
height
:
.5rem
;
line-height
:
.5rem
;
font-size
:
.16rem
;
text-align
:
center
;
font-weight
:
300
;
color
:
#fff
;
-webkit-border-radius
:
.1rem
;
-moz-border-radius
:
.1rem
;
border-radius
:
.1rem
;
background
:
#b49441
;
cursor
:
pointer
}
.play
.exam
.btn.on
[
data-v-9cab85c2
]
{
opacity
:
.5
}
.play
.exam
.care
[
data-v-9cab85c2
]
{
font-size
:
.16rem
;
color
:
#d80000
;
text-align
:
center
}
\ No newline at end of file
.play
.exam
[
data-v-180250d6
]
{
padding
:
0
}
.play
.exam
.topic
[
data-v-180250d6
]
{
display
:
inline-block
;
margin-bottom
:
.1rem
}
.play
.exam
.topic
.tit
[
data-v-180250d6
]
{
margin
:
0
auto
;
padding
:
0
.2rem
;
text-align
:
center
;
font-size
:
.24rem
;
color
:
#313131
;
background
:
#fff
;
-moz-box-sizing
:
border-box
;
box-sizing
:
border-box
;
-webkit-box-sizing
:
border-box
}
.play
.exam
.topic
.cur
[
data-v-180250d6
]
{
text-align
:
center
;
font-size
:
.18rem
;
color
:
#313131
;
line-height
:
.4rem
}
.play
.exam
.q-group
[
data-v-180250d6
]
{
padding
:
.1rem
;
border-bottom
:
1px
solid
hsla
(
0
,
0%
,
78.8%
,
.48
);
overflow
:
hidden
}
.play
.exam
.q-group
.q-num
[
data-v-180250d6
]
{
float
:
left
;
margin-right
:
.1rem
;
font-size
:
.16rem
;
color
:
#676a6c
}
.play
.exam
.q-group
.q-title
[
data-v-180250d6
]
{
float
:
left
;
width
:
90%
;
font-size
:
.16rem
;
color
:
#676a6c
;
text-align
:
justify
}
.play
.exam
.q-group
.q-type
[
data-v-180250d6
]
{
float
:
right
;
font-size
:
.16rem
;
color
:
#676a6c
}
.play
.exam
.q-group
.radio-group
[
data-v-180250d6
]
{
float
:
left
;
margin-top
:
.1rem
;
width
:
100%
}
.play
.exam
.q-group
.radio-group
.radio
[
data-v-180250d6
]
{
display
:
block
;
font-size
:
.18rem
;
color
:
#3f3b3a
;
line-height
:
.3rem
;
margin-bottom
:
.1rem
}
.play
.exam
.q-group
.checkbox-group
[
data-v-180250d6
]
{
float
:
left
;
margin-top
:
.1rem
;
width
:
100%
}
.play
.exam
.q-group
.checkbox-group
.checkbox
[
data-v-180250d6
]
{
display
:
block
;
font-size
:
.18rem
;
color
:
#3f3b3a
;
line-height
:
.3rem
;
margin-bottom
:
.1rem
}
.play
.exam
.q-group
.checkbox-group
.checkbox.error
[
data-v-180250d6
],
.play
.exam
.q-group
.radio-group
.radio.error
[
data-v-180250d6
]
{
color
:
#d80000
}
.play
.exam
.q-group
.checkbox-group
.checkbox.success
[
data-v-180250d6
],
.play
.exam
.q-group
.radio-group
.radio.success
[
data-v-180250d6
]
{
color
:
#090
}
.play
.exam
.q-group
.result
[
data-v-180250d6
]
{
float
:
right
;
font-size
:
.18rem
;
color
:
#3f3b3a
;
margin-right
:
0
}
.play
.exam
.q-group
.result
.stu
[
data-v-180250d6
]
{
display
:
inline-block
}
.play
.exam
.q-group
.result
.stu.error
[
data-v-180250d6
]
{
color
:
#d80000
}
.play
.exam
.q-group
.result
.stu.success
[
data-v-180250d6
]
{
color
:
#090
}
.play
.exam
.q-group
[
data-v-180250d6
]
:last-child
{
border-bottom
:
none
}
.play
.exam
.btn
[
data-v-180250d6
]
{
margin
:
.2rem
auto
;
width
:
60%
;
height
:
.5rem
;
line-height
:
.5rem
;
font-size
:
.16rem
;
text-align
:
center
;
font-weight
:
300
;
color
:
#fff
;
-webkit-border-radius
:
.1rem
;
-moz-border-radius
:
.1rem
;
border-radius
:
.1rem
;
background
:
#b49441
;
cursor
:
pointer
}
.play
.exam
.btn.on
[
data-v-180250d6
]
{
opacity
:
.5
}
.play
.exam
.care
[
data-v-180250d6
]
{
font-size
:
.16rem
;
color
:
#d80000
;
text-align
:
center
}
\ No newline at end of file
server/client-dist/resources/14.71455ff6.js
deleted
100644 → 0
浏览文件 @
76067d6a
差异被折叠。
点击展开。
server/client-dist/resources/21.
186459ef
.js
→
server/client-dist/resources/21.
87fdb223
.js
浏览文件 @
cc8387a2
差异被折叠。
点击展开。
server/client-dist/resources/21.
76db4080a681
.css
→
server/client-dist/resources/21.
cf5249c9d1f6
.css
浏览文件 @
cc8387a2
差异被折叠。
点击展开。
server/client-dist/resources/6.
9bb7112
c.js
→
server/client-dist/resources/6.
492b006
c.js
浏览文件 @
cc8387a2
差异被折叠。
点击展开。
server/client-dist/resources/6.
7acaef322a03
.css
→
server/client-dist/resources/6.
adf556fa1464
.css
浏览文件 @
cc8387a2
差异被折叠。
点击展开。
server/client-dist/resources/app.
3ae78adc
.js
→
server/client-dist/resources/app.
dd8dd6c2
.js
浏览文件 @
cc8387a2
This source diff could not be displayed because it is too large. You can
view the blob
instead.
server/client-dist/resources/manifest.
f8243a97
.js
→
server/client-dist/resources/manifest.
2efa785f
.js
浏览文件 @
cc8387a2
!
function
(
c
){
function
e
(
e
){
for
(
var
t
,
r
,
n
=
e
[
0
],
a
=
e
[
1
],
o
=
e
[
2
],
f
=
0
,
d
=
[];
f
<
n
.
length
;
f
++
)
r
=
n
[
f
],
Object
.
prototype
.
hasOwnProperty
.
call
(
s
,
r
)
&&
s
[
r
]
&&
d
.
push
(
s
[
r
][
0
]),
s
[
r
]
=
0
;
for
(
t
in
a
)
Object
.
prototype
.
hasOwnProperty
.
call
(
a
,
t
)
&&
(
c
[
t
]
=
a
[
t
]);
for
(
p
&&
p
(
e
);
d
.
length
;)
d
.
shift
()();
return
i
.
push
.
apply
(
i
,
o
||
[]),
u
()}
function
u
(){
for
(
var
e
,
t
=
0
;
t
<
i
.
length
;
t
++
){
for
(
var
r
=
i
[
t
],
n
=!
0
,
a
=
1
;
a
<
r
.
length
;
a
++
){
var
o
=
r
[
a
];
0
!==
s
[
o
]
&&
(
n
=!
1
)}
n
&&
(
i
.
splice
(
t
--
,
1
),
e
=
b
(
b
.
s
=
r
[
0
]))}
return
e
}
var
r
=
{},
l
=
{
3
:
0
},
s
=
{
3
:
0
},
i
=
[];
function
b
(
e
){
if
(
r
[
e
])
return
r
[
e
].
exports
;
var
t
=
r
[
e
]
=
{
i
:
e
,
l
:
!
1
,
exports
:{}};
return
c
[
e
].
call
(
t
.
exports
,
t
,
t
.
exports
,
b
),
t
.
l
=!
0
,
t
.
exports
}
b
.
e
=
function
(
i
){
var
e
=
[];
l
[
i
]?
e
.
push
(
l
[
i
]):
0
!==
l
[
i
]
&&
{
0
:
1
,
5
:
1
,
6
:
1
,
7
:
1
,
8
:
1
,
9
:
1
,
10
:
1
,
11
:
1
,
12
:
1
,
13
:
1
,
14
:
1
,
15
:
1
,
16
:
1
,
17
:
1
,
18
:
1
,
19
:
1
,
20
:
1
,
21
:
1
,
22
:
1
,
23
:
1
,
24
:
1
,
25
:
1
,
26
:
1
}[
i
]
&&
e
.
push
(
l
[
i
]
=
new
Promise
(
function
(
e
,
n
){
for
(
var
t
=
"resources/"
+
({}[
i
]
||
i
)
+
"."
+
{
0
:
"8c0fccc8dcdf"
,
1
:
"31d6cfe0d16a"
,
5
:
"930984a29124"
,
6
:
"7acaef322a03"
,
7
:
"5aff6cfc48d7"
,
8
:
"0f44f155a214"
,
9
:
"7acee47d5dff"
,
10
:
"7af67fe88b2d"
,
11
:
"5429a27bb7bb"
,
12
:
"1f6314bfe897"
,
13
:
"35e9fd271343"
,
14
:
"96e432718f45"
,
15
:
"ae04a260ff2d"
,
16
:
"66f6f1b2e2f8"
,
17
:
"e49666539688"
,
18
:
"0ba27a54f3b2"
,
19
:
"649d251c3201"
,
20
:
"77c545d728a7"
,
21
:
"76db4080a681"
,
22
:
"ea3ddb59c757"
,
23
:
"d0b0367588f8"
,
24
:
"d0a83561e812"
,
25
:
"074cd78c0ecf"
,
26
:
"f9edc40b7bd4"
,
27
:
"31d6cfe0d16a"
,
28
:
"31d6cfe0d16a"
,
29
:
"31d6cfe0d16a"
,
30
:
"31d6cfe0d16a"
,
31
:
"31d6cfe0d16a"
,
32
:
"31d6cfe0d16a"
,
33
:
"31d6cfe0d16a"
,
34
:
"31d6cfe0d16a"
,
35
:
"31d6cfe0d16a"
}[
i
]
+
".css"
,
a
=
b
.
p
+
t
,
r
=
document
.
getElementsByTagName
(
"link"
),
o
=
0
;
o
<
r
.
length
;
o
++
){
var
f
=
(
c
=
r
[
o
]).
getAttribute
(
"data-href"
)
||
c
.
getAttribute
(
"href"
);
if
(
"stylesheet"
===
c
.
rel
&&
(
f
===
t
||
f
===
a
))
return
e
()}
var
d
=
document
.
getElementsByTagName
(
"style"
);
for
(
o
=
0
;
o
<
d
.
length
;
o
++
){
var
c
;
if
((
f
=
(
c
=
d
[
o
]).
getAttribute
(
"data-href"
))
===
t
||
f
===
a
)
return
e
()}
var
u
=
document
.
createElement
(
"link"
);
u
.
rel
=
"stylesheet"
,
u
.
type
=
"text/css"
,
u
.
onload
=
e
,
u
.
onerror
=
function
(
e
){
var
t
=
e
&&
e
.
target
&&
e
.
target
.
src
||
a
,
r
=
new
Error
(
"Loading CSS chunk "
+
i
+
" failed.
\
n("
+
t
+
")"
);
r
.
request
=
t
,
delete
l
[
i
],
u
.
parentNode
.
removeChild
(
u
),
n
(
r
)},
u
.
href
=
a
,
document
.
getElementsByTagName
(
"head"
)[
0
].
appendChild
(
u
)}).
then
(
function
(){
l
[
i
]
=
0
}));
var
r
=
s
[
i
];
if
(
0
!==
r
)
if
(
r
)
e
.
push
(
r
[
2
]);
else
{
var
t
=
new
Promise
(
function
(
e
,
t
){
r
=
s
[
i
]
=
[
e
,
t
]});
e
.
push
(
r
[
2
]
=
t
);
var
n
,
a
=
document
.
createElement
(
"script"
);
a
.
charset
=
"utf-8"
,
a
.
timeout
=
120
,
b
.
nc
&&
a
.
setAttribute
(
"nonce"
,
b
.
nc
),
a
.
src
=
function
(
e
){
return
b
.
p
+
"resources/"
+
({}[
e
]
||
e
)
+
"."
+
{
0
:
"c28ab134"
,
1
:
"f1b282bf"
,
5
:
"b82cded8"
,
6
:
"9bb7112c"
,
7
:
"210f0f54"
,
8
:
"781e1e89"
,
9
:
"cda77657"
,
10
:
"749ebb9a"
,
11
:
"dbc8ed6d"
,
12
:
"3044a2f5"
,
13
:
"b80e2183"
,
14
:
"71455ff6"
,
15
:
"fa23ee4c"
,
16
:
"281206cf"
,
17
:
"a023a7b6"
,
18
:
"358ade5e"
,
19
:
"57ebdaa1"
,
20
:
"c3d396b8"
,
21
:
"186459ef"
,
22
:
"8ded5618"
,
23
:
"ae5610e2"
,
24
:
"168bd3f3"
,
25
:
"7daab159"
,
26
:
"dcb1b880"
,
27
:
"4f93b09f"
,
28
:
"06406c1e"
,
29
:
"472e302b"
,
30
:
"ab5826d0"
,
31
:
"73286291"
,
32
:
"a6981eaf"
,
33
:
"f5d7e6f7"
,
34
:
"d0f7ea55"
,
35
:
"1b5301d2"
}[
e
]
+
".js"
}(
i
);
var
o
=
new
Error
;
n
=
function
(
e
){
a
.
onerror
=
a
.
onload
=
null
,
clearTimeout
(
f
);
var
t
=
s
[
i
];
if
(
0
!==
t
){
if
(
t
){
var
r
=
e
&&
(
"load"
===
e
.
type
?
"missing"
:
e
.
type
),
n
=
e
&&
e
.
target
&&
e
.
target
.
src
;
o
.
message
=
"Loading chunk "
+
i
+
" failed.
\
n("
+
r
+
": "
+
n
+
")"
,
o
.
name
=
"ChunkLoadError"
,
o
.
type
=
r
,
o
.
request
=
n
,
t
[
1
](
o
)}
s
[
i
]
=
void
0
}};
var
f
=
setTimeout
(
function
(){
n
({
type
:
"timeout"
,
target
:
a
})},
12
e4
);
a
.
onerror
=
a
.
onload
=
n
,
document
.
head
.
appendChild
(
a
)}
return
Promise
.
all
(
e
)},
b
.
m
=
c
,
b
.
c
=
r
,
b
.
d
=
function
(
e
,
t
,
r
){
b
.
o
(
e
,
t
)
||
Object
.
defineProperty
(
e
,
t
,{
enumerable
:
!
0
,
get
:
r
})},
b
.
r
=
function
(
e
){
"undefined"
!=
typeof
Symbol
&&
Symbol
.
toStringTag
&&
Object
.
defineProperty
(
e
,
Symbol
.
toStringTag
,{
value
:
"Module"
}),
Object
.
defineProperty
(
e
,
"__esModule"
,{
value
:
!
0
})},
b
.
t
=
function
(
t
,
e
){
if
(
1
&
e
&&
(
t
=
b
(
t
)),
8
&
e
)
return
t
;
if
(
4
&
e
&&
"object"
==
typeof
t
&&
t
&&
t
.
__esModule
)
return
t
;
var
r
=
Object
.
create
(
null
);
if
(
b
.
r
(
r
),
Object
.
defineProperty
(
r
,
"default"
,{
enumerable
:
!
0
,
value
:
t
}),
2
&
e
&&
"string"
!=
typeof
t
)
for
(
var
n
in
t
)
b
.
d
(
r
,
n
,
function
(
e
){
return
t
[
e
]}.
bind
(
null
,
n
));
return
r
},
b
.
n
=
function
(
e
){
var
t
=
e
&&
e
.
__esModule
?
function
(){
return
e
.
default
}:
function
(){
return
e
};
return
b
.
d
(
t
,
"a"
,
t
),
t
},
b
.
o
=
function
(
e
,
t
){
return
Object
.
prototype
.
hasOwnProperty
.
call
(
e
,
t
)},
b
.
p
=
"https://zws-imgs-pub.ezijing.com/static/build/learn-enterprise/"
,
b
.
oe
=
function
(
e
){
throw
console
.
error
(
e
),
e
};
var
t
=
window
.
webpackJsonp
=
window
.
webpackJsonp
||
[],
n
=
t
.
push
.
bind
(
t
);
t
.
push
=
e
,
t
=
t
.
slice
();
for
(
var
a
=
0
;
a
<
t
.
length
;
a
++
)
e
(
t
[
a
]);
var
p
=
n
;
u
()}([]);
\ No newline at end of file
!
function
(
d
){
function
e
(
e
){
for
(
var
t
,
r
,
n
=
e
[
0
],
a
=
e
[
1
],
f
=
e
[
2
],
o
=
0
,
c
=
[];
o
<
n
.
length
;
o
++
)
r
=
n
[
o
],
Object
.
prototype
.
hasOwnProperty
.
call
(
s
,
r
)
&&
s
[
r
]
&&
c
.
push
(
s
[
r
][
0
]),
s
[
r
]
=
0
;
for
(
t
in
a
)
Object
.
prototype
.
hasOwnProperty
.
call
(
a
,
t
)
&&
(
d
[
t
]
=
a
[
t
]);
for
(
p
&&
p
(
e
);
c
.
length
;)
c
.
shift
()();
return
i
.
push
.
apply
(
i
,
f
||
[]),
u
()}
function
u
(){
for
(
var
e
,
t
=
0
;
t
<
i
.
length
;
t
++
){
for
(
var
r
=
i
[
t
],
n
=!
0
,
a
=
1
;
a
<
r
.
length
;
a
++
){
var
f
=
r
[
a
];
0
!==
s
[
f
]
&&
(
n
=!
1
)}
n
&&
(
i
.
splice
(
t
--
,
1
),
e
=
b
(
b
.
s
=
r
[
0
]))}
return
e
}
var
r
=
{},
l
=
{
3
:
0
},
s
=
{
3
:
0
},
i
=
[];
function
b
(
e
){
if
(
r
[
e
])
return
r
[
e
].
exports
;
var
t
=
r
[
e
]
=
{
i
:
e
,
l
:
!
1
,
exports
:{}};
return
d
[
e
].
call
(
t
.
exports
,
t
,
t
.
exports
,
b
),
t
.
l
=!
0
,
t
.
exports
}
b
.
e
=
function
(
i
){
var
e
=
[];
l
[
i
]?
e
.
push
(
l
[
i
]):
0
!==
l
[
i
]
&&
{
0
:
1
,
5
:
1
,
6
:
1
,
7
:
1
,
8
:
1
,
9
:
1
,
10
:
1
,
11
:
1
,
12
:
1
,
13
:
1
,
14
:
1
,
15
:
1
,
16
:
1
,
17
:
1
,
18
:
1
,
19
:
1
,
20
:
1
,
21
:
1
,
22
:
1
,
23
:
1
,
24
:
1
,
25
:
1
,
26
:
1
}[
i
]
&&
e
.
push
(
l
[
i
]
=
new
Promise
(
function
(
e
,
n
){
for
(
var
t
=
"resources/"
+
({}[
i
]
||
i
)
+
"."
+
{
0
:
"8c0fccc8dcdf"
,
1
:
"31d6cfe0d16a"
,
5
:
"930984a29124"
,
6
:
"adf556fa1464"
,
7
:
"5aff6cfc48d7"
,
8
:
"0f44f155a214"
,
9
:
"7acee47d5dff"
,
10
:
"7af67fe88b2d"
,
11
:
"5429a27bb7bb"
,
12
:
"1f6314bfe897"
,
13
:
"35e9fd271343"
,
14
:
"2e113f3cf715"
,
15
:
"ae04a260ff2d"
,
16
:
"66f6f1b2e2f8"
,
17
:
"e49666539688"
,
18
:
"0ba27a54f3b2"
,
19
:
"649d251c3201"
,
20
:
"77c545d728a7"
,
21
:
"cf5249c9d1f6"
,
22
:
"ea3ddb59c757"
,
23
:
"d0b0367588f8"
,
24
:
"d0a83561e812"
,
25
:
"074cd78c0ecf"
,
26
:
"f9edc40b7bd4"
,
27
:
"31d6cfe0d16a"
,
28
:
"31d6cfe0d16a"
,
29
:
"31d6cfe0d16a"
,
30
:
"31d6cfe0d16a"
,
31
:
"31d6cfe0d16a"
,
32
:
"31d6cfe0d16a"
,
33
:
"31d6cfe0d16a"
,
34
:
"31d6cfe0d16a"
,
35
:
"31d6cfe0d16a"
}[
i
]
+
".css"
,
a
=
b
.
p
+
t
,
r
=
document
.
getElementsByTagName
(
"link"
),
f
=
0
;
f
<
r
.
length
;
f
++
){
var
o
=
(
d
=
r
[
f
]).
getAttribute
(
"data-href"
)
||
d
.
getAttribute
(
"href"
);
if
(
"stylesheet"
===
d
.
rel
&&
(
o
===
t
||
o
===
a
))
return
e
()}
var
c
=
document
.
getElementsByTagName
(
"style"
);
for
(
f
=
0
;
f
<
c
.
length
;
f
++
){
var
d
;
if
((
o
=
(
d
=
c
[
f
]).
getAttribute
(
"data-href"
))
===
t
||
o
===
a
)
return
e
()}
var
u
=
document
.
createElement
(
"link"
);
u
.
rel
=
"stylesheet"
,
u
.
type
=
"text/css"
,
u
.
onload
=
e
,
u
.
onerror
=
function
(
e
){
var
t
=
e
&&
e
.
target
&&
e
.
target
.
src
||
a
,
r
=
new
Error
(
"Loading CSS chunk "
+
i
+
" failed.
\
n("
+
t
+
")"
);
r
.
request
=
t
,
delete
l
[
i
],
u
.
parentNode
.
removeChild
(
u
),
n
(
r
)},
u
.
href
=
a
,
document
.
getElementsByTagName
(
"head"
)[
0
].
appendChild
(
u
)}).
then
(
function
(){
l
[
i
]
=
0
}));
var
r
=
s
[
i
];
if
(
0
!==
r
)
if
(
r
)
e
.
push
(
r
[
2
]);
else
{
var
t
=
new
Promise
(
function
(
e
,
t
){
r
=
s
[
i
]
=
[
e
,
t
]});
e
.
push
(
r
[
2
]
=
t
);
var
n
,
a
=
document
.
createElement
(
"script"
);
a
.
charset
=
"utf-8"
,
a
.
timeout
=
120
,
b
.
nc
&&
a
.
setAttribute
(
"nonce"
,
b
.
nc
),
a
.
src
=
function
(
e
){
return
b
.
p
+
"resources/"
+
({}[
e
]
||
e
)
+
"."
+
{
0
:
"c28ab134"
,
1
:
"f1b282bf"
,
5
:
"b82cded8"
,
6
:
"492b006c"
,
7
:
"210f0f54"
,
8
:
"781e1e89"
,
9
:
"cda77657"
,
10
:
"749ebb9a"
,
11
:
"aeae3d41"
,
12
:
"3044a2f5"
,
13
:
"b80e2183"
,
14
:
"02a4bcce"
,
15
:
"fa23ee4c"
,
16
:
"281206cf"
,
17
:
"a023a7b6"
,
18
:
"358ade5e"
,
19
:
"57ebdaa1"
,
20
:
"c3d396b8"
,
21
:
"87fdb223"
,
22
:
"8ded5618"
,
23
:
"ae5610e2"
,
24
:
"168bd3f3"
,
25
:
"7daab159"
,
26
:
"dcb1b880"
,
27
:
"4f93b09f"
,
28
:
"06406c1e"
,
29
:
"472e302b"
,
30
:
"ab5826d0"
,
31
:
"73286291"
,
32
:
"a6981eaf"
,
33
:
"f5d7e6f7"
,
34
:
"d0f7ea55"
,
35
:
"1b5301d2"
}[
e
]
+
".js"
}(
i
);
var
f
=
new
Error
;
n
=
function
(
e
){
a
.
onerror
=
a
.
onload
=
null
,
clearTimeout
(
o
);
var
t
=
s
[
i
];
if
(
0
!==
t
){
if
(
t
){
var
r
=
e
&&
(
"load"
===
e
.
type
?
"missing"
:
e
.
type
),
n
=
e
&&
e
.
target
&&
e
.
target
.
src
;
f
.
message
=
"Loading chunk "
+
i
+
" failed.
\
n("
+
r
+
": "
+
n
+
")"
,
f
.
name
=
"ChunkLoadError"
,
f
.
type
=
r
,
f
.
request
=
n
,
t
[
1
](
f
)}
s
[
i
]
=
void
0
}};
var
o
=
setTimeout
(
function
(){
n
({
type
:
"timeout"
,
target
:
a
})},
12
e4
);
a
.
onerror
=
a
.
onload
=
n
,
document
.
head
.
appendChild
(
a
)}
return
Promise
.
all
(
e
)},
b
.
m
=
d
,
b
.
c
=
r
,
b
.
d
=
function
(
e
,
t
,
r
){
b
.
o
(
e
,
t
)
||
Object
.
defineProperty
(
e
,
t
,{
enumerable
:
!
0
,
get
:
r
})},
b
.
r
=
function
(
e
){
"undefined"
!=
typeof
Symbol
&&
Symbol
.
toStringTag
&&
Object
.
defineProperty
(
e
,
Symbol
.
toStringTag
,{
value
:
"Module"
}),
Object
.
defineProperty
(
e
,
"__esModule"
,{
value
:
!
0
})},
b
.
t
=
function
(
t
,
e
){
if
(
1
&
e
&&
(
t
=
b
(
t
)),
8
&
e
)
return
t
;
if
(
4
&
e
&&
"object"
==
typeof
t
&&
t
&&
t
.
__esModule
)
return
t
;
var
r
=
Object
.
create
(
null
);
if
(
b
.
r
(
r
),
Object
.
defineProperty
(
r
,
"default"
,{
enumerable
:
!
0
,
value
:
t
}),
2
&
e
&&
"string"
!=
typeof
t
)
for
(
var
n
in
t
)
b
.
d
(
r
,
n
,
function
(
e
){
return
t
[
e
]}.
bind
(
null
,
n
));
return
r
},
b
.
n
=
function
(
e
){
var
t
=
e
&&
e
.
__esModule
?
function
(){
return
e
.
default
}:
function
(){
return
e
};
return
b
.
d
(
t
,
"a"
,
t
),
t
},
b
.
o
=
function
(
e
,
t
){
return
Object
.
prototype
.
hasOwnProperty
.
call
(
e
,
t
)},
b
.
p
=
"https://zws-imgs-pub.ezijing.com/static/build/learn-enterprise/"
,
b
.
oe
=
function
(
e
){
throw
console
.
error
(
e
),
e
};
var
t
=
window
.
webpackJsonp
=
window
.
webpackJsonp
||
[],
n
=
t
.
push
.
bind
(
t
);
t
.
push
=
e
,
t
=
t
.
slice
();
for
(
var
a
=
0
;
a
<
t
.
length
;
a
++
)
e
(
t
[
a
]);
var
p
=
n
;
u
()}([]);
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论