Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
提交
议题看板
打开侧边栏
jingqi.liu
pica.cloud.web-education-admin
提交
d2298748
提交
d2298748
编写于
6月 23, 2020
作者:
guangjun.yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
裁剪问题等
上级
e464163b
变更
11
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
5116 行增加
和
86 行删除
+5116
-86
index.html
index.html
+1
-0
cropper.two copy.vue
src/components/common/cropper.two copy.vue
+138
-0
cropper.two.vue
src/components/common/cropper.two.vue
+5
-5
edit-course-dialog copy 10.vue
.../education/custom-resource/edit-course-dialog copy 10.vue
+1224
-0
edit-course-dialog copy 11.vue
.../education/custom-resource/edit-course-dialog copy 11.vue
+1223
-0
edit-course-dialog copy 8.vue
...s/education/custom-resource/edit-course-dialog copy 8.vue
+1194
-0
edit-course-dialog copy 9.vue
...s/education/custom-resource/edit-course-dialog copy 9.vue
+1196
-0
edit-course-dialog.vue
...mponents/education/custom-resource/edit-course-dialog.vue
+117
-74
global.scss
src/style/global.scss
+6
-0
fetch.js
src/utils/fetch.js
+1
-1
ossUtil.js
src/utils/oss/ossUtil.js
+11
-6
未找到文件。
index.html
浏览文件 @
d2298748
...
@@ -20,5 +20,6 @@
...
@@ -20,5 +20,6 @@
<script
src=
"https://unpkg.com/qiniu-js@2.2.0/dist/qiniu.min.js"
></script>
<script
src=
"https://unpkg.com/qiniu-js@2.2.0/dist/qiniu.min.js"
></script>
<script
src=
"https://cdn.bootcss.com/downloadjs/1.4.8/download.min.js"
></script>
<script
src=
"https://cdn.bootcss.com/downloadjs/1.4.8/download.min.js"
></script>
<script
src=
"https://pv.sohu.com/cityjson?ie=utf-8"
></script>
<script
src=
"https://pv.sohu.com/cityjson?ie=utf-8"
></script>
<script
src=
"https://gosspublic.alicdn.com/aliyun-oss-sdk-5.1.1.min.js"
></script>
</body>
</body>
</html>
</html>
src/components/common/cropper.two copy.vue
0 → 100755
浏览文件 @
d2298748
<
template
>
<div
class=
"rc-cropper"
v-if=
"originImg"
>
<el-row>
<el-col
:span=
"12"
>
<div
class=
"rc-cropper__canvasCrop2"
>
<img
:src=
"originImg"
v-if=
"!cropper"
>
<canvas
:id=
"originImg"
ref=
"canvas"
/>
<div
class=
"rc-cropper__iconCrop"
>
<el-tooltip
content=
"确认裁剪"
placement=
"right"
v-if=
"cropper"
>
<el-button
type=
"success"
size=
"mini"
@
click=
"sureCropper()"
><i
class=
"el-icon-check"
></i></el-button>
</el-tooltip>
</div>
</div>
</el-col>
<el-col
:span=
"10"
>
<div
class=
"rc-cropper__previewImg"
>
<img
:src=
"previewImg"
id=
"previewImg"
/>
</div>
</el-col>
</el-row>
</div>
</
template
>
<
script
>
import
Cropper
from
'cropperjs'
import
'cropperjs/dist/cropper.min.css'
export
default
{
name
:
'rc-cropper2'
,
props
:
{
cropOption
:
{
type
:
Object
,
required
:
true
,
default
:
()
=>
{}
},
originImg
:
{
required
:
true
},
previewImg
:
{
type
:
String
}
},
data
()
{
return
{
cropper
:
null
,
croppShow
:
false
}
},
mounted
()
{
this
.
drawImg
()
},
methods
:
{
// 在canvas上绘制图片
drawImg
()
{
const
_this
=
this
this
.
$nextTick
(()
=>
{
let
canvas
=
document
.
getElementById
(
this
.
originImg
)
if
(
canvas
)
{
canvas
.
width
=
720
canvas
.
height
=
480
let
ctx
=
canvas
.
getContext
(
'2d'
)
ctx
.
clearRect
(
0
,
0
,
canvas
.
width
,
canvas
.
height
)
let
img
=
new
Image
()
img
.
crossOrigin
=
'Anonymous'
img
.
src
=
this
.
originImg
img
.
onload
=
function
()
{
ctx
.
drawImage
(
img
,
0
,
0
,
canvas
.
width
,
canvas
.
height
)
_this
.
initCropper
()
}
}
})
},
// 显示裁剪框
initCropper
()
{
this
.
croppShow
=
true
this
.
cropper
=
new
Cropper
(
this
.
$refs
.
canvas
,
{
checkCrossOrigin
:
true
,
viewMode
:
3
,
zoomOnWheel
:
false
,
// 是否可以通过移动鼠标来放大图像
aspectRatio
:
3
/
2
,
ready
:
()
=>
{
this
.
cropper
.
setData
({
x
:
this
.
cropOption
.
offset_x
,
y
:
this
.
cropOption
.
offset_y
,
width
:
this
.
cropOption
.
width
,
height
:
this
.
cropOption
.
height
})
}
})
// this.cropper = cropper
},
// 确认裁剪
sureCropper
()
{
let
_this
=
this
const
cropParam
=
this
.
cropper
.
getData
()
this
.
cropper
.
getCroppedCanvas
().
toBlob
(
function
(
blob
)
{
let
oFileReader
=
new
FileReader
()
oFileReader
.
onloadend
=
function
(
e
)
{
let
base64
=
e
.
target
.
result
_this
.
$emit
(
'getCropImg'
,
base64
,
cropParam
)
}
oFileReader
.
readAsDataURL
(
blob
)
},
'image/jpeg'
)
}
}
}
</
script
>
<
style
>
.rc-cropper
{
position
:
relative
;
margin-top
:
20px
;
}
/* img {
width: 100%;
height: 100%;
} */
.rc-cropper__canvasCrop2
{
width
:
720px
;
height
:
480px
;
}
.rc-cropper__iconCrop
{
position
:
absolute
;
left
:
45%
;
top
:
0%
;
}
.el-tooltip
{
margin
:
20px
4px
;
display
:
block
;
z-index
:
10000
;
}
.rc-cropper__previewImg
{
width
:
600px
;
height
:
400px
;
}
</
style
>
src/components/common/cropper.two.vue
浏览文件 @
d2298748
<
template
>
<
template
>
<div
class=
"rc-cropper"
v-if=
"originImg"
>
<div
class=
"rc-cropper"
v-if=
"originImg"
>
<el-row>
<el-row>
<el-col
:span=
"12"
>
<el-col>
<div
class=
"rc-cropper__canvasCrop2"
>
<div
class=
"rc-cropper__canvasCrop2"
>
<img
:src=
"originImg"
v-if=
"!cropper"
>
<img
:src=
"originImg"
v-if=
"!cropper"
>
<canvas
:id=
"originImg"
ref=
"canvas"
/>
<canvas
:id=
"originImg"
ref=
"canvas"
/>
...
@@ -12,11 +12,11 @@
...
@@ -12,11 +12,11 @@
</div>
</div>
</div>
</div>
</el-col>
</el-col>
<el-col
:span=
"10"
>
<
!--
<
el-col
:span=
"10"
>
<div
class=
"rc-cropper__previewImg"
>
<div
class=
"rc-cropper__previewImg"
>
<img
:src=
"previewImg"
id=
"previewImg"
/>
<img
:src=
"previewImg"
id=
"previewImg"
/>
</div>
</div>
</el-col>
</el-col>
-->
</el-row>
</el-row>
</div>
</div>
</
template
>
</
template
>
...
@@ -115,8 +115,8 @@ export default {
...
@@ -115,8 +115,8 @@ export default {
} */
} */
.rc-cropper__canvasCrop2
{
.rc-cropper__canvasCrop2
{
width
:
72
0px
;
width
:
90
0px
;
height
:
48
0px
;
height
:
76
0px
;
}
}
.rc-cropper__iconCrop
{
.rc-cropper__iconCrop
{
...
...
src/components/education/custom-resource/edit-course-dialog copy 10.vue
0 → 100644
浏览文件 @
d2298748
<
template
>
<div
class=
"edit-course-wrapper dialog-title-border"
>
<el-dialog
ref=
"testDialogRef"
title=
"上传课程"
:visible=
"dialogVisible"
@
close=
"close"
center
:close-on-click-modal=
"false"
:close-on-press-escape=
"false"
width=
"800px"
>
<div
slot=
"title"
style=
"text-align: left;"
>
<span
style=
"font-weight: 700;"
>
上传课程
</span>
<span
style=
"font-size: 12px;color: #ED3131;margin-left: 4px;"
>
请认真核对上传内容,一旦提交后将不能修改
</span>
</div>
<div
v-show=
"step == 1"
class=
"course-content"
>
<el-form
ref=
"formDataRef"
:model=
"formData"
:rules=
"rules"
label-width=
"120px"
class=
"basic-form"
>
<el-form-item
label=
"课程名称:"
prop=
"courseName"
class=
"valid-msg"
>
<el-col
:span=
"20"
>
<el-input
size=
"small"
v-model=
"formData.courseName"
placeholder=
"请输入课程名称"
style=
"width: 360px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
<!--
<span
class=
"edit-wrapper"
>
<img
class=
"edit-img"
src=
"../../../assets/image/phrase3/icon-pz.png"
/>
修改信息
</span>
-->
</span>
<div
v-show=
"needShowAuditMsg && formData.courseNameCheck"
class=
"error"
>
<span>
错误信息错误信息错误信息错误信息错误信息错误信息息
</span>
<span
class=
"cancle"
>
X
</span>
</div>
</el-col>
</el-form-item>
<el-form-item
label=
"学科分类:"
prop=
"subjectIdList"
class=
"valid-msg"
>
<el-col
:span=
"18"
>
<!-- :props="
{ expandTrigger: 'hover' }" -->
<el-cascader
style=
"width: 360px"
v-model=
"formData.subjectIdList"
:options=
"labelOptions"
:props=
"
{ value: 'id', label: 'name', children: 'subList'}"
>
</el-cascader>
</el-col>
</el-form-item>
<el-form-item
label=
"开放范围:"
prop=
"shareType"
class=
"valid-msg"
>
<el-radio-group
v-model=
"formData.shareType"
>
<el-radio
:label=
"1"
>
机构共享
</el-radio>
</el-radio-group>
</el-form-item>
<div
class=
"basic-item-icon"
>
<span
class=
"require"
>
*
</span>
<el-form-item
label=
"课程视频:"
prop=
"range"
>
<el-upload
class=
"upload-video"
action=
"#"
:before-upload=
"beforeUploadVideo"
:limit=
"3"
:on-exceed=
"handleExceed"
:show-file-list=
"false"
>
<el-button
size=
"small"
type=
"primary"
>
点击上传
</el-button>
<div
slot=
"tip"
class=
"el-upload__tip"
>
<span
class=
"upload-tips"
>
只支持MP4格式,课程视频最多上传100个,单文件最大2G
</span>
<ul
v-show=
"formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
class=
"custom-list"
>
<li
v-for=
"(lecture, index) in formData.courseCustomChapterModels[0].courseCustomLectureModelList"
:key=
"index"
>
<ul
class=
"video"
>
<li>
<span
class=
"title"
>
视频
{{
index
+
1
}}
</span>
<img
src=
"../../../assets/image/phrase3/icon-pin.png"
/>
<span
class=
"name"
@
click=
"previewVideoAction(lecture)"
>
{{
lecture
.
resourceModel
.
name
}}
</span>
</li>
<li>
<img
@
click=
"deleteLecture(index)"
class=
"delete"
src=
"../../../assets/image/phrase3/close.png"
/>
</li>
</ul>
<div
class=
"video-name"
>
<span
class=
"title"
>
<span
>
*
</span>
<span
class=
"video-title"
>
视频名称
</span>
</span>
<el-input
size=
"small"
v-model=
"lecture.name"
placeholder=
"请输入课程名称"
style=
"width: 260px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
lecture
.
name
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</div>
</li>
<span
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
</ul>
<span
v-if=
"!formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
</div>
</el-upload>
</el-form-item>
</div>
<div
class=
"other-content valid-msg"
v-show=
"isShowOtherContent"
>
<div
class=
"tips"
>
注:以下信息为非必填项,您也可以根据实际情况修改
</div>
<div
class=
"basic-item-icon"
>
<!--
<span
class=
"require"
>
*
</span>
-->
<el-form-item
label=
"课程封面:"
>
<el-upload
v-model=
"formData.courseIntroImage"
class=
"bg-uploader"
action=
"#"
accept=
"image/*"
:show-file-list=
"false"
:before-upload=
"beforeUpload1"
:disabled=
"disabled"
>
<div
class=
"bg-img-wrapper"
>
<img
v-if=
"formData.courseIntroImage"
@
mouseover
.
stop=
"imgMouseOver=true"
:src=
"formData.courseIntroImage"
class=
"bg-img"
/>
<img
v-if=
"!formData.courseIntroImage"
class=
"bg-img"
src=
"../../../assets/image/small.png"
/>
</div>
</el-upload>
<div
class=
"limit-text"
>
尺寸:750*420,只支持jpeg格式
</div>
</el-form-item>
<p
class=
"upload-message"
v-if=
"uploadImgMessage"
>
请选择列表图片
</p>
</div>
<el-form-item
label=
"课程难度:"
>
<el-radio-group
v-model=
"formData.difficultyLevel"
>
<el-radio
:label=
"1"
>
初级
</el-radio>
<el-radio
:label=
"2"
>
中级
</el-radio>
<el-radio
:label=
"3"
>
高级
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item
label=
"讲师名称:"
class=
"valid-msg"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorName"
placeholder=
"请输入讲师名称"
style=
"width: 360px"
maxlength=
"25"
@
focus=
"isShowDoctorList=true"
@
input=
"filterDoctorName"
@
blur=
"doctorNameInputBlur"
:disabled=
"disabled"
></el-input>
<ul
v-show=
"isShowDoctorList"
class=
"doctor-select-list"
>
<li
v-for=
"(item, index) in doctorNameList"
:key=
"index"
@
click=
"selectDoctor(item.courseDoctorName, index)"
:class=
"
{'doctor-selected': item.seleted}"
>
<span
v-show=
"item.show"
>
{{
item
.
courseDoctorName
||
'测试名'
}}
</span>
</li>
</ul>
<span
class=
"word-num"
>
{{
(
formData
.
courseCustomDoctorModels
[
0
]
&&
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</el-col>
</el-form-item>
<div
class=
"basic-item-icon"
>
<el-form-item
label=
"讲师头像:"
>
<el-upload
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl"
class=
"bg-uploader"
action=
"#"
accept=
"image/*"
:show-file-list=
"false"
:before-upload=
"beforeUpload2"
:disabled=
"disabled"
>
<div
class=
"bg-img-wrapper"
>
<img
v-if=
"formData.courseCustomDoctorModels && formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl || ''"
@
mouseover
.
stop=
"imgMouseOver=true"
:src=
"formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl"
class=
"bg-img-doctor"
/>
<img
v-if=
"!(formData.courseCustomDoctorModels && formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl || '')"
class=
"bg-img-doctor"
src=
"../../../assets/image/small.png"
/>
</div>
</el-upload>
<div
class=
"limit-text"
>
尺寸:88*88,只支持jpeg格式
</div>
</el-form-item>
<p
class=
"upload-message"
v-if=
"uploadImgMessage"
>
请选择列表图片
</p>
</div>
<el-form-item
label=
"所属机构:"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorHospital"
placeholder=
"请输入所属机构"
style=
"width: 360px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseCustomDoctorModels
&&
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorHospital
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</el-col>
</el-form-item>
<el-form-item
label=
"课程简介:"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
type=
"textarea"
maxlength=
"200"
:autosize=
"
{ minRows: 5}"
placeholder="请输入课程简介"
v-model="formData.courseIntro"
style="width:90%;"
>
</el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseIntro
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/200
</span>
</el-col>
</el-form-item>
</div>
<!-- 更多信息 -->
<div
class=
"separator-line"
>
<span
class=
"line-left"
></span>
<div
@
click=
"toggleOtherContent"
class=
"center"
>
<span>
展开更多信息
</span>
<img
v-show=
"isShowOtherContent"
src=
"../../../assets/image/phrase3/arrow-up.png"
/>
<img
v-show=
"!isShowOtherContent"
src=
"../../../assets/image/phrase3/arrow-down.png"
/>
</div>
<span
class=
"line-right"
></span>
</div>
</el-form>
</div>
<div
v-show=
"step == 2"
class=
"course-content-step2"
>
<img
class=
"success-img"
src=
"../../../assets/image/phrase3/icon-audit-success.png"
/>
<span
class=
"tips-1"
>
您上传的课程已成功提交,预计在3-5个工作日内完成审核
</span>
<span
class=
"tips-2"
>
审核通过后,您才可以选择课程完成项目配置。如有任何疑问可联系云鹊医400-920-8877
</span>
<el-button
type=
"primary"
size=
"small"
icon=
"el-icon-back"
@
click=
"backToOrgCourse"
>
返回机构课程
</el-button>
</div>
<div
v-show=
"step == 1"
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"dialogObj.visible=true"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm('formDataRef')"
>
确 定
</el-button>
</div>
</el-dialog>
<DialogComponet
:dialogObj=
"dialogObj"
@
hide=
"hideCancleTips"
@
confirm=
"dialogObj.visible=false"
></DialogComponet>
<PreviewVideo
:dialogVisible=
"isPreviewVideo"
:videoUrl=
"videoUrl"
@
close=
"isPreviewVideo=false"
></PreviewVideo>
<el-dialog
title=
"拒绝原因"
:visible=
"showCropper"
width=
"1000px"
center
>
<cropper-two
:cropOption=
"cropOption"
@
getCropImg=
"getCropImg(arguments)"
:originImg=
"slide2.oriUrl"
:previewImg=
"slide2.preUrl"
/>
</el-dialog>
<!--
<button
@
click=
"previewVideoAction"
>
test video
</button>
-->
</div>
</
template
>
<
script
>
import
PreviewVideo
from
"@/components/education/custom-resource/preview-video"
;
import
PreviewProtocol
from
"@/components/education/custom-resource/preview-protocol"
;
import
PreviewEditCourse
from
"@/components/education/custom-resource/edit-course-dialog"
;
import
DialogComponet
from
"@/components/education/template/dialog"
;
import
CropperTwo
from
'@/components/common/cropper.two.vue'
import
{
doUpload
,
getFilePath
}
from
"@/utils/qiniu-util"
;
import
{
openLoading
,
closeLoading
,
getQiniuToken1
}
from
"@/utils/utils"
;
import
{
isEmptyUtils
}
from
"@/utils/index"
;
import
{
mapActions
}
from
'vuex'
;
import
{
ossUpload
,
getFilePathForOSS
}
from
"@/utils/oss/ossUtil"
;
let
vm
=
null
;
export
default
{
data
()
{
let
checkCourseName
=
(
rule
,
value
,
callback
)
=>
{
// 如果有审核的信息,则直接报错
if
(
!
value
&&
this
.
needCheckField
)
{
callback
(
new
Error
(
"请输入课程名称"
));
}
else
{
callback
();
}
};
return
{
slide2
:
{
oriUrl
:
'https://avatars1.githubusercontent.com/u/23690568?s=460&v=4'
,
// 原图
preUrl
:
'https://avatars1.githubusercontent.com/u/23690568?s=460&v=4'
// 裁剪后的预览图片,初始化为原图
},
showCropper
:
false
,
cropOption
:
{
offset_x
:
10
,
offset_y
:
10
,
width
:
750
,
height
:
420
},
step
:
1
,
needCheckField
:
false
,
needShowAuditMsg
:
false
,
needShowUploadProcess
:
false
,
disabled
:
false
,
formDataBase
:
{
checkStatus
:
0
,
courseCustomChapterModels
:
[
{
courseCustomLectureModelList
:
[],
id
:
null
,
name
:
"视频课程"
}
],
courseCustomDoctorModels
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
courseId
:
null
,
courseIntro
:
""
,
courseIntroCheck
:
""
,
courseIntroImage
:
"https://test1-file.yunqueyi.com/image/png/common/202006201528136.png"
,
courseIntroImageCheck
:
""
,
courseName
:
""
,
courseNameCheck
:
""
,
deleteCustomLectureIds
:
[],
difficultyLevel
:
1
,
shareType
:
1
,
subjectIdList
:
[]
},
formData
:
{
checkStatus
:
0
,
courseCustomChapterModels
:
[
{
courseCustomLectureModelList
:
[],
id
:
null
,
name
:
"视频课程"
}
],
courseCustomDoctorModels
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
courseId
:
null
,
courseIntro
:
""
,
courseIntroCheck
:
""
,
courseIntroImage
:
"https://test1-file.yunqueyi.com/image/png/common/202006201528136.png"
,
courseIntroImageCheck
:
""
,
courseName
:
""
,
courseNameCheck
:
""
,
deleteCustomLectureIds
:
[],
difficultyLevel
:
1
,
shareType
:
1
,
subjectIdList
:
[]
},
uploadImgMessage
:
false
,
imgMouseOver
:
false
,
rules
:
{
courseName
:
[
{
required
:
true
,
message
:
" "
},
{
validator
:
checkCourseName
}
],
subjectIdList
:
[
{
required
:
true
,
message
:
"请输入课程名称"
}
],
shareType
:
[
{
required
:
true
,
message
:
"请选择开放范围"
}
]
},
labelOptions
:
[],
isShowOtherContent
:
false
,
fileList
:
[
],
projectBanner
:
"https://file.yunqueyi.com/h5/images/cme/project-banner.png"
,
doctorHeader
:
"https://file.yunqueyi.com/h5/images/cme/doctor-header.png"
,
doctorNameList
:
[
{
courseDoctorName
:
"333"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"334"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"335"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"336"
,
show
:
true
,
seleted
:
false
}
],
isShowDoctorList
:
false
,
isPreviewVideo
:
false
,
videoUrl
:
""
,
orgCourseInfo
:
{
defaultDoctor
:
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
},
doctorModelList
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
limitModel
:
{
maxLimitOneVideoSize
:
2147483648
,
maxLimitVideoCount
:
100
,
maxStorageSpace
:
5368709120
,
usedStorageSpace
:
1021842989
}
},
uploadProgress
:
0
,
dialogObj
:
{
visible
:
false
,
title
:
"确定取消吗?"
,
message
:
"发布后,项目将进入审核中,待审核完成后学员可在云鹊医App上参加培训学习"
,
tip
:
""
,
confirmMsg
:
"取 消"
,
hideMsg
:
"确 定"
},
};
},
props
:
{
dialogVisible
:
{
type
:
Boolean
,
default
:
false
},
courseId
:
{
type
:
String
|
Number
,
default
:
0
}
},
computed
:
{},
watch
:
{
dialogVisible
(
isVisible
)
{
this
.
formData
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
formDataBase
));
if
(
isVisible
)
{
if
(
this
.
courseId
==
0
)
{
this
.
initAdd
(
this
.
courseId
);
}
else
{
this
.
initModify
(
this
.
courseId
);
}
}
},
},
components
:
{
PreviewVideo
,
PreviewEditCourse
,
DialogComponet
,
CropperTwo
},
created
()
{
vm
=
this
;
// this.initAdd();
},
mounted
()
{
this
.
getLabelList
();
},
methods
:
{
...
mapActions
([
'setKind'
]),
getCropImg
(
argument
)
{
this
.
showCropper
=
false
;
console
.
log
(
argument
[
0
],
'#####'
,
argument
[
1
]);
this
.
slide2
.
preUrl
=
argument
[
0
]
this
.
cropData
=
argument
[
1
]
},
// 创建课程页面的初始信息
initOrgCourseInfo
()
{
vm
.
GET
(
"contents/course/custom/info/init"
,
{
setEntry
:
true
}).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
orgCourseInfo
=
res
.
data
;
this
.
formData
.
courseCustomDoctorModels
[
0
]
=
this
.
orgCourseInfo
.
defaultDoctor
;
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorAvatarUrl
=
this
.
orgCourseInfo
.
defaultDoctor
.
courseDoctorAvatarUrl
||
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
;
this
.
doctorNameList
=
this
.
convertDNameToSelectOpt
(
this
.
orgCourseInfo
.
doctorModelList
);
+
this
.
courseId
&&
this
.
getCourseInfoById
(
this
.
courseId
);
}
}
);
},
// 将医生名称进行处理
convertDNameToSelectOpt
(
doctorModelList
)
{
doctorModelList
.
forEach
(
item
=>
{
item
.
show
=
true
;
item
.
seleted
=
false
;
});
return
doctorModelList
;
},
// 添加时初始化
initAdd
()
{
console
.
log
(
"in initAdd"
);
this
.
step
=
1
;
this
.
needShowAuditMsg
=
false
;
this
.
initOrgCourseInfo
();
},
initModify
()
{
this
.
needShowAuditMsg
=
true
;
console
.
log
(
"in initModify"
);
this
.
initOrgCourseInfo
();
},
// 创建课程页面的初始信息
getCourseInfoById
(
courseId
)
{
vm
.
GET
(
`contents/course/custom/info/
${
courseId
}
`
)
.
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
formData
=
res
.
data
;
}
}
);
},
// 过滤医生信息
filterDoctorName
(
value
)
{
this
.
doctorNameList
.
forEach
(
item
=>
{
if
(
value
)
{
if
((
item
.
value
+
""
).
indexOf
(
value
)
==
-
1
)
{
item
.
show
=
false
;
}
else
{
item
.
show
=
true
;
}
if
(
item
.
value
==
value
)
{
item
.
seleted
=
true
;
}
else
{
item
.
seleted
=
false
;
}
}
else
{
item
.
show
=
true
;
}
});
},
// 当选择医生的焦点失去时,要反选医生信息
doctorNameInputBlur
()
{
setTimeout
(()
=>
{
this
.
isShowDoctorList
=
false
;
this
.
selectDoctorByName
(
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
);
},
200
);
},
// 根据姓名反选医生信息
// TODO 尝试找到完全匹配的医生
selectDoctorByName
(
name
)
{
},
// 选择其中一个
selectDoctor
(
name
)
{
console
.
log
(
name
);
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
=
name
;
this
.
selectDoctorByName
(
name
);
},
// 关闭当前弹框
close
()
{
this
.
$emit
(
"close"
);
},
// 获取学科列表
getLabelList
()
{
let
req
=
{};
this
.
GET
(
"aggregate/content/labelList"
,
req
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
convertLabelList
(
res
.
data
);
}
});
},
// 将所有子分类中的“全部”去掉
convertLabelList
(
labelList
)
{
let
newLabelList
=
[];
labelList
.
forEach
(
item
=>
{
item
.
subList
=
item
.
subList
.
slice
(
1
);
});
this
.
labelOptions
=
labelList
;
},
// 上传视频(mp4)
beforeUploadVideo
(
file
)
{
// orgCourseInfo.limitModel: {
// maxLimitOneVideoSize: 2147483648,
// maxLimitVideoCount: 100,
// maxStorageSpace: 5368709120,
// usedStorageSpace: 1021842989
// }
console
.
log
(
file
);
const
isMP4
=
file
.
type
===
"video/mp4"
;
const
isGt
=
file
.
size
>
this
.
orgCourseInfo
.
limitModel
.
maxLimitOneVideoSize
;
const
isGtMaxNum
=
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
length
>=
100
;
const
usedGtMaxStore
=
this
.
orgCourseInfo
.
limitModel
.
usedStorageSpace
+
file
.
size
>
this
.
orgCourseInfo
.
limitModel
.
maxStorageSpace
;
if
(
isGt
||
!
isMP4
||
isGtMaxNum
)
{
this
.
$message
.
error
(
"视频不符合规范,请根据规范上传视频"
);
return
;
}
if
(
usedGtMaxStore
)
{
this
.
$message
.
error
(
"个人存储空间已不够上传此视频"
);
return
;
}
// 直接上传
this
.
needShowUploadProcess
=
true
;
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress"
,
""
).
then
(
function
(
path
)
{
// closeLoading(vm);
console
.
log
(
'vm.uploadProgress'
,
vm
.
uploadProgress
);
console
.
log
(
path
);
let
uploadResourceParam
=
{
formatType
:
path
.
ext
,
name
:
path
.
name
.
substring
(
path
.
name
.
length
-
25
),
//path.name,
qCloudUrl
:
path
.
fullPath
,
size
:
path
.
size
,
fileType
:
1
,
status
:
"success"
,
uid
:
new
Date
().
getTime
()
}
vm
.
needShowUploadProcess
=
false
;
vm
.
uploadProgress
=
0
;
vm
.
insertResourceAction
(
uploadResourceParam
);
});
},
// 上传资源(视频)后,生存对应的节
insertResourceAction
(
uploadResourceParam
)
{
this
.
POST
(
"contents/course/custom/info/insertResource"
,
[
uploadResourceParam
]).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
let
cName
=
res
.
data
.
resourceModelList
[
0
].
name
;
// cName = cName.substr(0, cName.lastIndexOf('.'));
let
lectureObj
=
{
id
:
null
,
name
:
cName
,
nameCheck
:
""
,
contentCheck
:
""
,
resourceModel
:
{}
}
this
.
orgCourseInfo
.
limitModel
=
res
.
data
.
limitModel
;
lectureObj
.
resourceModel
=
res
.
data
&&
res
.
data
.
resourceModelList
[
0
];
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
push
(
lectureObj
);
}
});
},
//上传列表图片
beforeUploadListPic
(
file
)
{
let
fileLimit
=
{
width
:
230
,
height
:
172
,
size
:
0.5
,
sizeText
:
"500K"
,
key
:
"attachmentUrl"
,
more
:
"attachmentMore1"
,
show
:
"uploadImgMessage"
};
vm
.
beforeAvatarUpload2
(
file
,
fileLimit
);
// vm.beforeAvatarUpload(file, fileLimit);
},
//上传图片校验
beforeAvatarUpload2
(
file
,
fileLimit
)
{
console
.
log
();
const
isJPG
=
file
.
type
===
"image/jpeg"
;
const
isPNG
=
file
.
type
===
"image/png"
;
const
isLt2M
=
file
.
size
/
1024
/
1024
<
fileLimit
.
size
;
console
.
log
(
"isJPG"
,
isJPG
,
"isPNG"
,
isPNG
,
"isLt2M"
,
isLt2M
);
// if (!isJPG && !isPNG) {
// vm.$message.error("图片不符合规范,请根据规范上传图片");
// return;
// }
// if (!isLt2M) {
// vm.$message.error("图片不符合规范,请根据规范上传图片 ");
// return;
// }
let
_img
=
new
FileReader
();
_img
.
readAsDataURL
(
file
);
console
.
log
(
'readAsDataURL'
,
_img
,
file
);
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
();
image
.
src
=
theFile
.
target
.
result
;
vm
.
slide2
.
oriUrl
=
theFile
.
target
.
result
;
vm
.
showCropper
=
true
;
console
.
log
(
'readAsDataURL222'
,
_img
.
width
,
file
,
theFile
);
image
.
onload
=
function
()
{
console
.
log
(
'image.onload'
,
image
);
let
_vm
=
this
;
if
(
false
// true ||
// _vm.width != fileLimit.width ||
// _vm.height != fileLimit.height
)
{
vm
.
$message
.
error
(
"图片不符合规范,请根据规范上传图片"
);
}
else
{
// openLoading(vm);
// doUpload(
// vm,
// file,
// getFilePath(file, null),
// "preview4",
// "progress1",
// 1
// ).then(function(path) {
// closeLoading(vm);
// console.log(path);
// if (fileLimit.show == "uploadImgMessage") {
// vm.uploadImgMessage = false;
// }
// // else if (fileLimit.show == "uploadImgMessage2") {
// // vm.uploadImgMessage2 = false;
// // }
// vm.formData[fileLimit.key] = path.fullPath;
// vm.formData[fileLimit.more] = {
// attachmentName: path.name,
// attachmentExt: path.ext,
// attachmentSize: path.size
// };
// vm.$message.success("上传成功");
// });
}
};
};
return
isJPG
&&
isLt2M
;
},
//上传图片校验
beforeAvatarUpload
(
file
,
fileLimit
)
{
console
.
log
();
const
isJPG
=
file
.
type
===
"image/jpeg"
;
const
isPNG
=
file
.
type
===
"image/png"
;
const
isLt2M
=
file
.
size
/
1024
/
1024
<
fileLimit
.
size
;
console
.
log
(
"isJPG"
,
isJPG
,
"isPNG"
,
isPNG
,
"isLt2M"
,
isLt2M
);
// if (!isJPG && !isPNG) {
// vm.$message.error("图片不符合规范,请根据规范上传图片");
// return;
// }
// if (!isLt2M) {
// vm.$message.error("图片不符合规范,请根据规范上传图片 ");
// return;
// }
let
_img
=
new
FileReader
();
_img
.
readAsDataURL
(
file
);
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
();
image
.
src
=
theFile
.
target
.
result
;
image
.
onload
=
function
()
{
let
_vm
=
this
;
if
(
false
// true ||
// _vm.width != fileLimit.width ||
// _vm.height != fileLimit.height
)
{
vm
.
$message
.
error
(
"图片不符合规范,请根据规范上传图片"
);
}
else
{
openLoading
(
vm
);
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress1"
,
1
).
then
(
function
(
path
)
{
closeLoading
(
vm
);
console
.
log
(
path
);
if
(
fileLimit
.
show
==
"uploadImgMessage"
)
{
vm
.
uploadImgMessage
=
false
;
}
// else if (fileLimit.show == "uploadImgMessage2") {
// vm.uploadImgMessage2 = false;
// }
vm
.
formData
[
fileLimit
.
key
]
=
path
.
fullPath
;
vm
.
formData
[
fileLimit
.
more
]
=
{
attachmentName
:
path
.
name
,
attachmentExt
:
path
.
ext
,
attachmentSize
:
path
.
size
};
vm
.
$message
.
success
(
"上传成功"
);
});
}
};
};
return
isJPG
&&
isLt2M
;
},
// 展开/收起 更多信息
toggleOtherContent
()
{
this
.
isShowOtherContent
=
!
this
.
isShowOtherContent
;
},
// 限制选择文件个数
handleExceed
(
files
,
fileList
)
{
this
.
$message
.
warning
(
`当前限制选择 100 个文件,您已经共选择了
${
files
.
length
+
fileList
.
length
}
个文件!`
);
},
// 删除按钮
beforeRemove
(
file
,
fileList
)
{
return
this
.
$confirm
(
`确定移除
${
file
.
name
}
?`
);
},
//表单校验
submitForm
(
formName
)
{
this
.
needShowAuditMsg
=
false
;
this
.
$refs
[
formName
].
validate
(
valid
=>
{
if
(
valid
)
{
this
.
insertOrUpdate
();
}
else
{
console
.
log
(
"error submit!!"
);
}
this
.
needShowAuditMsg
=
true
;
});
},
// 添加或修改课程(kind = 3)
insertOrUpdate
()
{
this
.
POST
(
"contents/course/custom/info/insertOrUpdate"
,
this
.
formData
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
if
(
this
.
courseId
==
'add'
)
{
this
.
step
=
2
;
}
else
{
this
.
close
();
this
.
setKind
(
3
);
}
}
});
},
// 返回到课程选择页面(kind = 3)
backToOrgCourse
()
{
this
.
close
();
this
.
setKind
(
3
);
},
// 关闭(“取消”按钮弹出来的)弹框
hideCancleTips
()
{
this
.
dialogObj
.
visible
=
false
;
this
.
close
();
},
// 预览视频
previewVideoAction
(
lecture
)
{
this
.
videoUrl
=
lecture
.
resourceModel
.
filePath
;
this
.
isPreviewVideo
=
true
;
},
// 删除本节视频
// TODO 要将删除的节ID放在删除的节里
deleteLecture
(
index
)
{
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
splice
(
index
,
1
);
},
// 上传课程封面图片
beforeUpload1
(
file
)
{
// const isLt50kb = file.size / 1024
<
50
;
const
isJPG
=
file
.
type
===
'image/jpeg'
if
(
!
isJPG
)
{
this
.
$message
.
error
(
'只支持jpeg格式'
)
return
;
}
var
_img
=
new
FileReader
()
_img
.
readAsDataURL
(
file
)
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
()
image
.
src
=
theFile
.
target
.
result
image
.
onload
=
function
()
{
let
_this
=
this
if
(
_this
.
width
!=
740
||
_this
.
height
!=
420
)
{
vm
.
$message
.
info
(
"上传图片尺寸大小不合适,请重新上传"
)
}
else
{
vm
.
doUploadOSS
(
file
,
1
);
//封面图片
}
}
}
},
// 上传讲师图片
beforeUpload2
(
file
)
{
// const isLt50kb = file.size / 1024
<
50
;
const
isJPG
=
file
.
type
===
'image/jpeg'
if
(
!
isJPG
)
{
this
.
$message
.
error
(
'只支持jpeg格式'
)
return
;
}
var
_img
=
new
FileReader
()
_img
.
readAsDataURL
(
file
)
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
()
image
.
src
=
theFile
.
target
.
result
image
.
onload
=
function
()
{
let
_this
=
this
if
(
_this
.
width
!=
88
||
_this
.
height
!=
88
)
{
vm
.
$message
.
info
(
"上传图片尺寸大小不合适,请重新上传"
)
}
else
{
vm
.
doUploadOSS
(
file
,
2
);
//封面图片
}
}
}
},
// (调用OSS API)开始上传
doUploadOSS
(
file
,
index
)
{
let
self
=
this
;
//上传 指定文件名
ossUpload
(
self
,
file
,
getFilePathForOSS
(
file
),
null
,
null
,
null
).
then
(
function
(
path
)
{
let
list
=
[{}];
// list[0].name = file.name;
// list[0].url = localStorage.getItem("resource_url") + path;
if
(
index
===
1
)
{
}
else
if
(
index
===
2
)
{
}
self
.
$message
.
success
(
"上传成功"
);
});
return
false
;
},
}
};
</
script
>
<
style
scoped
lang=
"scss"
>
.edit-course-wrapper
{
.course-content
{
// color: red;
.basic-item-icon
{
position
:
relative
;
margin-top
:
20px
;
.require
{
position
:
absolute
;
left
:
40px
;
top
:
11px
;
color
:
#f56c6c
;
}
.upload-message
{
position
:
absolute
;
left
:
160px
;
top
:
105px
;
font-size
:
12px
;
color
:
#f56c6c
;
}
.img-delete
{
position
:
absolute
;
left
:
0px
;
top
:
0px
;
width
:
84px
;
height
:
100px
;
background
:
#000
;
opacity
:
0
.7
;
z-index
:
999
;
i
{
color
:
#fff
;
margin-top
:
39px
;
margin-left
:
0px
;
}
}
.upload-tips
{
width
:
100%
;
position
:
relative
;
top
:
-10px
;
font-size
:
12px
;
color
:
#979899
;
// display: inline-block;
}
.custom-list
{
// width: 100%;
width
:
480px
;
display
:
flex
;
flex-direction
:
column
;
border-radius
:
3px
;
border
:
1px
solid
rgba
(
228
,
231
,
237
,
1
);
padding
:
20px
;
font-size
:
14px
;
&
>
li
{
margin
:
10px
0
;
}
.video
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
space-between
;
align-items
:
center
;
.title
{
display
:
inline-block
;
width
:
70px
;
text-align
:
right
;
margin-right
:
10px
;
}
.name
{
cursor
:
pointer
;
color
:
#5890DD
;
}
img
{
width
:
12px
;
height
:
12px
;
}
.delete
{
position
:
relative
;
top
:
4px
;
cursor
:
pointer
;
width
:
16px
;
height
:
16px
;
}
}
.video-name
{
.title
{
display
:
inline-block
;
width
:
70px
;
text-align
:
right
;
margin-right
:
10px
;
}
}
}
}
.word-num
{
font-size
:
12px
;
color
:
#999
;
padding-top
:
5px
;
}
.bg-uploader
{
img
{
float
:
left
;
}
.bg-img-wrapper
{
.bg-img
{
display
:
block
;
width
:
160px
;
height
:
90px
;
}
.bg-img-doctor
{
display
:
block
;
width
:
88px
;
height
:
88px
;
}
}
.bg-video
{
float
:
left
;
width
:
84px
;
height
:
100px
;
}
}
.limit-text
{
position
:
absolute
;
top
:
86px
;
left
:
0px
;
font-size
:
12px
;
color
:
#979899
;
}
.separator-line
{
width
:
100%
;
display
:
flex
;
flex-direction
:
row
;
align-content
:
center
;
align-items
:
center
;
justify-content
:
space-between
;
.center
{
cursor
:
pointer
;
width
:
130px
;
color
:
#666666
;
img
{
width
:
12px
;
}
}
.line-left
,
.line-right
{
// display: inline-block;
// width: 100%;
flex
:
1
;
border-bottom
:
1px
dashed
#e4e7ed
;
}
}
.tips
{
width
:
100%
;
height
:
32px
;
line-height
:
32px
;
padding-left
:
12px
;
background
:
rgba
(
254
,
250
,
245
,
1
);
border-radius
:
3px
;
color
:
#e6a23c
;
}
.valid-msg
{
position
:
relative
;
.error
{
width
:
370px
;
position
:
absolute
;
display
:
flex
;
justify-content
:
space-between
;
top
:
29px
;
font-size
:
13px
;
color
:
#ed3131
;
.text
{
flex
:
1
;
}
.cancle
{
cursor
:
pointer
;
width
:
20px
;
}
}
.edit-wrapper
{
color
:
#449284
;
.edit-img
{
position
:
relative
;
top
:
2px
;
width
:
12px
;
margin
:
0
2px
0
4px
;
}
}
.doctor-select-list
{
width
:
200px
;
// max-height: 100px;
position
:
absolute
;
z-index
:
100
;
background
:
#fff
;
box-shadow
:
0
0
6px
rgba
(
0
,
0
,
0
,
0
.3
);
-webkit-box-shadow
:
0
0
6px
rgba
(
0
,
0
,
0
,
0
.3
);
// margin: 10px;
li
{
padding-left
:
20px
;
cursor
:
pointer
;
&
:hover
{
background
:
#f4f7fd
;
}
&
.doctor-selected
{
background
:
#f4f7fd
;
}
}
}
}
.upload-process
{
margin
:
10px
0
10px
10px
;
display
:
block
;
// width: 310px;
height
:
4px
;
background
:
#449284
;
border-radius
:
2px
;
}
}
.course-content-step2
{
display
:
flex
;
flex-direction
:
column
;
text-align
:
center
;
align-items
:
center
;
.success-img
{
width
:
60px
;
height
:
60px
;
}
.tips-1
{
margin-top
:
30px
;
font-size
:
18px
;
color
:
#303133
;
}
.tips-2
{
margin-top
:
4px
;
margin-bottom
:
40px
;
font-size
:
14px
;
color
:
#999999
;
}
}
}
</
style
>
src/components/education/custom-resource/edit-course-dialog copy 11.vue
0 → 100644
浏览文件 @
d2298748
<
template
>
<div
class=
"edit-course-wrapper dialog-title-border"
>
<el-dialog
ref=
"testDialogRef"
title=
"上传课程"
:visible=
"dialogVisible"
@
close=
"close"
center
:close-on-click-modal=
"false"
:close-on-press-escape=
"false"
width=
"800px"
>
<div
slot=
"title"
style=
"text-align: left;"
>
<span
style=
"font-weight: 700;"
>
上传课程
</span>
<span
style=
"font-size: 12px;color: #ED3131;margin-left: 4px;"
>
请认真核对上传内容,一旦提交后将不能修改
</span>
</div>
<div
v-show=
"step == 1"
class=
"course-content"
>
<el-form
ref=
"formDataRef"
:model=
"formData"
:rules=
"rules"
label-width=
"120px"
class=
"basic-form"
>
<el-form-item
label=
"课程名称:"
prop=
"courseName"
class=
"valid-msg"
>
<el-col
:span=
"20"
>
<el-input
size=
"small"
v-model=
"formData.courseName"
placeholder=
"请输入课程名称"
style=
"width: 360px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
<div
v-show=
"needShowAuditMsg && formData.courseNameCheck"
class=
"error"
>
<span>
{{
formData
.
courseNameCheck
}}
</span>
</div>
</el-col>
</el-form-item>
<el-form-item
label=
"学科分类:"
prop=
"subjectIdList"
class=
"valid-msg"
>
<el-col
:span=
"18"
>
<!-- :props="
{ expandTrigger: 'hover' }" -->
<el-cascader
style=
"width: 360px"
v-model=
"formData.subjectIdList"
:options=
"labelOptions"
:props=
"
{ value: 'id', label: 'name', children: 'subList'}"
>
</el-cascader>
</el-col>
</el-form-item>
<el-form-item
label=
"开放范围:"
prop=
"shareType"
>
<el-radio-group
v-model=
"formData.shareType"
>
<el-radio
:label=
"1"
>
机构共享
</el-radio>
</el-radio-group>
</el-form-item>
<div
class=
"basic-item-icon"
>
<span
class=
"require"
>
*
</span>
<el-form-item
label=
"课程视频:"
prop=
"range"
>
<el-upload
class=
"upload-video"
action=
"#"
:before-upload=
"beforeUploadVideo"
:limit=
"3"
:on-exceed=
"handleExceed"
:show-file-list=
"false"
>
<el-button
size=
"small"
type=
"primary"
>
点击上传
</el-button>
<div
slot=
"tip"
class=
"el-upload__tip"
>
<span
class=
"upload-tips"
>
只支持MP4格式,课程视频最多上传100个,单文件最大2G
</span>
<ul
v-show=
"formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
class=
"custom-list"
>
<li
v-for=
"(lecture, index) in formData.courseCustomChapterModels[0].courseCustomLectureModelList"
:key=
"index"
class=
"valid-msg"
>
<ul
class=
"video"
>
<li>
<span
class=
"title"
>
视频
{{
index
+
1
}}
</span>
<img
src=
"../../../assets/image/phrase3/icon-pin.png"
/>
<span
class=
"name"
@
click=
"previewVideoAction(lecture)"
>
{{
lecture
.
resourceModel
.
name
}}
</span>
</li>
<li>
<img
@
click=
"deleteLecture(index)"
class=
"delete"
src=
"../../../assets/image/phrase3/close.png"
/>
</li>
</ul>
<div
class=
"video-name"
>
<span
class=
"title"
>
<span
>
*
</span>
<span
class=
"video-title"
>
视频名称
</span>
</span>
<el-input
size=
"small"
v-model=
"lecture.name"
placeholder=
"请输入课程名称"
style=
"width: 260px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
lecture
.
name
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</div>
<div
v-show=
"needShowAuditMsg && !formData.courseCustomChapterModels[0].courseCustomLectureModelList[index].nameCheck"
class=
"error-video"
>
<span>
11
{{
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
[
index
].
nameCheck
}}
</span>
</div>
</li>
<span
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
</ul>
<span
v-if=
"!formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
</div>
</el-upload>
</el-form-item>
</div>
<div
class=
"other-content valid-msg"
v-show=
"isShowOtherContent"
>
<div
class=
"tips"
>
注:以下信息为非必填项,您也可以根据实际情况修改
</div>
<div
class=
"basic-item-icon"
>
<!--
<span
class=
"require"
>
*
</span>
-->
<el-form-item
label=
"课程封面:"
>
<el-upload
v-model=
"formData.courseIntroImage"
class=
"bg-uploader"
action=
"#"
accept=
"image/*"
:show-file-list=
"false"
:before-upload=
"beforeUpload1"
:disabled=
"disabled"
>
<div
class=
"bg-img-wrapper"
>
<img
v-if=
"formData.courseIntroImage"
@
mouseover
.
stop=
"imgMouseOver=true"
:src=
"formData.courseIntroImage"
class=
"bg-img"
/>
<img
v-if=
"!formData.courseIntroImage"
class=
"bg-img"
src=
"../../../assets/image/small.png"
/>
</div>
</el-upload>
<div
class=
"limit-text"
>
尺寸:750*420,只支持jpeg格式
</div>
</el-form-item>
<p
class=
"upload-message"
v-if=
"uploadImgMessage"
>
请选择列表图片
</p>
</div>
<el-form-item
label=
"课程难度:"
>
<el-radio-group
v-model=
"formData.difficultyLevel"
>
<el-radio
:label=
"1"
>
初级
</el-radio>
<el-radio
:label=
"2"
>
中级
</el-radio>
<el-radio
:label=
"3"
>
高级
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item
label=
"讲师名称:"
class=
"valid-msg"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorName"
placeholder=
"请输入讲师名称"
style=
"width: 360px"
maxlength=
"25"
@
focus=
"isShowDoctorList=true"
@
input=
"filterDoctorName"
@
blur=
"doctorNameInputBlur"
:disabled=
"disabled"
></el-input>
<ul
v-show=
"isShowDoctorList"
class=
"doctor-select-list"
>
<li
v-for=
"(item, index) in doctorNameList"
:key=
"index"
@
click=
"selectDoctor(item.courseDoctorName, index)"
:class=
"
{'doctor-selected': item.seleted}"
>
<span
v-show=
"item.show"
>
{{
item
.
courseDoctorName
||
'测试名'
}}
</span>
</li>
</ul>
<span
class=
"word-num"
>
{{
(
formData
.
courseCustomDoctorModels
[
0
]
&&
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</el-col>
</el-form-item>
<div
class=
"basic-item-icon"
>
<el-form-item
label=
"讲师头像:"
>
<el-upload
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl"
class=
"bg-uploader"
action=
"#"
accept=
"image/*"
:show-file-list=
"false"
:before-upload=
"beforeUpload2"
:disabled=
"disabled"
>
<div
class=
"bg-img-wrapper"
>
<img
v-if=
"formData.courseCustomDoctorModels && formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl || ''"
@
mouseover
.
stop=
"imgMouseOver=true"
:src=
"formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl"
class=
"bg-img-doctor"
/>
<img
v-if=
"!(formData.courseCustomDoctorModels && formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl || '')"
class=
"bg-img-doctor"
src=
"../../../assets/image/small.png"
/>
</div>
</el-upload>
<div
class=
"limit-text"
>
尺寸:88*88,只支持jpeg格式
</div>
</el-form-item>
<p
class=
"upload-message"
v-if=
"uploadImgMessage"
>
请选择列表图片
</p>
</div>
<el-form-item
label=
"所属机构:"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorHospital"
placeholder=
"请输入所属机构"
style=
"width: 360px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseCustomDoctorModels
&&
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorHospital
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</el-col>
</el-form-item>
<el-form-item
label=
"课程简介:"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
type=
"textarea"
maxlength=
"200"
:autosize=
"
{ minRows: 5}"
placeholder="请输入课程简介"
v-model="formData.courseIntro"
style="width:90%;"
>
</el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseIntro
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/200
</span>
</el-col>
</el-form-item>
</div>
<!-- 更多信息 -->
<div
class=
"separator-line"
>
<span
class=
"line-left"
></span>
<div
@
click=
"toggleOtherContent"
class=
"center"
>
<span>
展开更多信息
</span>
<img
v-show=
"isShowOtherContent"
src=
"../../../assets/image/phrase3/arrow-up.png"
/>
<img
v-show=
"!isShowOtherContent"
src=
"../../../assets/image/phrase3/arrow-down.png"
/>
</div>
<span
class=
"line-right"
></span>
</div>
</el-form>
</div>
<div
v-show=
"step == 2"
class=
"course-content-step2"
>
<img
class=
"success-img"
src=
"../../../assets/image/phrase3/icon-audit-success.png"
/>
<span
class=
"tips-1"
>
您上传的课程已成功提交,预计在3-5个工作日内完成审核
</span>
<span
class=
"tips-2"
>
审核通过后,您才可以选择课程完成项目配置。如有任何疑问可联系云鹊医400-920-8877
</span>
<el-button
type=
"primary"
size=
"small"
icon=
"el-icon-back"
@
click=
"backToOrgCourse"
>
返回机构课程
</el-button>
</div>
<div
v-show=
"step == 1"
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"dialogObj.visible=true"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm('formDataRef')"
>
确 定
</el-button>
</div>
</el-dialog>
<DialogComponet
:dialogObj=
"dialogObj"
@
hide=
"hideCancleTips"
@
confirm=
"dialogObj.visible=false"
></DialogComponet>
<PreviewVideo
:dialogVisible=
"isPreviewVideo"
:videoUrl=
"videoUrl"
@
close=
"isPreviewVideo=false"
></PreviewVideo>
<el-dialog
title=
"拒绝原因"
:visible=
"showCropper"
width=
"1000px"
center
>
<cropper-two
:cropOption=
"cropOption"
@
getCropImg=
"getCropImg(arguments)"
:originImg=
"slide2.oriUrl"
:previewImg=
"slide2.preUrl"
/>
</el-dialog>
<!--
<button
@
click=
"previewVideoAction"
>
test video
</button>
-->
</div>
</
template
>
<
script
>
import
PreviewVideo
from
"@/components/education/custom-resource/preview-video"
;
import
PreviewProtocol
from
"@/components/education/custom-resource/preview-protocol"
;
import
PreviewEditCourse
from
"@/components/education/custom-resource/edit-course-dialog"
;
import
DialogComponet
from
"@/components/education/template/dialog"
;
import
CropperTwo
from
'@/components/common/cropper.two.vue'
import
{
doUpload
,
getFilePath
}
from
"@/utils/qiniu-util"
;
import
{
openLoading
,
closeLoading
,
getQiniuToken1
}
from
"@/utils/utils"
;
import
{
isEmptyUtils
}
from
"@/utils/index"
;
import
{
mapActions
}
from
'vuex'
;
import
{
ossUpload
,
getFilePathForOSS
}
from
"@/utils/oss/ossUtil"
;
let
vm
=
null
;
export
default
{
data
()
{
let
checkCourseName
=
(
rule
,
value
,
callback
)
=>
{
// 如果有审核的信息,则直接报错
if
(
!
value
&&
this
.
needCheckField
)
{
callback
(
new
Error
(
"请输入课程名称"
));
}
else
{
callback
();
}
};
return
{
slide2
:
{
oriUrl
:
'https://avatars1.githubusercontent.com/u/23690568?s=460&v=4'
,
// 原图
preUrl
:
'https://avatars1.githubusercontent.com/u/23690568?s=460&v=4'
// 裁剪后的预览图片,初始化为原图
},
showCropper
:
false
,
cropOption
:
{
offset_x
:
10
,
offset_y
:
10
,
width
:
750
,
height
:
420
},
step
:
1
,
needCheckField
:
false
,
needShowAuditMsg
:
true
,
needShowUploadProcess
:
false
,
disabled
:
false
,
formDataBase
:
{
checkStatus
:
0
,
courseCustomChapterModels
:
[
{
courseCustomLectureModelList
:
[],
id
:
null
,
name
:
"视频课程"
}
],
courseCustomDoctorModels
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
courseId
:
null
,
courseIntro
:
""
,
courseIntroCheck
:
""
,
courseIntroImage
:
"https://test1-file.yunqueyi.com/image/png/common/202006201528136.png"
,
courseIntroImageCheck
:
""
,
courseName
:
""
,
courseNameCheck
:
""
,
deleteCustomLectureIds
:
[],
difficultyLevel
:
1
,
shareType
:
1
,
subjectIdList
:
[]
},
formData
:
{
checkStatus
:
0
,
courseCustomChapterModels
:
[
{
courseCustomLectureModelList
:
[],
id
:
null
,
name
:
"视频课程"
}
],
courseCustomDoctorModels
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
courseId
:
null
,
courseIntro
:
""
,
courseIntroCheck
:
""
,
courseIntroImage
:
"https://test1-file.yunqueyi.com/image/png/common/202006201528136.png"
,
courseIntroImageCheck
:
""
,
courseName
:
""
,
courseNameCheck
:
""
,
deleteCustomLectureIds
:
[],
difficultyLevel
:
1
,
shareType
:
1
,
subjectIdList
:
[]
},
uploadImgMessage
:
false
,
imgMouseOver
:
false
,
rules
:
{
courseName
:
[
{
required
:
true
,
message
:
" "
},
{
validator
:
checkCourseName
}
],
subjectIdList
:
[
{
required
:
true
,
message
:
"请输入课程名称"
}
],
shareType
:
[
{
required
:
true
,
message
:
"请选择开放范围"
}
]
},
labelOptions
:
[],
isShowOtherContent
:
false
,
fileList
:
[
],
projectBanner
:
"https://file.yunqueyi.com/h5/images/cme/project-banner.png"
,
doctorHeader
:
"https://file.yunqueyi.com/h5/images/cme/doctor-header.png"
,
doctorNameList
:
[
{
courseDoctorName
:
"333"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"334"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"335"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"336"
,
show
:
true
,
seleted
:
false
}
],
isShowDoctorList
:
false
,
isPreviewVideo
:
false
,
videoUrl
:
""
,
orgCourseInfo
:
{
defaultDoctor
:
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
},
doctorModelList
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
limitModel
:
{
maxLimitOneVideoSize
:
2147483648
,
maxLimitVideoCount
:
100
,
maxStorageSpace
:
5368709120
,
usedStorageSpace
:
1021842989
}
},
uploadProgress
:
0
,
dialogObj
:
{
visible
:
false
,
title
:
"确定取消吗?"
,
message
:
"发布后,项目将进入审核中,待审核完成后学员可在云鹊医App上参加培训学习"
,
tip
:
""
,
confirmMsg
:
"取 消"
,
hideMsg
:
"确 定"
},
};
},
props
:
{
dialogVisible
:
{
type
:
Boolean
,
default
:
false
},
courseId
:
{
type
:
String
|
Number
,
default
:
0
}
},
computed
:
{},
watch
:
{
dialogVisible
(
isVisible
)
{
this
.
formData
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
formDataBase
));
if
(
isVisible
)
{
if
(
this
.
courseId
==
0
)
{
this
.
initAdd
(
this
.
courseId
);
}
else
{
this
.
initModify
(
this
.
courseId
);
}
}
},
},
components
:
{
PreviewVideo
,
PreviewEditCourse
,
DialogComponet
,
CropperTwo
},
created
()
{
vm
=
this
;
// this.initAdd();
},
mounted
()
{
this
.
getLabelList
();
},
methods
:
{
...
mapActions
([
'setKind'
]),
getCropImg
(
argument
)
{
this
.
showCropper
=
false
;
console
.
log
(
argument
[
0
],
'#####'
,
argument
[
1
]);
this
.
slide2
.
preUrl
=
argument
[
0
]
this
.
cropData
=
argument
[
1
]
},
// 创建课程页面的初始信息
initOrgCourseInfo
()
{
vm
.
GET
(
"contents/course/custom/info/init"
,
{
setEntry
:
true
}).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
orgCourseInfo
=
res
.
data
;
this
.
formData
.
courseCustomDoctorModels
[
0
]
=
this
.
orgCourseInfo
.
defaultDoctor
;
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorAvatarUrl
=
this
.
orgCourseInfo
.
defaultDoctor
.
courseDoctorAvatarUrl
||
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
;
this
.
doctorNameList
=
this
.
convertDNameToSelectOpt
(
this
.
orgCourseInfo
.
doctorModelList
);
+
this
.
courseId
&&
this
.
getCourseInfoById
(
this
.
courseId
);
}
}
);
},
// 将医生名称进行处理
convertDNameToSelectOpt
(
doctorModelList
)
{
doctorModelList
.
forEach
(
item
=>
{
item
.
show
=
true
;
item
.
seleted
=
false
;
});
return
doctorModelList
;
},
// 添加时初始化
initAdd
()
{
console
.
log
(
"in initAdd"
);
this
.
step
=
1
;
this
.
needShowAuditMsg
=
false
;
this
.
initOrgCourseInfo
();
},
initModify
()
{
this
.
needShowAuditMsg
=
true
;
console
.
log
(
"in initModify"
);
this
.
initOrgCourseInfo
();
},
// 创建课程页面的初始信息
getCourseInfoById
(
courseId
)
{
vm
.
GET
(
`contents/course/custom/info/
${
courseId
}
`
)
.
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
formData
=
res
.
data
;
}
}
);
},
// 过滤医生信息
filterDoctorName
(
value
)
{
this
.
doctorNameList
.
forEach
(
item
=>
{
if
(
value
)
{
if
((
item
.
value
+
""
).
indexOf
(
value
)
==
-
1
)
{
item
.
show
=
false
;
}
else
{
item
.
show
=
true
;
}
if
(
item
.
value
==
value
)
{
item
.
seleted
=
true
;
}
else
{
item
.
seleted
=
false
;
}
}
else
{
item
.
show
=
true
;
}
});
},
// 当选择医生的焦点失去时,要反选医生信息
doctorNameInputBlur
()
{
setTimeout
(()
=>
{
this
.
isShowDoctorList
=
false
;
this
.
selectDoctorByName
(
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
);
},
200
);
},
// 根据姓名反选医生信息
// TODO 尝试找到完全匹配的医生
selectDoctorByName
(
name
)
{
},
// 选择其中一个
selectDoctor
(
name
)
{
console
.
log
(
name
);
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
=
name
;
this
.
selectDoctorByName
(
name
);
},
// 关闭当前弹框
close
()
{
this
.
$emit
(
"close"
);
},
// 获取学科列表
getLabelList
()
{
let
req
=
{};
this
.
GET
(
"aggregate/content/labelList"
,
req
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
convertLabelList
(
res
.
data
);
}
});
},
// 将所有子分类中的“全部”去掉
convertLabelList
(
labelList
)
{
let
newLabelList
=
[];
labelList
.
forEach
(
item
=>
{
item
.
subList
=
item
.
subList
.
slice
(
1
);
});
this
.
labelOptions
=
labelList
;
},
// 上传视频(mp4)
beforeUploadVideo
(
file
)
{
// orgCourseInfo.limitModel: {
// maxLimitOneVideoSize: 2147483648,
// maxLimitVideoCount: 100,
// maxStorageSpace: 5368709120,
// usedStorageSpace: 1021842989
// }
console
.
log
(
file
);
const
isMP4
=
file
.
type
===
"video/mp4"
;
const
isGt
=
file
.
size
>
this
.
orgCourseInfo
.
limitModel
.
maxLimitOneVideoSize
;
const
isGtMaxNum
=
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
length
>=
100
;
const
usedGtMaxStore
=
this
.
orgCourseInfo
.
limitModel
.
usedStorageSpace
+
file
.
size
>
this
.
orgCourseInfo
.
limitModel
.
maxStorageSpace
;
if
(
isGt
||
!
isMP4
||
isGtMaxNum
)
{
this
.
$message
.
error
(
"视频不符合规范,请根据规范上传视频"
);
return
;
}
if
(
usedGtMaxStore
)
{
this
.
$message
.
error
(
"个人存储空间已不够上传此视频"
);
return
;
}
// 直接上传
this
.
needShowUploadProcess
=
true
;
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress"
,
""
).
then
(
function
(
path
)
{
// closeLoading(vm);
console
.
log
(
'vm.uploadProgress'
,
vm
.
uploadProgress
);
console
.
log
(
path
);
let
uploadResourceParam
=
{
formatType
:
path
.
ext
,
name
:
path
.
name
.
substring
(
path
.
name
.
length
-
25
),
//path.name,
qCloudUrl
:
path
.
fullPath
,
size
:
path
.
size
,
fileType
:
1
,
status
:
"success"
,
uid
:
new
Date
().
getTime
()
}
vm
.
needShowUploadProcess
=
false
;
vm
.
uploadProgress
=
0
;
vm
.
insertResourceAction
(
uploadResourceParam
);
});
},
// 上传资源(视频)后,生存对应的节
insertResourceAction
(
uploadResourceParam
)
{
this
.
POST
(
"contents/course/custom/info/insertResource"
,
[
uploadResourceParam
]).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
let
cName
=
res
.
data
.
resourceModelList
[
0
].
name
;
// cName = cName.substr(0, cName.lastIndexOf('.'));
let
lectureObj
=
{
id
:
null
,
name
:
cName
,
nameCheck
:
""
,
contentCheck
:
""
,
resourceModel
:
{}
}
this
.
orgCourseInfo
.
limitModel
=
res
.
data
.
limitModel
;
lectureObj
.
resourceModel
=
res
.
data
&&
res
.
data
.
resourceModelList
[
0
];
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
push
(
lectureObj
);
}
});
},
//上传列表图片
beforeUploadListPic
(
file
)
{
let
fileLimit
=
{
width
:
230
,
height
:
172
,
size
:
0.5
,
sizeText
:
"500K"
,
key
:
"attachmentUrl"
,
more
:
"attachmentMore1"
,
show
:
"uploadImgMessage"
};
vm
.
beforeAvatarUpload2
(
file
,
fileLimit
);
// vm.beforeAvatarUpload(file, fileLimit);
},
//上传图片校验
beforeAvatarUpload2
(
file
,
fileLimit
)
{
console
.
log
();
const
isJPG
=
file
.
type
===
"image/jpeg"
;
const
isPNG
=
file
.
type
===
"image/png"
;
const
isLt2M
=
file
.
size
/
1024
/
1024
<
fileLimit
.
size
;
console
.
log
(
"isJPG"
,
isJPG
,
"isPNG"
,
isPNG
,
"isLt2M"
,
isLt2M
);
// if (!isJPG && !isPNG) {
// vm.$message.error("图片不符合规范,请根据规范上传图片");
// return;
// }
// if (!isLt2M) {
// vm.$message.error("图片不符合规范,请根据规范上传图片 ");
// return;
// }
let
_img
=
new
FileReader
();
_img
.
readAsDataURL
(
file
);
console
.
log
(
'readAsDataURL'
,
_img
,
file
);
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
();
image
.
src
=
theFile
.
target
.
result
;
vm
.
slide2
.
oriUrl
=
theFile
.
target
.
result
;
vm
.
showCropper
=
true
;
console
.
log
(
'readAsDataURL222'
,
_img
.
width
,
file
,
theFile
);
image
.
onload
=
function
()
{
console
.
log
(
'image.onload'
,
image
);
let
_vm
=
this
;
if
(
false
// true ||
// _vm.width != fileLimit.width ||
// _vm.height != fileLimit.height
)
{
vm
.
$message
.
error
(
"图片不符合规范,请根据规范上传图片"
);
}
else
{
// openLoading(vm);
// doUpload(
// vm,
// file,
// getFilePath(file, null),
// "preview4",
// "progress1",
// 1
// ).then(function(path) {
// closeLoading(vm);
// console.log(path);
// if (fileLimit.show == "uploadImgMessage") {
// vm.uploadImgMessage = false;
// }
// // else if (fileLimit.show == "uploadImgMessage2") {
// // vm.uploadImgMessage2 = false;
// // }
// vm.formData[fileLimit.key] = path.fullPath;
// vm.formData[fileLimit.more] = {
// attachmentName: path.name,
// attachmentExt: path.ext,
// attachmentSize: path.size
// };
// vm.$message.success("上传成功");
// });
}
};
};
return
isJPG
&&
isLt2M
;
},
//上传图片校验
beforeAvatarUpload
(
file
,
fileLimit
)
{
console
.
log
();
const
isJPG
=
file
.
type
===
"image/jpeg"
;
const
isPNG
=
file
.
type
===
"image/png"
;
const
isLt2M
=
file
.
size
/
1024
/
1024
<
fileLimit
.
size
;
console
.
log
(
"isJPG"
,
isJPG
,
"isPNG"
,
isPNG
,
"isLt2M"
,
isLt2M
);
// if (!isJPG && !isPNG) {
// vm.$message.error("图片不符合规范,请根据规范上传图片");
// return;
// }
// if (!isLt2M) {
// vm.$message.error("图片不符合规范,请根据规范上传图片 ");
// return;
// }
let
_img
=
new
FileReader
();
_img
.
readAsDataURL
(
file
);
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
();
image
.
src
=
theFile
.
target
.
result
;
image
.
onload
=
function
()
{
let
_vm
=
this
;
if
(
false
// true ||
// _vm.width != fileLimit.width ||
// _vm.height != fileLimit.height
)
{
vm
.
$message
.
error
(
"图片不符合规范,请根据规范上传图片"
);
}
else
{
openLoading
(
vm
);
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress1"
,
1
).
then
(
function
(
path
)
{
closeLoading
(
vm
);
console
.
log
(
path
);
if
(
fileLimit
.
show
==
"uploadImgMessage"
)
{
vm
.
uploadImgMessage
=
false
;
}
// else if (fileLimit.show == "uploadImgMessage2") {
// vm.uploadImgMessage2 = false;
// }
vm
.
formData
[
fileLimit
.
key
]
=
path
.
fullPath
;
vm
.
formData
[
fileLimit
.
more
]
=
{
attachmentName
:
path
.
name
,
attachmentExt
:
path
.
ext
,
attachmentSize
:
path
.
size
};
vm
.
$message
.
success
(
"上传成功"
);
});
}
};
};
return
isJPG
&&
isLt2M
;
},
// 展开/收起 更多信息
toggleOtherContent
()
{
this
.
isShowOtherContent
=
!
this
.
isShowOtherContent
;
},
// 限制选择文件个数
handleExceed
(
files
,
fileList
)
{
this
.
$message
.
warning
(
`当前限制选择 100 个文件,您已经共选择了
${
files
.
length
+
fileList
.
length
}
个文件!`
);
},
// 删除按钮
beforeRemove
(
file
,
fileList
)
{
return
this
.
$confirm
(
`确定移除
${
file
.
name
}
?`
);
},
//表单校验
submitForm
(
formName
)
{
this
.
needShowAuditMsg
=
false
;
this
.
$refs
[
formName
].
validate
(
valid
=>
{
if
(
valid
)
{
this
.
insertOrUpdate
();
}
else
{
console
.
log
(
"error submit!!"
);
}
this
.
needShowAuditMsg
=
true
;
});
},
// 添加或修改课程(kind = 3)
insertOrUpdate
()
{
this
.
POST
(
"contents/course/custom/info/insertOrUpdate"
,
this
.
formData
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
if
(
this
.
courseId
==
'add'
)
{
this
.
step
=
2
;
}
else
{
this
.
close
();
this
.
setKind
(
3
);
}
}
});
},
// 返回到课程选择页面(kind = 3)
backToOrgCourse
()
{
this
.
close
();
this
.
setKind
(
3
);
},
// 关闭(“取消”按钮弹出来的)弹框
hideCancleTips
()
{
this
.
dialogObj
.
visible
=
false
;
this
.
close
();
},
// 预览视频
previewVideoAction
(
lecture
)
{
this
.
videoUrl
=
lecture
.
resourceModel
.
filePath
;
this
.
isPreviewVideo
=
true
;
},
// 删除本节视频
// TODO 要将删除的节ID放在删除的节里
deleteLecture
(
index
)
{
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
splice
(
index
,
1
);
},
// 上传课程封面图片
beforeUpload1
(
file
)
{
// const isLt50kb = file.size / 1024
<
50
;
const
isJPG
=
file
.
type
===
'image/jpeg'
if
(
!
isJPG
)
{
this
.
$message
.
error
(
'只支持jpeg格式'
)
return
;
}
var
_img
=
new
FileReader
()
_img
.
readAsDataURL
(
file
)
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
()
image
.
src
=
theFile
.
target
.
result
image
.
onload
=
function
()
{
let
_this
=
this
if
(
_this
.
width
!=
740
||
_this
.
height
!=
420
)
{
vm
.
$message
.
info
(
"上传图片尺寸大小不合适,请重新上传"
)
}
else
{
vm
.
doUploadOSS
(
file
,
1
);
//封面图片
}
}
}
},
// 上传讲师图片
beforeUpload2
(
file
)
{
// const isLt50kb = file.size / 1024
<
50
;
const
isJPG
=
file
.
type
===
'image/jpeg'
if
(
!
isJPG
)
{
this
.
$message
.
error
(
'只支持jpeg格式'
)
return
;
}
var
_img
=
new
FileReader
()
_img
.
readAsDataURL
(
file
)
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
()
image
.
src
=
theFile
.
target
.
result
image
.
onload
=
function
()
{
let
_this
=
this
if
(
_this
.
width
!=
88
||
_this
.
height
!=
88
)
{
vm
.
$message
.
info
(
"上传图片尺寸大小不合适,请重新上传"
)
}
else
{
vm
.
doUploadOSS
(
file
,
2
);
//封面图片
}
}
}
},
// (调用OSS API)开始上传
doUploadOSS
(
file
,
index
)
{
let
self
=
this
;
//上传 指定文件名
ossUpload
(
self
,
file
,
getFilePathForOSS
(
file
),
null
,
null
,
null
).
then
(
function
(
path
)
{
let
list
=
[{}];
// list[0].name = file.name;
// list[0].url = localStorage.getItem("resource_url") + path;
if
(
index
===
1
)
{
}
else
if
(
index
===
2
)
{
}
self
.
$message
.
success
(
"上传成功"
);
});
return
false
;
},
}
};
</
script
>
<
style
scoped
lang=
"scss"
>
.edit-course-wrapper
{
.course-content
{
// color: red;
.basic-item-icon
{
position
:
relative
;
margin-top
:
20px
;
.require
{
position
:
absolute
;
left
:
40px
;
top
:
11px
;
color
:
#f56c6c
;
}
.upload-message
{
position
:
absolute
;
left
:
160px
;
top
:
105px
;
font-size
:
12px
;
color
:
#f56c6c
;
}
.img-delete
{
position
:
absolute
;
left
:
0px
;
top
:
0px
;
width
:
84px
;
height
:
100px
;
background
:
#000
;
opacity
:
0
.7
;
z-index
:
999
;
i
{
color
:
#fff
;
margin-top
:
39px
;
margin-left
:
0px
;
}
}
.upload-tips
{
width
:
100%
;
position
:
relative
;
top
:
-10px
;
font-size
:
12px
;
color
:
#979899
;
// display: inline-block;
}
.custom-list
{
// width: 100%;
width
:
480px
;
display
:
flex
;
flex-direction
:
column
;
border-radius
:
3px
;
border
:
1px
solid
rgba
(
228
,
231
,
237
,
1
);
padding
:
20px
;
font-size
:
14px
;
&
>
li
{
margin
:
10px
0
;
}
.video
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
space-between
;
align-items
:
center
;
.title
{
display
:
inline-block
;
width
:
70px
;
text-align
:
right
;
margin-right
:
10px
;
}
.name
{
cursor
:
pointer
;
color
:
#5890DD
;
}
img
{
width
:
12px
;
height
:
12px
;
}
.delete
{
position
:
relative
;
top
:
4px
;
cursor
:
pointer
;
width
:
16px
;
height
:
16px
;
}
}
.video-name
{
.title
{
display
:
inline-block
;
width
:
70px
;
text-align
:
right
;
margin-right
:
10px
;
}
}
}
}
.word-num
{
font-size
:
12px
;
color
:
#999
;
padding-top
:
5px
;
}
.bg-uploader
{
img
{
float
:
left
;
}
.bg-img-wrapper
{
.bg-img
{
display
:
block
;
width
:
160px
;
height
:
90px
;
}
.bg-img-doctor
{
display
:
block
;
width
:
88px
;
height
:
88px
;
}
}
.bg-video
{
float
:
left
;
width
:
84px
;
height
:
100px
;
}
}
.limit-text
{
position
:
absolute
;
top
:
86px
;
left
:
0px
;
font-size
:
12px
;
color
:
#979899
;
}
.separator-line
{
width
:
100%
;
display
:
flex
;
flex-direction
:
row
;
align-content
:
center
;
align-items
:
center
;
justify-content
:
space-between
;
.center
{
cursor
:
pointer
;
width
:
130px
;
color
:
#666666
;
img
{
width
:
12px
;
}
}
.line-left
,
.line-right
{
// display: inline-block;
// width: 100%;
flex
:
1
;
border-bottom
:
1px
dashed
#e4e7ed
;
}
}
.tips
{
width
:
100%
;
height
:
32px
;
line-height
:
32px
;
padding-left
:
12px
;
background
:
rgba
(
254
,
250
,
245
,
1
);
border-radius
:
3px
;
color
:
#e6a23c
;
}
.valid-msg
{
position
:
relative
;
.error
{
width
:
370px
;
position
:
absolute
;
display
:
flex
;
justify-content
:
space-between
;
top
:
29px
;
font-size
:
13px
;
color
:
#ed3131
;
.text
{
flex
:
1
;
}
.cancle
{
cursor
:
pointer
;
width
:
20px
;
}
}
.edit-wrapper
{
color
:
#449284
;
.edit-img
{
position
:
relative
;
top
:
2px
;
width
:
12px
;
margin
:
0
2px
0
4px
;
}
}
.doctor-select-list
{
width
:
200px
;
// max-height: 100px;
position
:
absolute
;
z-index
:
100
;
background
:
#fff
;
box-shadow
:
0
0
6px
rgba
(
0
,
0
,
0
,
0
.3
);
-webkit-box-shadow
:
0
0
6px
rgba
(
0
,
0
,
0
,
0
.3
);
// margin: 10px;
li
{
padding-left
:
20px
;
cursor
:
pointer
;
&
:hover
{
background
:
#f4f7fd
;
}
&
.doctor-selected
{
background
:
#f4f7fd
;
}
}
}
}
.upload-process
{
margin
:
10px
0
10px
10px
;
display
:
block
;
// width: 310px;
height
:
4px
;
background
:
#449284
;
border-radius
:
2px
;
}
}
.course-content-step2
{
display
:
flex
;
flex-direction
:
column
;
text-align
:
center
;
align-items
:
center
;
.success-img
{
width
:
60px
;
height
:
60px
;
}
.tips-1
{
margin-top
:
30px
;
font-size
:
18px
;
color
:
#303133
;
}
.tips-2
{
margin-top
:
4px
;
margin-bottom
:
40px
;
font-size
:
14px
;
color
:
#999999
;
}
}
}
</
style
>
src/components/education/custom-resource/edit-course-dialog copy 8.vue
0 → 100644
浏览文件 @
d2298748
<
template
>
<div
class=
"edit-course-wrapper dialog-title-border"
>
<el-dialog
ref=
"testDialogRef"
title=
"上传课程"
:visible=
"dialogVisible"
@
close=
"close"
center
:close-on-click-modal=
"false"
:close-on-press-escape=
"false"
width=
"800px"
>
<div
slot=
"title"
style=
"text-align: left;"
>
<span
style=
"font-weight: 700;"
>
上传课程
</span>
<span
style=
"font-size: 12px;color: #ED3131;margin-left: 4px;"
>
请认真核对上传内容,一旦提交后将不能修改
</span>
</div>
<div
v-show=
"step == 1"
class=
"course-content"
>
<el-form
ref=
"formDataRef"
:model=
"formData"
:rules=
"rules"
label-width=
"120px"
class=
"basic-form"
>
<el-form-item
label=
"课程名称:"
prop=
"courseName"
class=
"valid-msg"
>
<el-col
:span=
"20"
>
<el-input
size=
"small"
v-model=
"formData.courseName"
placeholder=
"请输入课程名称"
style=
"width: 360px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
<!--
<span
class=
"edit-wrapper"
>
<img
class=
"edit-img"
src=
"../../../assets/image/phrase3/icon-pz.png"
/>
修改信息
</span>
-->
</span>
<div
v-show=
"needShowAuditMsg && formData.courseNameCheck"
class=
"error"
>
<span>
错误信息错误信息错误信息错误信息错误信息错误信息息
</span>
<span
class=
"cancle"
>
X
</span>
</div>
</el-col>
</el-form-item>
<el-form-item
label=
"学科分类:"
prop=
"subjectIdList"
class=
"valid-msg"
>
<el-col
:span=
"18"
>
<!-- :props="
{ expandTrigger: 'hover' }" -->
<el-cascader
style=
"width: 360px"
v-model=
"formData.subjectIdList"
:options=
"labelOptions"
:props=
"
{ value: 'id', label: 'name', children: 'subList'}"
>
</el-cascader>
</el-col>
</el-form-item>
<el-form-item
label=
"开放范围:"
prop=
"shareType"
class=
"valid-msg"
>
<el-radio-group
v-model=
"formData.shareType"
>
<el-radio
:label=
"1"
>
机构共享
</el-radio>
</el-radio-group>
</el-form-item>
<div
class=
"basic-item-icon"
>
<span
class=
"require"
>
*
</span>
<el-form-item
label=
"课程视频:"
prop=
"range"
>
<el-upload
class=
"upload-video"
action=
"#"
:before-upload=
"beforeUploadVideo"
:limit=
"3"
:on-exceed=
"handleExceed"
:show-file-list=
"false"
>
<el-button
size=
"small"
type=
"primary"
>
点击上传
</el-button>
<div
slot=
"tip"
class=
"el-upload__tip"
>
<span
class=
"upload-tips"
>
只支持MP4格式,课程视频最多上传100个,单文件最大2G
</span>
<ul
v-show=
"formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
class=
"custom-list"
>
<li
v-for=
"(lecture, index) in formData.courseCustomChapterModels[0].courseCustomLectureModelList"
:key=
"index"
>
<ul
class=
"video"
>
<li>
<span
class=
"title"
>
视频
{{
index
+
1
}}
</span>
<img
src=
"../../../assets/image/phrase3/icon-pin.png"
/>
<span
class=
"name"
@
click=
"previewVideoAction(lecture)"
>
{{
lecture
.
resourceModel
.
name
}}
</span>
</li>
<li>
<img
@
click=
"deleteLecture(index)"
class=
"delete"
src=
"../../../assets/image/phrase3/close.png"
/>
</li>
</ul>
<div
class=
"video-name"
>
<span
class=
"title"
>
<span
>
*
</span>
<span
class=
"video-title"
>
视频名称
</span>
</span>
<el-input
size=
"small"
v-model=
"lecture.name"
placeholder=
"请输入课程名称"
style=
"width: 260px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
lecture
.
name
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</div>
</li>
<span
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
</ul>
<span
v-if=
"!formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
</div>
</el-upload>
</el-form-item>
</div>
<div
class=
"other-content valid-msg"
v-show=
"isShowOtherContent"
>
<div
class=
"tips"
>
注:以下信息为非必填项,您也可以根据实际情况修改
</div>
<div
class=
"basic-item-icon"
>
<!--
<span
class=
"require"
>
*
</span>
-->
<el-form-item
label=
"课程封面:"
>
<el-upload
v-model=
"formData.courseIntroImage"
class=
"bg-uploader"
action=
"#"
accept=
"image/*"
:show-file-list=
"false"
:before-upload=
"beforeUploadListPic"
:disabled=
"disabled"
>
<div
class=
"bg-img-wrapper"
>
<img
v-if=
"formData.courseIntroImage"
@
mouseover
.
stop=
"imgMouseOver=true"
:src=
"formData.courseIntroImage"
class=
"bg-img"
/>
<img
v-if=
"!formData.courseIntroImage"
class=
"bg-img"
src=
"../../../assets/image/small.png"
/>
</div>
</el-upload>
<div
class=
"limit-text"
>
尺寸:750*420,只支持jpeg格式
</div>
</el-form-item>
<p
class=
"upload-message"
v-if=
"uploadImgMessage"
>
请选择列表图片
</p>
</div>
<el-form-item
label=
"课程难度:"
>
<el-radio-group
v-model=
"formData.difficultyLevel"
>
<el-radio
:label=
"1"
>
初级
</el-radio>
<el-radio
:label=
"2"
>
中级
</el-radio>
<el-radio
:label=
"3"
>
高级
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item
label=
"讲师名称:"
class=
"valid-msg"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorName"
placeholder=
"请输入讲师名称"
style=
"width: 360px"
maxlength=
"25"
@
focus=
"isShowDoctorList=true"
@
input=
"filterDoctorName"
@
blur=
"doctorNameInputBlur"
:disabled=
"disabled"
></el-input>
<ul
v-show=
"isShowDoctorList"
class=
"doctor-select-list"
>
<li
v-for=
"(item, index) in doctorNameList"
:key=
"index"
@
click=
"selectDoctor(item.courseDoctorName, index)"
:class=
"
{'doctor-selected': item.seleted}"
>
<span
v-show=
"item.show"
>
{{
item
.
courseDoctorName
||
'测试名'
}}
</span>
</li>
</ul>
<span
class=
"word-num"
>
{{
(
formData
.
courseCustomDoctorModels
[
0
]
&&
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</el-col>
</el-form-item>
<div
class=
"basic-item-icon"
>
<el-form-item
label=
"讲师头像:"
>
<el-upload
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl"
class=
"bg-uploader"
action=
"#"
accept=
"image/*"
:show-file-list=
"false"
:before-upload=
"beforeUploadListPic"
:disabled=
"disabled"
>
<div
class=
"bg-img-wrapper"
>
<img
v-if=
"formData.courseCustomDoctorModels && formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl || ''"
@
mouseover
.
stop=
"imgMouseOver=true"
:src=
"formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl"
class=
"bg-img-doctor"
/>
<img
v-if=
"!(formData.courseCustomDoctorModels && formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl || '')"
class=
"bg-img-doctor"
src=
"../../../assets/image/small.png"
/>
</div>
</el-upload>
<div
class=
"limit-text"
>
尺寸:88*88,只支持jpeg格式
</div>
</el-form-item>
<p
class=
"upload-message"
v-if=
"uploadImgMessage"
>
请选择列表图片
</p>
</div>
<el-form-item
label=
"所属机构:"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorHospital"
placeholder=
"请输入所属机构"
style=
"width: 360px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseCustomDoctorModels
&&
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorHospital
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</el-col>
</el-form-item>
<el-form-item
label=
"课程简介:"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
type=
"textarea"
maxlength=
"200"
:autosize=
"
{ minRows: 5}"
placeholder="请输入课程简介"
v-model="formData.courseIntro"
style="width:90%;"
>
</el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseIntro
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/200
</span>
</el-col>
</el-form-item>
</div>
<!-- 更多信息 -->
<div
class=
"separator-line"
>
<span
class=
"line-left"
></span>
<div
@
click=
"toggleOtherContent"
class=
"center"
>
<span>
展开更多信息
</span>
<img
v-show=
"isShowOtherContent"
src=
"../../../assets/image/phrase3/arrow-up.png"
/>
<img
v-show=
"!isShowOtherContent"
src=
"../../../assets/image/phrase3/arrow-down.png"
/>
</div>
<span
class=
"line-right"
></span>
</div>
</el-form>
</div>
<div
v-show=
"step == 2"
class=
"course-content-step2"
>
<img
class=
"success-img"
src=
"../../../assets/image/phrase3/icon-audit-success.png"
/>
<span
class=
"tips-1"
>
您上传的课程已成功提交,预计在3-5个工作日内完成审核
</span>
<span
class=
"tips-2"
>
审核通过后,您才可以选择课程完成项目配置。如有任何疑问可联系云鹊医400-920-8877
</span>
<el-button
type=
"primary"
size=
"small"
icon=
"el-icon-back"
@
click=
"backToOrgCourse"
>
返回机构课程
</el-button>
</div>
<div
v-show=
"step == 1"
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"dialogObj.visible=true"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm('formDataRef')"
>
确 定
</el-button>
</div>
</el-dialog>
<DialogComponet
:dialogObj=
"dialogObj"
@
hide=
"hideCancleTips"
@
confirm=
"dialogObj.visible=false"
></DialogComponet>
<PreviewVideo
:dialogVisible=
"isPreviewVideo"
:videoUrl=
"videoUrl"
@
close=
"isPreviewVideo=false"
></PreviewVideo>
<el-dialog
title=
"拒绝原因"
:visible=
"showCropper"
@
close=
"hideAuditForm"
width=
"800px"
center
>
<cropper-two
:cropOption=
"cropOption"
@
getCropImg=
"getCropImg(arguments)"
:originImg=
"slide2.oriUrl"
:previewImg=
"slide2.preUrl"
/>
</el-dialog>
<!--
<button
@
click=
"previewVideoAction"
>
test video
</button>
-->
</div>
</
template
>
<
script
>
import
PreviewVideo
from
"@/components/education/custom-resource/preview-video"
;
import
PreviewProtocol
from
"@/components/education/custom-resource/preview-protocol"
;
import
PreviewEditCourse
from
"@/components/education/custom-resource/edit-course-dialog"
;
import
DialogComponet
from
"@/components/education/template/dialog"
;
import
CropperTwo
from
'@/components/common/cropper.two.vue'
import
{
doUpload
,
getFilePath
}
from
"@/utils/qiniu-util"
;
import
{
openLoading
,
closeLoading
,
getQiniuToken1
}
from
"@/utils/utils"
;
import
{
isEmptyUtils
}
from
"@/utils/index"
;
import
{
mapActions
}
from
'vuex'
;
import
{
ossUpload
,
getFilePathForOSS
}
from
"@/utils/oss/ossUtil"
;
let
vm
=
null
;
export
default
{
data
()
{
let
checkCourseName
=
(
rule
,
value
,
callback
)
=>
{
// 如果有审核的信息,则直接报错
if
(
!
value
&&
this
.
needCheckField
)
{
callback
(
new
Error
(
"请输入课程名称"
));
}
else
{
callback
();
}
};
return
{
slide2
:
{
oriUrl
:
'https://avatars1.githubusercontent.com/u/23690568?s=460&v=4'
,
// 原图
preUrl
:
'https://avatars1.githubusercontent.com/u/23690568?s=460&v=4'
// 裁剪后的预览图片,初始化为原图
},
showCropper
:
false
,
cropOption
:
{
offset_x
:
30
,
offset_y
:
40
,
width
:
600
,
height
:
400
},
step
:
1
,
needCheckField
:
false
,
needShowAuditMsg
:
false
,
needShowUploadProcess
:
false
,
disabled
:
false
,
formDataBase
:
{
checkStatus
:
0
,
courseCustomChapterModels
:
[
{
courseCustomLectureModelList
:
[],
id
:
null
,
name
:
"视频课程"
}
],
courseCustomDoctorModels
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
courseId
:
null
,
courseIntro
:
""
,
courseIntroCheck
:
""
,
courseIntroImage
:
"https://test1-file.yunqueyi.com/image/png/common/202006201528136.png"
,
courseIntroImageCheck
:
""
,
courseName
:
""
,
courseNameCheck
:
""
,
deleteCustomLectureIds
:
[],
difficultyLevel
:
1
,
shareType
:
1
,
subjectIdList
:
[]
},
formData
:
{
checkStatus
:
0
,
courseCustomChapterModels
:
[
{
courseCustomLectureModelList
:
[],
id
:
null
,
name
:
"视频课程"
}
],
courseCustomDoctorModels
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
courseId
:
null
,
courseIntro
:
""
,
courseIntroCheck
:
""
,
courseIntroImage
:
"https://test1-file.yunqueyi.com/image/png/common/202006201528136.png"
,
courseIntroImageCheck
:
""
,
courseName
:
""
,
courseNameCheck
:
""
,
deleteCustomLectureIds
:
[],
difficultyLevel
:
1
,
shareType
:
1
,
subjectIdList
:
[]
},
uploadImgMessage
:
false
,
imgMouseOver
:
false
,
rules
:
{
courseName
:
[
{
required
:
true
,
message
:
" "
},
{
validator
:
checkCourseName
}
],
subjectIdList
:
[
{
required
:
true
,
message
:
"请输入课程名称"
}
],
shareType
:
[
{
required
:
true
,
message
:
"请选择开放范围"
}
]
},
labelOptions
:
[],
isShowOtherContent
:
false
,
fileList
:
[
],
projectBanner
:
"https://file.yunqueyi.com/h5/images/cme/project-banner.png"
,
doctorHeader
:
"https://file.yunqueyi.com/h5/images/cme/doctor-header.png"
,
doctorNameList
:
[
{
courseDoctorName
:
"333"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"334"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"335"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"336"
,
show
:
true
,
seleted
:
false
}
],
isShowDoctorList
:
false
,
isPreviewVideo
:
false
,
videoUrl
:
""
,
orgCourseInfo
:
{
defaultDoctor
:
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
},
doctorModelList
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
limitModel
:
{
maxLimitOneVideoSize
:
0
,
maxLimitVideoCount
:
0
,
maxStorageSpace
:
0
,
usedStorageSpace
:
0
}
},
uploadProgress
:
0
,
dialogObj
:
{
visible
:
false
,
title
:
"确定取消吗?"
,
message
:
"发布后,项目将进入审核中,待审核完成后学员可在云鹊医App上参加培训学习"
,
tip
:
""
,
confirmMsg
:
"取 消"
,
hideMsg
:
"确 定"
},
};
},
props
:
{
dialogVisible
:
{
type
:
Boolean
,
default
:
false
},
courseId
:
{
type
:
String
|
Number
,
default
:
0
}
},
computed
:
{},
watch
:
{
dialogVisible
(
isVisible
)
{
this
.
formData
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
formDataBase
));
if
(
isVisible
)
{
if
(
this
.
courseId
==
0
)
{
this
.
initAdd
(
this
.
courseId
);
}
else
{
this
.
initModify
(
this
.
courseId
);
}
}
},
},
components
:
{
PreviewVideo
,
PreviewEditCourse
,
DialogComponet
,
CropperTwo
},
created
()
{
vm
=
this
;
// this.initAdd();
},
mounted
()
{
this
.
getLabelList
();
},
methods
:
{
...
mapActions
([
'setKind'
]),
getCropImg
(
argument
)
{
console
.
log
(
argument
);
this
.
slide2
.
preUrl
=
argument
[
0
]
this
.
cropData
=
argument
[
1
]
},
// 创建课程页面的初始信息
initOrgCourseInfo
()
{
vm
.
GET
(
"contents/course/custom/info/init"
,
{
setEntry
:
true
}).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
orgCourseInfo
=
res
.
data
;
this
.
formData
.
courseCustomDoctorModels
[
0
]
=
this
.
orgCourseInfo
.
defaultDoctor
;
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorAvatarUrl
=
this
.
orgCourseInfo
.
defaultDoctor
.
courseDoctorAvatarUrl
||
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
;
this
.
doctorNameList
=
this
.
convertDNameToSelectOpt
(
this
.
orgCourseInfo
.
doctorModelList
);
+
this
.
courseId
&&
this
.
getCourseInfoById
(
this
.
courseId
);
}
}
);
},
// 将医生名称进行处理
convertDNameToSelectOpt
(
doctorModelList
)
{
doctorModelList
.
forEach
(
item
=>
{
item
.
show
=
true
;
item
.
seleted
=
false
;
});
return
doctorModelList
;
},
// 添加时初始化
initAdd
()
{
console
.
log
(
"in initAdd"
);
this
.
step
=
1
;
this
.
needShowAuditMsg
=
false
;
this
.
initOrgCourseInfo
();
},
initModify
()
{
this
.
needShowAuditMsg
=
true
;
console
.
log
(
"in initModify"
);
this
.
initOrgCourseInfo
();
},
// 创建课程页面的初始信息
getCourseInfoById
(
courseId
)
{
vm
.
GET
(
`contents/course/custom/info/
${
courseId
}
`
)
.
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
formData
=
res
.
data
;
}
}
);
},
// 过滤医生信息
filterDoctorName
(
value
)
{
this
.
doctorNameList
.
forEach
(
item
=>
{
if
(
value
)
{
if
((
item
.
value
+
""
).
indexOf
(
value
)
==
-
1
)
{
item
.
show
=
false
;
}
else
{
item
.
show
=
true
;
}
if
(
item
.
value
==
value
)
{
item
.
seleted
=
true
;
}
else
{
item
.
seleted
=
false
;
}
}
else
{
item
.
show
=
true
;
}
});
},
// 当选择医生的焦点失去时,要反选医生信息
doctorNameInputBlur
()
{
setTimeout
(()
=>
{
this
.
isShowDoctorList
=
false
;
this
.
selectDoctorByName
(
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
);
},
200
);
},
// 根据姓名反选医生信息
// TODO 尝试找到完全匹配的医生
selectDoctorByName
(
name
)
{
},
// 选择其中一个
selectDoctor
(
name
)
{
console
.
log
(
name
);
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
=
name
;
this
.
selectDoctorByName
(
name
);
},
// 关闭当前弹框
close
()
{
this
.
$emit
(
"close"
);
},
// 获取学科列表
getLabelList
()
{
let
req
=
{};
this
.
GET
(
"aggregate/content/labelList"
,
req
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
convertLabelList
(
res
.
data
);
}
});
},
// 将所有子分类中的“全部”去掉
convertLabelList
(
labelList
)
{
let
newLabelList
=
[];
labelList
.
forEach
(
item
=>
{
item
.
subList
=
item
.
subList
.
slice
(
1
);
});
this
.
labelOptions
=
labelList
;
},
// 上传视频(mp4)
beforeUploadVideo
(
file
)
{
console
.
log
(
file
);
const
isMP4
=
file
.
type
===
"video/mp4"
;
const
isLt
=
file
.
size
/
1024
/
1024
/
1024
<
2
;
if
(
!
isLt
)
{
this
.
$message
.
error
(
"视频不符合规范,请根据规范上传视频"
);
return
;
}
if
(
!
isMP4
)
{
this
.
$message
.
error
(
"视频不符合规范,请根据规范上传视频"
);
}
else
{
// openLoading(vm);
this
.
needShowUploadProcess
=
true
;
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress"
,
""
).
then
(
function
(
path
)
{
// closeLoading(vm);
console
.
log
(
'vm.uploadProgress'
,
vm
.
uploadProgress
);
console
.
log
(
path
);
let
uploadResourceParam
=
{
formatType
:
path
.
ext
,
name
:
path
.
name
.
substring
(
path
.
name
.
length
-
25
),
//path.name,
qCloudUrl
:
path
.
fullPath
,
size
:
path
.
size
,
fileType
:
1
,
status
:
"success"
,
uid
:
new
Date
().
getTime
()
}
vm
.
needShowUploadProcess
=
false
;
vm
.
uploadProgress
=
0
;
vm
.
insertResourceAction
(
uploadResourceParam
);
});
}
},
// 上传资源(视频)后,生存对应的节
insertResourceAction
(
uploadResourceParam
)
{
this
.
POST
(
"contents/course/custom/info/insertResource"
,
[
uploadResourceParam
]).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
let
cName
=
res
.
data
.
resourceModelList
[
0
].
name
;
// cName = cName.substr(0, cName.lastIndexOf('.'));
let
lectureObj
=
{
id
:
null
,
name
:
cName
,
nameCheck
:
""
,
contentCheck
:
""
,
resourceModel
:
{}
}
lectureObj
.
resourceModel
=
res
.
data
&&
res
.
data
.
resourceModelList
[
0
];
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
push
(
lectureObj
);
}
});
},
//上传列表图片
beforeUploadListPic
(
file
)
{
let
fileLimit
=
{
width
:
230
,
height
:
172
,
size
:
0.5
,
sizeText
:
"500K"
,
key
:
"attachmentUrl"
,
more
:
"attachmentMore1"
,
show
:
"uploadImgMessage"
};
vm
.
beforeAvatarUpload2
(
file
,
fileLimit
);
// vm.beforeAvatarUpload(file, fileLimit);
},
//上传图片校验
beforeAvatarUpload2
(
file
,
fileLimit
)
{
console
.
log
();
const
isJPG
=
file
.
type
===
"image/jpeg"
;
const
isPNG
=
file
.
type
===
"image/png"
;
const
isLt2M
=
file
.
size
/
1024
/
1024
<
fileLimit
.
size
;
console
.
log
(
"isJPG"
,
isJPG
,
"isPNG"
,
isPNG
,
"isLt2M"
,
isLt2M
);
// if (!isJPG && !isPNG) {
// vm.$message.error("图片不符合规范,请根据规范上传图片");
// return;
// }
// if (!isLt2M) {
// vm.$message.error("图片不符合规范,请根据规范上传图片 ");
// return;
// }
let
_img
=
new
FileReader
();
_img
.
readAsDataURL
(
file
);
console
.
log
(
'readAsDataURL'
,
_img
,
file
);
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
();
image
.
src
=
theFile
.
target
.
result
;
vm
.
slide2
.
oriUrl
=
theFile
.
target
.
result
;
vm
.
showCropper
=
true
;
console
.
log
(
'readAsDataURL222'
,
_img
.
width
,
file
,
theFile
);
image
.
onload
=
function
()
{
console
.
log
(
'image.onload'
,
image
);
let
_vm
=
this
;
if
(
false
// true ||
// _vm.width != fileLimit.width ||
// _vm.height != fileLimit.height
)
{
vm
.
$message
.
error
(
"图片不符合规范,请根据规范上传图片"
);
}
else
{
// openLoading(vm);
// doUpload(
// vm,
// file,
// getFilePath(file, null),
// "preview4",
// "progress1",
// 1
// ).then(function(path) {
// closeLoading(vm);
// console.log(path);
// if (fileLimit.show == "uploadImgMessage") {
// vm.uploadImgMessage = false;
// }
// // else if (fileLimit.show == "uploadImgMessage2") {
// // vm.uploadImgMessage2 = false;
// // }
// vm.formData[fileLimit.key] = path.fullPath;
// vm.formData[fileLimit.more] = {
// attachmentName: path.name,
// attachmentExt: path.ext,
// attachmentSize: path.size
// };
// vm.$message.success("上传成功");
// });
}
};
};
return
isJPG
&&
isLt2M
;
},
//上传图片校验
beforeAvatarUpload
(
file
,
fileLimit
)
{
console
.
log
();
const
isJPG
=
file
.
type
===
"image/jpeg"
;
const
isPNG
=
file
.
type
===
"image/png"
;
const
isLt2M
=
file
.
size
/
1024
/
1024
<
fileLimit
.
size
;
console
.
log
(
"isJPG"
,
isJPG
,
"isPNG"
,
isPNG
,
"isLt2M"
,
isLt2M
);
// if (!isJPG && !isPNG) {
// vm.$message.error("图片不符合规范,请根据规范上传图片");
// return;
// }
// if (!isLt2M) {
// vm.$message.error("图片不符合规范,请根据规范上传图片 ");
// return;
// }
let
_img
=
new
FileReader
();
_img
.
readAsDataURL
(
file
);
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
();
image
.
src
=
theFile
.
target
.
result
;
image
.
onload
=
function
()
{
let
_vm
=
this
;
if
(
false
// true ||
// _vm.width != fileLimit.width ||
// _vm.height != fileLimit.height
)
{
vm
.
$message
.
error
(
"图片不符合规范,请根据规范上传图片"
);
}
else
{
openLoading
(
vm
);
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress1"
,
1
).
then
(
function
(
path
)
{
closeLoading
(
vm
);
console
.
log
(
path
);
if
(
fileLimit
.
show
==
"uploadImgMessage"
)
{
vm
.
uploadImgMessage
=
false
;
}
// else if (fileLimit.show == "uploadImgMessage2") {
// vm.uploadImgMessage2 = false;
// }
vm
.
formData
[
fileLimit
.
key
]
=
path
.
fullPath
;
vm
.
formData
[
fileLimit
.
more
]
=
{
attachmentName
:
path
.
name
,
attachmentExt
:
path
.
ext
,
attachmentSize
:
path
.
size
};
vm
.
$message
.
success
(
"上传成功"
);
});
}
};
};
return
isJPG
&&
isLt2M
;
},
// 展开/收起 更多信息
toggleOtherContent
()
{
this
.
isShowOtherContent
=
!
this
.
isShowOtherContent
;
},
// 限制选择文件个数
handleExceed
(
files
,
fileList
)
{
this
.
$message
.
warning
(
`当前限制选择 100 个文件,您已经共选择了
${
files
.
length
+
fileList
.
length
}
个文件!`
);
},
// 删除按钮
beforeRemove
(
file
,
fileList
)
{
return
this
.
$confirm
(
`确定移除
${
file
.
name
}
?`
);
},
//表单校验
submitForm
(
formName
)
{
this
.
needShowAuditMsg
=
false
;
this
.
$refs
[
formName
].
validate
(
valid
=>
{
if
(
valid
)
{
this
.
insertOrUpdate
();
}
else
{
console
.
log
(
"error submit!!"
);
}
this
.
needShowAuditMsg
=
true
;
});
},
// 添加或修改课程(kind = 3)
insertOrUpdate
()
{
this
.
POST
(
"contents/course/custom/info/insertOrUpdate"
,
this
.
formData
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
if
(
this
.
courseId
==
'add'
)
{
this
.
step
=
2
;
}
else
{
this
.
close
();
this
.
setKind
(
3
);
}
}
});
},
// 返回到课程选择页面(kind = 3)
backToOrgCourse
()
{
this
.
close
();
this
.
setKind
(
3
);
},
// 关闭(“取消”按钮弹出来的)弹框
hideCancleTips
()
{
this
.
dialogObj
.
visible
=
false
;
this
.
close
();
},
// 预览视频
previewVideoAction
(
lecture
)
{
this
.
videoUrl
=
lecture
.
resourceModel
.
filePath
;
this
.
isPreviewVideo
=
true
;
},
// 删除本节视频
// TODO 要将删除的节ID放在删除的节里
deleteLecture
(
index
)
{
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
splice
(
index
,
1
);
},
// 上传课程封面图片
beforeUpload1
(
file
)
{
console
.
log
(
'beforeUpload1'
,
file
);
const
isLt50kb
=
file
.
size
/
1024
<
50
;
// if (!isLt50kb) {
// this.$message.error("上传的图片大小不能超过 50kb");
// return;
// }
vm
.
doUploadOSS
(
file
,
1
);
//评价图片
},
// 上传讲师图片
beforeUpload2
(
file
)
{
console
.
log
(
'beforeUpload2'
,
file
);
const
isLt50kb
=
file
.
size
/
1024
<
50
;
// if (!isLt50kb) {
// this.$message.error("上传的图片大小不能超过 50kb");
// return;
// }
this
.
doUploadOSS
(
file
,
2
);
//web端课程覆盖图片
},
// (调用OSS API)开始上传
doUploadOSS
(
file
,
index
)
{
let
self
=
this
;
//如果没有选择文件,返回
// if (isEmptyUtils(file)) {
// return;
// }
// self.$message.info("开始上传");
//上传 指定文件名
ossUpload
(
self
,
file
,
getFilePathForOSS
(
file
),
null
,
null
,
null
).
then
(
function
(
path
)
{
let
list
=
[{}];
list
[
0
].
name
=
file
.
name
;
list
[
0
].
url
=
localStorage
.
getItem
(
"resource_url"
)
+
path
;
if
(
index
===
1
)
{
// self.fileList1 = Object.assign([], list);
// self.model.courseInfoUrl = path;
}
else
if
(
index
===
2
)
{
// self.fileList2 = Object.assign([], list);
// self.model.appCourseUrl = path;
}
self
.
$message
.
success
(
"上传成功"
);
});
return
false
;
},
}
};
</
script
>
<
style
scoped
lang=
"scss"
>
.edit-course-wrapper
{
.course-content
{
// color: red;
.basic-item-icon
{
position
:
relative
;
margin-top
:
20px
;
.require
{
position
:
absolute
;
left
:
40px
;
top
:
11px
;
color
:
#f56c6c
;
}
.upload-message
{
position
:
absolute
;
left
:
160px
;
top
:
105px
;
font-size
:
12px
;
color
:
#f56c6c
;
}
.img-delete
{
position
:
absolute
;
left
:
0px
;
top
:
0px
;
width
:
84px
;
height
:
100px
;
background
:
#000
;
opacity
:
0
.7
;
z-index
:
999
;
i
{
color
:
#fff
;
margin-top
:
39px
;
margin-left
:
0px
;
}
}
.upload-tips
{
width
:
100%
;
position
:
relative
;
top
:
-10px
;
font-size
:
12px
;
color
:
#979899
;
// display: inline-block;
}
.custom-list
{
// width: 100%;
width
:
480px
;
display
:
flex
;
flex-direction
:
column
;
border-radius
:
3px
;
border
:
1px
solid
rgba
(
228
,
231
,
237
,
1
);
padding
:
20px
;
font-size
:
14px
;
&
>
li
{
margin
:
10px
0
;
}
.video
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
space-between
;
align-items
:
center
;
.title
{
display
:
inline-block
;
width
:
70px
;
text-align
:
right
;
margin-right
:
10px
;
}
.name
{
cursor
:
pointer
;
color
:
#5890DD
;
}
img
{
width
:
12px
;
height
:
12px
;
}
.delete
{
position
:
relative
;
top
:
4px
;
cursor
:
pointer
;
width
:
16px
;
height
:
16px
;
}
}
.video-name
{
.title
{
display
:
inline-block
;
width
:
70px
;
text-align
:
right
;
margin-right
:
10px
;
}
}
}
}
.word-num
{
font-size
:
12px
;
color
:
#999
;
padding-top
:
5px
;
}
.bg-uploader
{
img
{
float
:
left
;
}
.bg-img-wrapper
{
.bg-img
{
display
:
block
;
width
:
160px
;
height
:
90px
;
}
.bg-img-doctor
{
display
:
block
;
width
:
88px
;
height
:
88px
;
}
}
.bg-video
{
float
:
left
;
width
:
84px
;
height
:
100px
;
}
}
.limit-text
{
position
:
absolute
;
top
:
86px
;
left
:
0px
;
font-size
:
12px
;
color
:
#979899
;
}
.separator-line
{
width
:
100%
;
display
:
flex
;
flex-direction
:
row
;
align-content
:
center
;
align-items
:
center
;
justify-content
:
space-between
;
.center
{
cursor
:
pointer
;
width
:
130px
;
color
:
#666666
;
img
{
width
:
12px
;
}
}
.line-left
,
.line-right
{
// display: inline-block;
// width: 100%;
flex
:
1
;
border-bottom
:
1px
dashed
#e4e7ed
;
}
}
.tips
{
width
:
100%
;
height
:
32px
;
line-height
:
32px
;
padding-left
:
12px
;
background
:
rgba
(
254
,
250
,
245
,
1
);
border-radius
:
3px
;
color
:
#e6a23c
;
}
.valid-msg
{
position
:
relative
;
.error
{
width
:
370px
;
position
:
absolute
;
display
:
flex
;
justify-content
:
space-between
;
top
:
29px
;
font-size
:
13px
;
color
:
#ed3131
;
.text
{
flex
:
1
;
}
.cancle
{
cursor
:
pointer
;
width
:
20px
;
}
}
.edit-wrapper
{
color
:
#449284
;
.edit-img
{
position
:
relative
;
top
:
2px
;
width
:
12px
;
margin
:
0
2px
0
4px
;
}
}
.doctor-select-list
{
width
:
200px
;
// max-height: 100px;
position
:
absolute
;
z-index
:
100
;
background
:
#fff
;
box-shadow
:
0
0
6px
rgba
(
0
,
0
,
0
,
0
.3
);
-webkit-box-shadow
:
0
0
6px
rgba
(
0
,
0
,
0
,
0
.3
);
// margin: 10px;
li
{
padding-left
:
20px
;
cursor
:
pointer
;
&
:hover
{
background
:
#f4f7fd
;
}
&
.doctor-selected
{
background
:
#f4f7fd
;
}
}
}
}
.upload-process
{
margin
:
10px
0
10px
10px
;
display
:
block
;
// width: 310px;
height
:
4px
;
background
:
#449284
;
border-radius
:
2px
;
}
}
.course-content-step2
{
display
:
flex
;
flex-direction
:
column
;
text-align
:
center
;
align-items
:
center
;
.success-img
{
width
:
60px
;
height
:
60px
;
}
.tips-1
{
margin-top
:
30px
;
font-size
:
18px
;
color
:
#303133
;
}
.tips-2
{
margin-top
:
4px
;
margin-bottom
:
40px
;
font-size
:
14px
;
color
:
#999999
;
}
}
}
</
style
>
src/components/education/custom-resource/edit-course-dialog copy 9.vue
0 → 100644
浏览文件 @
d2298748
<
template
>
<div
class=
"edit-course-wrapper dialog-title-border"
>
<el-dialog
ref=
"testDialogRef"
title=
"上传课程"
:visible=
"dialogVisible"
@
close=
"close"
center
:close-on-click-modal=
"false"
:close-on-press-escape=
"false"
width=
"800px"
>
<div
slot=
"title"
style=
"text-align: left;"
>
<span
style=
"font-weight: 700;"
>
上传课程
</span>
<span
style=
"font-size: 12px;color: #ED3131;margin-left: 4px;"
>
请认真核对上传内容,一旦提交后将不能修改
</span>
</div>
<div
v-show=
"step == 1"
class=
"course-content"
>
<el-form
ref=
"formDataRef"
:model=
"formData"
:rules=
"rules"
label-width=
"120px"
class=
"basic-form"
>
<el-form-item
label=
"课程名称:"
prop=
"courseName"
class=
"valid-msg"
>
<el-col
:span=
"20"
>
<el-input
size=
"small"
v-model=
"formData.courseName"
placeholder=
"请输入课程名称"
style=
"width: 360px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
<!--
<span
class=
"edit-wrapper"
>
<img
class=
"edit-img"
src=
"../../../assets/image/phrase3/icon-pz.png"
/>
修改信息
</span>
-->
</span>
<div
v-show=
"needShowAuditMsg && formData.courseNameCheck"
class=
"error"
>
<span>
错误信息错误信息错误信息错误信息错误信息错误信息息
</span>
<span
class=
"cancle"
>
X
</span>
</div>
</el-col>
</el-form-item>
<el-form-item
label=
"学科分类:"
prop=
"subjectIdList"
class=
"valid-msg"
>
<el-col
:span=
"18"
>
<!-- :props="
{ expandTrigger: 'hover' }" -->
<el-cascader
style=
"width: 360px"
v-model=
"formData.subjectIdList"
:options=
"labelOptions"
:props=
"
{ value: 'id', label: 'name', children: 'subList'}"
>
</el-cascader>
</el-col>
</el-form-item>
<el-form-item
label=
"开放范围:"
prop=
"shareType"
class=
"valid-msg"
>
<el-radio-group
v-model=
"formData.shareType"
>
<el-radio
:label=
"1"
>
机构共享
</el-radio>
</el-radio-group>
</el-form-item>
<div
class=
"basic-item-icon"
>
<span
class=
"require"
>
*
</span>
<el-form-item
label=
"课程视频:"
prop=
"range"
>
<el-upload
class=
"upload-video"
action=
"#"
:before-upload=
"beforeUploadVideo"
:limit=
"3"
:on-exceed=
"handleExceed"
:show-file-list=
"false"
>
<el-button
size=
"small"
type=
"primary"
>
点击上传
</el-button>
<div
slot=
"tip"
class=
"el-upload__tip"
>
<span
class=
"upload-tips"
>
只支持MP4格式,课程视频最多上传100个,单文件最大2G
</span>
<ul
v-show=
"formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
class=
"custom-list"
>
<li
v-for=
"(lecture, index) in formData.courseCustomChapterModels[0].courseCustomLectureModelList"
:key=
"index"
>
<ul
class=
"video"
>
<li>
<span
class=
"title"
>
视频
{{
index
+
1
}}
</span>
<img
src=
"../../../assets/image/phrase3/icon-pin.png"
/>
<span
class=
"name"
@
click=
"previewVideoAction(lecture)"
>
{{
lecture
.
resourceModel
.
name
}}
</span>
</li>
<li>
<img
@
click=
"deleteLecture(index)"
class=
"delete"
src=
"../../../assets/image/phrase3/close.png"
/>
</li>
</ul>
<div
class=
"video-name"
>
<span
class=
"title"
>
<span
>
*
</span>
<span
class=
"video-title"
>
视频名称
</span>
</span>
<el-input
size=
"small"
v-model=
"lecture.name"
placeholder=
"请输入课程名称"
style=
"width: 260px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
lecture
.
name
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</div>
</li>
<span
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
</ul>
<span
v-if=
"!formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
</div>
</el-upload>
</el-form-item>
</div>
<div
class=
"other-content valid-msg"
v-show=
"isShowOtherContent"
>
<div
class=
"tips"
>
注:以下信息为非必填项,您也可以根据实际情况修改
</div>
<div
class=
"basic-item-icon"
>
<!--
<span
class=
"require"
>
*
</span>
-->
<el-form-item
label=
"课程封面:"
>
<el-upload
v-model=
"formData.courseIntroImage"
class=
"bg-uploader"
action=
"#"
accept=
"image/*"
:show-file-list=
"false"
:before-upload=
"beforeUploadListPic"
:disabled=
"disabled"
>
<div
class=
"bg-img-wrapper"
>
<img
v-if=
"formData.courseIntroImage"
@
mouseover
.
stop=
"imgMouseOver=true"
:src=
"formData.courseIntroImage"
class=
"bg-img"
/>
<img
v-if=
"!formData.courseIntroImage"
class=
"bg-img"
src=
"../../../assets/image/small.png"
/>
</div>
</el-upload>
<div
class=
"limit-text"
>
尺寸:750*420,只支持jpeg格式
</div>
</el-form-item>
<p
class=
"upload-message"
v-if=
"uploadImgMessage"
>
请选择列表图片
</p>
</div>
<el-form-item
label=
"课程难度:"
>
<el-radio-group
v-model=
"formData.difficultyLevel"
>
<el-radio
:label=
"1"
>
初级
</el-radio>
<el-radio
:label=
"2"
>
中级
</el-radio>
<el-radio
:label=
"3"
>
高级
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item
label=
"讲师名称:"
class=
"valid-msg"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorName"
placeholder=
"请输入讲师名称"
style=
"width: 360px"
maxlength=
"25"
@
focus=
"isShowDoctorList=true"
@
input=
"filterDoctorName"
@
blur=
"doctorNameInputBlur"
:disabled=
"disabled"
></el-input>
<ul
v-show=
"isShowDoctorList"
class=
"doctor-select-list"
>
<li
v-for=
"(item, index) in doctorNameList"
:key=
"index"
@
click=
"selectDoctor(item.courseDoctorName, index)"
:class=
"
{'doctor-selected': item.seleted}"
>
<span
v-show=
"item.show"
>
{{
item
.
courseDoctorName
||
'测试名'
}}
</span>
</li>
</ul>
<span
class=
"word-num"
>
{{
(
formData
.
courseCustomDoctorModels
[
0
]
&&
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</el-col>
</el-form-item>
<div
class=
"basic-item-icon"
>
<el-form-item
label=
"讲师头像:"
>
<el-upload
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl"
class=
"bg-uploader"
action=
"#"
accept=
"image/*"
:show-file-list=
"false"
:before-upload=
"beforeUploadListPic"
:disabled=
"disabled"
>
<div
class=
"bg-img-wrapper"
>
<img
v-if=
"formData.courseCustomDoctorModels && formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl || ''"
@
mouseover
.
stop=
"imgMouseOver=true"
:src=
"formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl"
class=
"bg-img-doctor"
/>
<img
v-if=
"!(formData.courseCustomDoctorModels && formData.courseCustomDoctorModels[0].courseDoctorAvatarUrl || '')"
class=
"bg-img-doctor"
src=
"../../../assets/image/small.png"
/>
</div>
</el-upload>
<div
class=
"limit-text"
>
尺寸:88*88,只支持jpeg格式
</div>
</el-form-item>
<p
class=
"upload-message"
v-if=
"uploadImgMessage"
>
请选择列表图片
</p>
</div>
<el-form-item
label=
"所属机构:"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
v-model=
"formData.courseCustomDoctorModels[0].courseDoctorHospital"
placeholder=
"请输入所属机构"
style=
"width: 360px"
maxlength=
"25"
:disabled=
"disabled"
></el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseCustomDoctorModels
&&
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorHospital
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</el-col>
</el-form-item>
<el-form-item
label=
"课程简介:"
>
<el-col
:span=
"18"
>
<el-input
size=
"small"
type=
"textarea"
maxlength=
"200"
:autosize=
"
{ minRows: 5}"
placeholder="请输入课程简介"
v-model="formData.courseIntro"
style="width:90%;"
>
</el-input>
<span
class=
"word-num"
>
{{
(
formData
.
courseIntro
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/200
</span>
</el-col>
</el-form-item>
</div>
<!-- 更多信息 -->
<div
class=
"separator-line"
>
<span
class=
"line-left"
></span>
<div
@
click=
"toggleOtherContent"
class=
"center"
>
<span>
展开更多信息
</span>
<img
v-show=
"isShowOtherContent"
src=
"../../../assets/image/phrase3/arrow-up.png"
/>
<img
v-show=
"!isShowOtherContent"
src=
"../../../assets/image/phrase3/arrow-down.png"
/>
</div>
<span
class=
"line-right"
></span>
</div>
</el-form>
</div>
<div
v-show=
"step == 2"
class=
"course-content-step2"
>
<img
class=
"success-img"
src=
"../../../assets/image/phrase3/icon-audit-success.png"
/>
<span
class=
"tips-1"
>
您上传的课程已成功提交,预计在3-5个工作日内完成审核
</span>
<span
class=
"tips-2"
>
审核通过后,您才可以选择课程完成项目配置。如有任何疑问可联系云鹊医400-920-8877
</span>
<el-button
type=
"primary"
size=
"small"
icon=
"el-icon-back"
@
click=
"backToOrgCourse"
>
返回机构课程
</el-button>
</div>
<div
v-show=
"step == 1"
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"dialogObj.visible=true"
>
取 消
</el-button>
<el-button
type=
"primary"
@
click=
"submitForm('formDataRef')"
>
确 定
</el-button>
</div>
</el-dialog>
<DialogComponet
:dialogObj=
"dialogObj"
@
hide=
"hideCancleTips"
@
confirm=
"dialogObj.visible=false"
></DialogComponet>
<PreviewVideo
:dialogVisible=
"isPreviewVideo"
:videoUrl=
"videoUrl"
@
close=
"isPreviewVideo=false"
></PreviewVideo>
<el-dialog
title=
"拒绝原因"
:visible=
"showCropper"
width=
"1000px"
center
>
<cropper-two
:cropOption=
"cropOption"
@
getCropImg=
"getCropImg(arguments)"
:originImg=
"slide2.oriUrl"
:previewImg=
"slide2.preUrl"
/>
</el-dialog>
<!--
<button
@
click=
"previewVideoAction"
>
test video
</button>
-->
</div>
</
template
>
<
script
>
import
PreviewVideo
from
"@/components/education/custom-resource/preview-video"
;
import
PreviewProtocol
from
"@/components/education/custom-resource/preview-protocol"
;
import
PreviewEditCourse
from
"@/components/education/custom-resource/edit-course-dialog"
;
import
DialogComponet
from
"@/components/education/template/dialog"
;
import
CropperTwo
from
'@/components/common/cropper.two.vue'
import
{
doUpload
,
getFilePath
}
from
"@/utils/qiniu-util"
;
import
{
openLoading
,
closeLoading
,
getQiniuToken1
}
from
"@/utils/utils"
;
import
{
isEmptyUtils
}
from
"@/utils/index"
;
import
{
mapActions
}
from
'vuex'
;
import
{
ossUpload
,
getFilePathForOSS
}
from
"@/utils/oss/ossUtil"
;
let
vm
=
null
;
export
default
{
data
()
{
let
checkCourseName
=
(
rule
,
value
,
callback
)
=>
{
// 如果有审核的信息,则直接报错
if
(
!
value
&&
this
.
needCheckField
)
{
callback
(
new
Error
(
"请输入课程名称"
));
}
else
{
callback
();
}
};
return
{
slide2
:
{
oriUrl
:
'https://avatars1.githubusercontent.com/u/23690568?s=460&v=4'
,
// 原图
preUrl
:
'https://avatars1.githubusercontent.com/u/23690568?s=460&v=4'
// 裁剪后的预览图片,初始化为原图
},
showCropper
:
false
,
cropOption
:
{
offset_x
:
10
,
offset_y
:
10
,
width
:
750
,
height
:
420
},
step
:
1
,
needCheckField
:
false
,
needShowAuditMsg
:
false
,
needShowUploadProcess
:
false
,
disabled
:
false
,
formDataBase
:
{
checkStatus
:
0
,
courseCustomChapterModels
:
[
{
courseCustomLectureModelList
:
[],
id
:
null
,
name
:
"视频课程"
}
],
courseCustomDoctorModels
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
courseId
:
null
,
courseIntro
:
""
,
courseIntroCheck
:
""
,
courseIntroImage
:
"https://test1-file.yunqueyi.com/image/png/common/202006201528136.png"
,
courseIntroImageCheck
:
""
,
courseName
:
""
,
courseNameCheck
:
""
,
deleteCustomLectureIds
:
[],
difficultyLevel
:
1
,
shareType
:
1
,
subjectIdList
:
[]
},
formData
:
{
checkStatus
:
0
,
courseCustomChapterModels
:
[
{
courseCustomLectureModelList
:
[],
id
:
null
,
name
:
"视频课程"
}
],
courseCustomDoctorModels
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
courseId
:
null
,
courseIntro
:
""
,
courseIntroCheck
:
""
,
courseIntroImage
:
"https://test1-file.yunqueyi.com/image/png/common/202006201528136.png"
,
courseIntroImageCheck
:
""
,
courseName
:
""
,
courseNameCheck
:
""
,
deleteCustomLectureIds
:
[],
difficultyLevel
:
1
,
shareType
:
1
,
subjectIdList
:
[]
},
uploadImgMessage
:
false
,
imgMouseOver
:
false
,
rules
:
{
courseName
:
[
{
required
:
true
,
message
:
" "
},
{
validator
:
checkCourseName
}
],
subjectIdList
:
[
{
required
:
true
,
message
:
"请输入课程名称"
}
],
shareType
:
[
{
required
:
true
,
message
:
"请选择开放范围"
}
]
},
labelOptions
:
[],
isShowOtherContent
:
false
,
fileList
:
[
],
projectBanner
:
"https://file.yunqueyi.com/h5/images/cme/project-banner.png"
,
doctorHeader
:
"https://file.yunqueyi.com/h5/images/cme/doctor-header.png"
,
doctorNameList
:
[
{
courseDoctorName
:
"333"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"334"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"335"
,
show
:
true
,
seleted
:
false
},
{
courseDoctorName
:
"336"
,
show
:
true
,
seleted
:
false
}
],
isShowDoctorList
:
false
,
isPreviewVideo
:
false
,
videoUrl
:
""
,
orgCourseInfo
:
{
defaultDoctor
:
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
},
doctorModelList
:
[
{
courseDoctorAvatarUrl
:
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
,
courseDoctorAvatarUrlCheck
:
""
,
courseDoctorHospital
:
""
,
courseDoctorHospitalCheck
:
""
,
courseDoctorName
:
""
,
courseDoctorNameCheck
:
""
,
id
:
null
}
],
limitModel
:
{
maxLimitOneVideoSize
:
0
,
maxLimitVideoCount
:
0
,
maxStorageSpace
:
0
,
usedStorageSpace
:
0
}
},
uploadProgress
:
0
,
dialogObj
:
{
visible
:
false
,
title
:
"确定取消吗?"
,
message
:
"发布后,项目将进入审核中,待审核完成后学员可在云鹊医App上参加培训学习"
,
tip
:
""
,
confirmMsg
:
"取 消"
,
hideMsg
:
"确 定"
},
};
},
props
:
{
dialogVisible
:
{
type
:
Boolean
,
default
:
false
},
courseId
:
{
type
:
String
|
Number
,
default
:
0
}
},
computed
:
{},
watch
:
{
dialogVisible
(
isVisible
)
{
this
.
formData
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
formDataBase
));
if
(
isVisible
)
{
if
(
this
.
courseId
==
0
)
{
this
.
initAdd
(
this
.
courseId
);
}
else
{
this
.
initModify
(
this
.
courseId
);
}
}
},
},
components
:
{
PreviewVideo
,
PreviewEditCourse
,
DialogComponet
,
CropperTwo
},
created
()
{
vm
=
this
;
// this.initAdd();
},
mounted
()
{
this
.
getLabelList
();
},
methods
:
{
...
mapActions
([
'setKind'
]),
getCropImg
(
argument
)
{
this
.
showCropper
=
false
;
console
.
log
(
argument
[
0
],
'#####'
,
argument
[
1
]);
this
.
slide2
.
preUrl
=
argument
[
0
]
this
.
cropData
=
argument
[
1
]
},
// 创建课程页面的初始信息
initOrgCourseInfo
()
{
vm
.
GET
(
"contents/course/custom/info/init"
,
{
setEntry
:
true
}).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
orgCourseInfo
=
res
.
data
;
this
.
formData
.
courseCustomDoctorModels
[
0
]
=
this
.
orgCourseInfo
.
defaultDoctor
;
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorAvatarUrl
=
this
.
orgCourseInfo
.
defaultDoctor
.
courseDoctorAvatarUrl
||
"https://test1-file.yunqueyi.com/image/png/common/2020062015265063.png"
;
this
.
doctorNameList
=
this
.
convertDNameToSelectOpt
(
this
.
orgCourseInfo
.
doctorModelList
);
+
this
.
courseId
&&
this
.
getCourseInfoById
(
this
.
courseId
);
}
}
);
},
// 将医生名称进行处理
convertDNameToSelectOpt
(
doctorModelList
)
{
doctorModelList
.
forEach
(
item
=>
{
item
.
show
=
true
;
item
.
seleted
=
false
;
});
return
doctorModelList
;
},
// 添加时初始化
initAdd
()
{
console
.
log
(
"in initAdd"
);
this
.
step
=
1
;
this
.
needShowAuditMsg
=
false
;
this
.
initOrgCourseInfo
();
},
initModify
()
{
this
.
needShowAuditMsg
=
true
;
console
.
log
(
"in initModify"
);
this
.
initOrgCourseInfo
();
},
// 创建课程页面的初始信息
getCourseInfoById
(
courseId
)
{
vm
.
GET
(
`contents/course/custom/info/
${
courseId
}
`
)
.
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
formData
=
res
.
data
;
}
}
);
},
// 过滤医生信息
filterDoctorName
(
value
)
{
this
.
doctorNameList
.
forEach
(
item
=>
{
if
(
value
)
{
if
((
item
.
value
+
""
).
indexOf
(
value
)
==
-
1
)
{
item
.
show
=
false
;
}
else
{
item
.
show
=
true
;
}
if
(
item
.
value
==
value
)
{
item
.
seleted
=
true
;
}
else
{
item
.
seleted
=
false
;
}
}
else
{
item
.
show
=
true
;
}
});
},
// 当选择医生的焦点失去时,要反选医生信息
doctorNameInputBlur
()
{
setTimeout
(()
=>
{
this
.
isShowDoctorList
=
false
;
this
.
selectDoctorByName
(
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
);
},
200
);
},
// 根据姓名反选医生信息
// TODO 尝试找到完全匹配的医生
selectDoctorByName
(
name
)
{
},
// 选择其中一个
selectDoctor
(
name
)
{
console
.
log
(
name
);
this
.
formData
.
courseCustomDoctorModels
[
0
].
courseDoctorName
=
name
;
this
.
selectDoctorByName
(
name
);
},
// 关闭当前弹框
close
()
{
this
.
$emit
(
"close"
);
},
// 获取学科列表
getLabelList
()
{
let
req
=
{};
this
.
GET
(
"aggregate/content/labelList"
,
req
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
this
.
convertLabelList
(
res
.
data
);
}
});
},
// 将所有子分类中的“全部”去掉
convertLabelList
(
labelList
)
{
let
newLabelList
=
[];
labelList
.
forEach
(
item
=>
{
item
.
subList
=
item
.
subList
.
slice
(
1
);
});
this
.
labelOptions
=
labelList
;
},
// 上传视频(mp4)
beforeUploadVideo
(
file
)
{
console
.
log
(
file
);
const
isMP4
=
file
.
type
===
"video/mp4"
;
const
isLt
=
file
.
size
/
1024
/
1024
/
1024
<
2
;
if
(
!
isLt
)
{
this
.
$message
.
error
(
"视频不符合规范,请根据规范上传视频"
);
return
;
}
if
(
!
isMP4
)
{
this
.
$message
.
error
(
"视频不符合规范,请根据规范上传视频"
);
}
else
{
// openLoading(vm);
this
.
needShowUploadProcess
=
true
;
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress"
,
""
).
then
(
function
(
path
)
{
// closeLoading(vm);
console
.
log
(
'vm.uploadProgress'
,
vm
.
uploadProgress
);
console
.
log
(
path
);
let
uploadResourceParam
=
{
formatType
:
path
.
ext
,
name
:
path
.
name
.
substring
(
path
.
name
.
length
-
25
),
//path.name,
qCloudUrl
:
path
.
fullPath
,
size
:
path
.
size
,
fileType
:
1
,
status
:
"success"
,
uid
:
new
Date
().
getTime
()
}
vm
.
needShowUploadProcess
=
false
;
vm
.
uploadProgress
=
0
;
vm
.
insertResourceAction
(
uploadResourceParam
);
});
}
},
// 上传资源(视频)后,生存对应的节
insertResourceAction
(
uploadResourceParam
)
{
this
.
POST
(
"contents/course/custom/info/insertResource"
,
[
uploadResourceParam
]).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
let
cName
=
res
.
data
.
resourceModelList
[
0
].
name
;
// cName = cName.substr(0, cName.lastIndexOf('.'));
let
lectureObj
=
{
id
:
null
,
name
:
cName
,
nameCheck
:
""
,
contentCheck
:
""
,
resourceModel
:
{}
}
lectureObj
.
resourceModel
=
res
.
data
&&
res
.
data
.
resourceModelList
[
0
];
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
push
(
lectureObj
);
}
});
},
//上传列表图片
beforeUploadListPic
(
file
)
{
let
fileLimit
=
{
width
:
230
,
height
:
172
,
size
:
0.5
,
sizeText
:
"500K"
,
key
:
"attachmentUrl"
,
more
:
"attachmentMore1"
,
show
:
"uploadImgMessage"
};
vm
.
beforeAvatarUpload2
(
file
,
fileLimit
);
// vm.beforeAvatarUpload(file, fileLimit);
},
//上传图片校验
beforeAvatarUpload2
(
file
,
fileLimit
)
{
console
.
log
();
const
isJPG
=
file
.
type
===
"image/jpeg"
;
const
isPNG
=
file
.
type
===
"image/png"
;
const
isLt2M
=
file
.
size
/
1024
/
1024
<
fileLimit
.
size
;
console
.
log
(
"isJPG"
,
isJPG
,
"isPNG"
,
isPNG
,
"isLt2M"
,
isLt2M
);
// if (!isJPG && !isPNG) {
// vm.$message.error("图片不符合规范,请根据规范上传图片");
// return;
// }
// if (!isLt2M) {
// vm.$message.error("图片不符合规范,请根据规范上传图片 ");
// return;
// }
let
_img
=
new
FileReader
();
_img
.
readAsDataURL
(
file
);
console
.
log
(
'readAsDataURL'
,
_img
,
file
);
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
();
image
.
src
=
theFile
.
target
.
result
;
vm
.
slide2
.
oriUrl
=
theFile
.
target
.
result
;
vm
.
showCropper
=
true
;
console
.
log
(
'readAsDataURL222'
,
_img
.
width
,
file
,
theFile
);
image
.
onload
=
function
()
{
console
.
log
(
'image.onload'
,
image
);
let
_vm
=
this
;
if
(
false
// true ||
// _vm.width != fileLimit.width ||
// _vm.height != fileLimit.height
)
{
vm
.
$message
.
error
(
"图片不符合规范,请根据规范上传图片"
);
}
else
{
// openLoading(vm);
// doUpload(
// vm,
// file,
// getFilePath(file, null),
// "preview4",
// "progress1",
// 1
// ).then(function(path) {
// closeLoading(vm);
// console.log(path);
// if (fileLimit.show == "uploadImgMessage") {
// vm.uploadImgMessage = false;
// }
// // else if (fileLimit.show == "uploadImgMessage2") {
// // vm.uploadImgMessage2 = false;
// // }
// vm.formData[fileLimit.key] = path.fullPath;
// vm.formData[fileLimit.more] = {
// attachmentName: path.name,
// attachmentExt: path.ext,
// attachmentSize: path.size
// };
// vm.$message.success("上传成功");
// });
}
};
};
return
isJPG
&&
isLt2M
;
},
//上传图片校验
beforeAvatarUpload
(
file
,
fileLimit
)
{
console
.
log
();
const
isJPG
=
file
.
type
===
"image/jpeg"
;
const
isPNG
=
file
.
type
===
"image/png"
;
const
isLt2M
=
file
.
size
/
1024
/
1024
<
fileLimit
.
size
;
console
.
log
(
"isJPG"
,
isJPG
,
"isPNG"
,
isPNG
,
"isLt2M"
,
isLt2M
);
// if (!isJPG && !isPNG) {
// vm.$message.error("图片不符合规范,请根据规范上传图片");
// return;
// }
// if (!isLt2M) {
// vm.$message.error("图片不符合规范,请根据规范上传图片 ");
// return;
// }
let
_img
=
new
FileReader
();
_img
.
readAsDataURL
(
file
);
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
();
image
.
src
=
theFile
.
target
.
result
;
image
.
onload
=
function
()
{
let
_vm
=
this
;
if
(
false
// true ||
// _vm.width != fileLimit.width ||
// _vm.height != fileLimit.height
)
{
vm
.
$message
.
error
(
"图片不符合规范,请根据规范上传图片"
);
}
else
{
openLoading
(
vm
);
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress1"
,
1
).
then
(
function
(
path
)
{
closeLoading
(
vm
);
console
.
log
(
path
);
if
(
fileLimit
.
show
==
"uploadImgMessage"
)
{
vm
.
uploadImgMessage
=
false
;
}
// else if (fileLimit.show == "uploadImgMessage2") {
// vm.uploadImgMessage2 = false;
// }
vm
.
formData
[
fileLimit
.
key
]
=
path
.
fullPath
;
vm
.
formData
[
fileLimit
.
more
]
=
{
attachmentName
:
path
.
name
,
attachmentExt
:
path
.
ext
,
attachmentSize
:
path
.
size
};
vm
.
$message
.
success
(
"上传成功"
);
});
}
};
};
return
isJPG
&&
isLt2M
;
},
// 展开/收起 更多信息
toggleOtherContent
()
{
this
.
isShowOtherContent
=
!
this
.
isShowOtherContent
;
},
// 限制选择文件个数
handleExceed
(
files
,
fileList
)
{
this
.
$message
.
warning
(
`当前限制选择 100 个文件,您已经共选择了
${
files
.
length
+
fileList
.
length
}
个文件!`
);
},
// 删除按钮
beforeRemove
(
file
,
fileList
)
{
return
this
.
$confirm
(
`确定移除
${
file
.
name
}
?`
);
},
//表单校验
submitForm
(
formName
)
{
this
.
needShowAuditMsg
=
false
;
this
.
$refs
[
formName
].
validate
(
valid
=>
{
if
(
valid
)
{
this
.
insertOrUpdate
();
}
else
{
console
.
log
(
"error submit!!"
);
}
this
.
needShowAuditMsg
=
true
;
});
},
// 添加或修改课程(kind = 3)
insertOrUpdate
()
{
this
.
POST
(
"contents/course/custom/info/insertOrUpdate"
,
this
.
formData
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
if
(
this
.
courseId
==
'add'
)
{
this
.
step
=
2
;
}
else
{
this
.
close
();
this
.
setKind
(
3
);
}
}
});
},
// 返回到课程选择页面(kind = 3)
backToOrgCourse
()
{
this
.
close
();
this
.
setKind
(
3
);
},
// 关闭(“取消”按钮弹出来的)弹框
hideCancleTips
()
{
this
.
dialogObj
.
visible
=
false
;
this
.
close
();
},
// 预览视频
previewVideoAction
(
lecture
)
{
this
.
videoUrl
=
lecture
.
resourceModel
.
filePath
;
this
.
isPreviewVideo
=
true
;
},
// 删除本节视频
// TODO 要将删除的节ID放在删除的节里
deleteLecture
(
index
)
{
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
splice
(
index
,
1
);
},
// 上传课程封面图片
beforeUpload1
(
file
)
{
console
.
log
(
'beforeUpload1'
,
file
);
const
isLt50kb
=
file
.
size
/
1024
<
50
;
// if (!isLt50kb) {
// this.$message.error("上传的图片大小不能超过 50kb");
// return;
// }
vm
.
doUploadOSS
(
file
,
1
);
//评价图片
},
// 上传讲师图片
beforeUpload2
(
file
)
{
console
.
log
(
'beforeUpload2'
,
file
);
const
isLt50kb
=
file
.
size
/
1024
<
50
;
// if (!isLt50kb) {
// this.$message.error("上传的图片大小不能超过 50kb");
// return;
// }
this
.
doUploadOSS
(
file
,
2
);
//web端课程覆盖图片
},
// (调用OSS API)开始上传
doUploadOSS
(
file
,
index
)
{
let
self
=
this
;
//如果没有选择文件,返回
// if (isEmptyUtils(file)) {
// return;
// }
// self.$message.info("开始上传");
//上传 指定文件名
ossUpload
(
self
,
file
,
getFilePathForOSS
(
file
),
null
,
null
,
null
).
then
(
function
(
path
)
{
let
list
=
[{}];
list
[
0
].
name
=
file
.
name
;
list
[
0
].
url
=
localStorage
.
getItem
(
"resource_url"
)
+
path
;
if
(
index
===
1
)
{
// self.fileList1 = Object.assign([], list);
// self.model.courseInfoUrl = path;
}
else
if
(
index
===
2
)
{
// self.fileList2 = Object.assign([], list);
// self.model.appCourseUrl = path;
}
self
.
$message
.
success
(
"上传成功"
);
});
return
false
;
},
}
};
</
script
>
<
style
scoped
lang=
"scss"
>
.edit-course-wrapper
{
.course-content
{
// color: red;
.basic-item-icon
{
position
:
relative
;
margin-top
:
20px
;
.require
{
position
:
absolute
;
left
:
40px
;
top
:
11px
;
color
:
#f56c6c
;
}
.upload-message
{
position
:
absolute
;
left
:
160px
;
top
:
105px
;
font-size
:
12px
;
color
:
#f56c6c
;
}
.img-delete
{
position
:
absolute
;
left
:
0px
;
top
:
0px
;
width
:
84px
;
height
:
100px
;
background
:
#000
;
opacity
:
0
.7
;
z-index
:
999
;
i
{
color
:
#fff
;
margin-top
:
39px
;
margin-left
:
0px
;
}
}
.upload-tips
{
width
:
100%
;
position
:
relative
;
top
:
-10px
;
font-size
:
12px
;
color
:
#979899
;
// display: inline-block;
}
.custom-list
{
// width: 100%;
width
:
480px
;
display
:
flex
;
flex-direction
:
column
;
border-radius
:
3px
;
border
:
1px
solid
rgba
(
228
,
231
,
237
,
1
);
padding
:
20px
;
font-size
:
14px
;
&
>
li
{
margin
:
10px
0
;
}
.video
{
display
:
flex
;
flex-direction
:
row
;
justify-content
:
space-between
;
align-items
:
center
;
.title
{
display
:
inline-block
;
width
:
70px
;
text-align
:
right
;
margin-right
:
10px
;
}
.name
{
cursor
:
pointer
;
color
:
#5890DD
;
}
img
{
width
:
12px
;
height
:
12px
;
}
.delete
{
position
:
relative
;
top
:
4px
;
cursor
:
pointer
;
width
:
16px
;
height
:
16px
;
}
}
.video-name
{
.title
{
display
:
inline-block
;
width
:
70px
;
text-align
:
right
;
margin-right
:
10px
;
}
}
}
}
.word-num
{
font-size
:
12px
;
color
:
#999
;
padding-top
:
5px
;
}
.bg-uploader
{
img
{
float
:
left
;
}
.bg-img-wrapper
{
.bg-img
{
display
:
block
;
width
:
160px
;
height
:
90px
;
}
.bg-img-doctor
{
display
:
block
;
width
:
88px
;
height
:
88px
;
}
}
.bg-video
{
float
:
left
;
width
:
84px
;
height
:
100px
;
}
}
.limit-text
{
position
:
absolute
;
top
:
86px
;
left
:
0px
;
font-size
:
12px
;
color
:
#979899
;
}
.separator-line
{
width
:
100%
;
display
:
flex
;
flex-direction
:
row
;
align-content
:
center
;
align-items
:
center
;
justify-content
:
space-between
;
.center
{
cursor
:
pointer
;
width
:
130px
;
color
:
#666666
;
img
{
width
:
12px
;
}
}
.line-left
,
.line-right
{
// display: inline-block;
// width: 100%;
flex
:
1
;
border-bottom
:
1px
dashed
#e4e7ed
;
}
}
.tips
{
width
:
100%
;
height
:
32px
;
line-height
:
32px
;
padding-left
:
12px
;
background
:
rgba
(
254
,
250
,
245
,
1
);
border-radius
:
3px
;
color
:
#e6a23c
;
}
.valid-msg
{
position
:
relative
;
.error
{
width
:
370px
;
position
:
absolute
;
display
:
flex
;
justify-content
:
space-between
;
top
:
29px
;
font-size
:
13px
;
color
:
#ed3131
;
.text
{
flex
:
1
;
}
.cancle
{
cursor
:
pointer
;
width
:
20px
;
}
}
.edit-wrapper
{
color
:
#449284
;
.edit-img
{
position
:
relative
;
top
:
2px
;
width
:
12px
;
margin
:
0
2px
0
4px
;
}
}
.doctor-select-list
{
width
:
200px
;
// max-height: 100px;
position
:
absolute
;
z-index
:
100
;
background
:
#fff
;
box-shadow
:
0
0
6px
rgba
(
0
,
0
,
0
,
0
.3
);
-webkit-box-shadow
:
0
0
6px
rgba
(
0
,
0
,
0
,
0
.3
);
// margin: 10px;
li
{
padding-left
:
20px
;
cursor
:
pointer
;
&
:hover
{
background
:
#f4f7fd
;
}
&
.doctor-selected
{
background
:
#f4f7fd
;
}
}
}
}
.upload-process
{
margin
:
10px
0
10px
10px
;
display
:
block
;
// width: 310px;
height
:
4px
;
background
:
#449284
;
border-radius
:
2px
;
}
}
.course-content-step2
{
display
:
flex
;
flex-direction
:
column
;
text-align
:
center
;
align-items
:
center
;
.success-img
{
width
:
60px
;
height
:
60px
;
}
.tips-1
{
margin-top
:
30px
;
font-size
:
18px
;
color
:
#303133
;
}
.tips-2
{
margin-top
:
4px
;
margin-bottom
:
40px
;
font-size
:
14px
;
color
:
#999999
;
}
}
}
</
style
>
src/components/education/custom-resource/edit-course-dialog.vue
浏览文件 @
d2298748
...
@@ -34,13 +34,9 @@
...
@@ -34,13 +34,9 @@
></el-input>
></el-input>
<span
class=
"word-num"
>
<span
class=
"word-num"
>
{{
(
formData
.
courseName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
{{
(
formData
.
courseName
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
<!--
<span
class=
"edit-wrapper"
>
<img
class=
"edit-img"
src=
"../../../assets/image/phrase3/icon-pz.png"
/>
修改信息
</span>
-->
</span>
</span>
<div
v-show=
"needShowAuditMsg && formData.courseNameCheck"
class=
"error"
>
<div
v-show=
"needShowAuditMsg && formData.courseNameCheck"
class=
"error"
>
<span>
错误信息错误信息错误信息错误信息错误信息错误信息息
</span>
<span>
{{
formData
.
courseNameCheck
}}
</span>
<span
class=
"cancle"
>
X
</span>
</div>
</div>
</el-col>
</el-col>
</el-form-item>
</el-form-item>
...
@@ -58,7 +54,7 @@
...
@@ -58,7 +54,7 @@
</el-col>
</el-col>
</el-form-item>
</el-form-item>
<el-form-item
label=
"开放范围:"
prop=
"shareType"
class=
"valid-msg"
>
<el-form-item
label=
"开放范围:"
prop=
"shareType"
>
<el-radio-group
v-model=
"formData.shareType"
>
<el-radio-group
v-model=
"formData.shareType"
>
<el-radio
:label=
"1"
>
机构共享
</el-radio>
<el-radio
:label=
"1"
>
机构共享
</el-radio>
</el-radio-group>
</el-radio-group>
...
@@ -66,7 +62,7 @@
...
@@ -66,7 +62,7 @@
<div
class=
"basic-item-icon"
>
<div
class=
"basic-item-icon"
>
<span
class=
"require"
>
*
</span>
<span
class=
"require"
>
*
</span>
<el-form-item
label=
"课程视频:"
prop=
"range"
>
<el-form-item
label=
"课程视频:"
prop=
"range"
>
<el-upload
<el-upload
class=
"upload-video"
class=
"upload-video"
action=
"#"
action=
"#"
...
@@ -79,7 +75,7 @@
...
@@ -79,7 +75,7 @@
<div
slot=
"tip"
class=
"el-upload__tip"
>
<div
slot=
"tip"
class=
"el-upload__tip"
>
<span
class=
"upload-tips"
>
只支持MP4格式,课程视频最多上传100个,单文件最大2G
</span>
<span
class=
"upload-tips"
>
只支持MP4格式,课程视频最多上传100个,单文件最大2G
</span>
<ul
v-show=
"formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
class=
"custom-list"
>
<ul
v-show=
"formData.courseCustomChapterModels[0].courseCustomLectureModelList.length"
class=
"custom-list"
>
<li
v-for=
"(lecture, index) in formData.courseCustomChapterModels[0].courseCustomLectureModelList"
:key=
"index"
>
<li
v-for=
"(lecture, index) in formData.courseCustomChapterModels[0].courseCustomLectureModelList"
:key=
"index"
class=
"valid-msg"
>
<ul
class=
"video"
>
<ul
class=
"video"
>
<li>
<li>
<span
class=
"title"
>
视频
{{
index
+
1
}}
</span>
<span
class=
"title"
>
视频
{{
index
+
1
}}
</span>
...
@@ -107,6 +103,9 @@
...
@@ -107,6 +103,9 @@
{{
(
lecture
.
name
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
{{
(
lecture
.
name
||
''
).
replace
(
/
\s
+/g
,
""
).
length
}}
/25
</span>
</span>
</div>
</div>
<div
v-show=
"needShowAuditMsg && !formData.courseCustomChapterModels[0].courseCustomLectureModelList[index].nameCheck"
class=
"error-video"
>
<span>
11
{{
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
[
index
].
nameCheck
}}
</span>
</div>
</li>
</li>
<span
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
<span
v-show=
"needShowUploadProcess"
class=
"upload-process"
:style=
"
{'width': (uploadProgress/100 * 340) + 'px'}">
</span>
</ul>
</ul>
...
@@ -272,7 +271,19 @@
...
@@ -272,7 +271,19 @@
</el-dialog>
</el-dialog>
<DialogComponet
:dialogObj=
"dialogObj"
@
hide=
"hideCancleTips"
@
confirm=
"dialogObj.visible=false"
></DialogComponet>
<DialogComponet
:dialogObj=
"dialogObj"
@
hide=
"hideCancleTips"
@
confirm=
"dialogObj.visible=false"
></DialogComponet>
<PreviewVideo
:dialogVisible=
"isPreviewVideo"
:videoUrl=
"videoUrl"
@
close=
"isPreviewVideo=false"
></PreviewVideo>
<PreviewVideo
:dialogVisible=
"isPreviewVideo"
:videoUrl=
"videoUrl"
@
close=
"isPreviewVideo=false"
></PreviewVideo>
<cropper-two
v-if=
"showCropper"
:cropOption=
"cropOption"
@
getCropImg=
"getCropImg(arguments)"
:originImg=
"slide2.oriUrl"
:previewImg=
"slide2.preUrl"
/>
<el-dialog
title=
"拒绝原因"
:visible=
"showCropper"
width=
"1000px"
center
>
<cropper-two
:cropOption=
"cropOption"
@
getCropImg=
"getCropImg(arguments)"
:originImg=
"slide2.oriUrl"
:previewImg=
"slide2.preUrl"
/>
</el-dialog>
<!--
<button
@
click=
"previewVideoAction"
>
test video
</button>
-->
<!--
<button
@
click=
"previewVideoAction"
>
test video
</button>
-->
</div>
</div>
</
template
>
</
template
>
...
@@ -305,14 +316,14 @@ export default {
...
@@ -305,14 +316,14 @@ export default {
},
},
showCropper
:
false
,
showCropper
:
false
,
cropOption
:
{
cropOption
:
{
offset_x
:
3
0
,
offset_x
:
1
0
,
offset_y
:
4
0
,
offset_y
:
1
0
,
width
:
60
0
,
width
:
75
0
,
height
:
4
0
0
height
:
4
2
0
},
},
step
:
1
,
step
:
1
,
needCheckField
:
false
,
needCheckField
:
false
,
needShowAuditMsg
:
fals
e
,
needShowAuditMsg
:
tru
e
,
needShowUploadProcess
:
false
,
needShowUploadProcess
:
false
,
disabled
:
false
,
disabled
:
false
,
formDataBase
:
{
formDataBase
:
{
...
@@ -439,10 +450,10 @@ export default {
...
@@ -439,10 +450,10 @@ export default {
}
}
],
],
limitModel
:
{
limitModel
:
{
maxLimitOneVideoSize
:
0
,
maxLimitOneVideoSize
:
2147483648
,
maxLimitVideoCount
:
0
,
maxLimitVideoCount
:
10
0
,
maxStorageSpace
:
0
,
maxStorageSpace
:
536870912
0
,
usedStorageSpace
:
0
usedStorageSpace
:
1021842989
}
}
},
},
uploadProgress
:
0
,
uploadProgress
:
0
,
...
@@ -496,7 +507,8 @@ export default {
...
@@ -496,7 +507,8 @@ export default {
...
mapActions
([
'setKind'
]),
...
mapActions
([
'setKind'
]),
getCropImg
(
argument
)
{
getCropImg
(
argument
)
{
console
.
log
(
argument
);
this
.
showCropper
=
false
;
console
.
log
(
argument
[
0
],
'#####'
,
argument
[
1
]);
this
.
slide2
.
preUrl
=
argument
[
0
]
this
.
slide2
.
preUrl
=
argument
[
0
]
this
.
cropData
=
argument
[
1
]
this
.
cropData
=
argument
[
1
]
},
},
...
@@ -624,43 +636,51 @@ export default {
...
@@ -624,43 +636,51 @@ export default {
// 上传视频(mp4)
// 上传视频(mp4)
beforeUploadVideo
(
file
)
{
beforeUploadVideo
(
file
)
{
// orgCourseInfo.limitModel: {
// maxLimitOneVideoSize: 2147483648,
// maxLimitVideoCount: 100,
// maxStorageSpace: 5368709120,
// usedStorageSpace: 1021842989
// }
console
.
log
(
file
);
console
.
log
(
file
);
const
isMP4
=
file
.
type
===
"video/mp4"
;
const
isMP4
=
file
.
type
===
"video/mp4"
;
const
isLt
=
file
.
size
/
1024
/
1024
/
1024
<
2
;
const
isGt
=
file
.
size
>
this
.
orgCourseInfo
.
limitModel
.
maxLimitOneVideoSize
;
if
(
!
isLt
)
{
const
isGtMaxNum
=
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
length
>=
100
;
const
usedGtMaxStore
=
this
.
orgCourseInfo
.
limitModel
.
usedStorageSpace
+
file
.
size
>
this
.
orgCourseInfo
.
limitModel
.
maxStorageSpace
;
if
(
isGt
||
!
isMP4
||
isGtMaxNum
)
{
this
.
$message
.
error
(
"视频不符合规范,请根据规范上传视频"
);
this
.
$message
.
error
(
"视频不符合规范,请根据规范上传视频"
);
return
;
return
;
}
}
if
(
!
isMP4
)
{
if
(
usedGtMaxStore
)
{
this
.
$message
.
error
(
"视频不符合规范,请根据规范上传视频"
);
this
.
$message
.
error
(
"个人存储空间已不够上传此视频"
);
}
else
{
return
;
// openLoading(vm);
this
.
needShowUploadProcess
=
true
;
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress"
,
""
).
then
(
function
(
path
)
{
// closeLoading(vm);
console
.
log
(
'vm.uploadProgress'
,
vm
.
uploadProgress
);
console
.
log
(
path
);
let
uploadResourceParam
=
{
formatType
:
path
.
ext
,
name
:
path
.
name
.
substring
(
path
.
name
.
length
-
25
),
//path.name,
qCloudUrl
:
path
.
fullPath
,
size
:
path
.
size
,
fileType
:
1
,
status
:
"success"
,
uid
:
new
Date
().
getTime
()
}
vm
.
needShowUploadProcess
=
false
;
vm
.
uploadProgress
=
0
;
vm
.
insertResourceAction
(
uploadResourceParam
);
});
}
}
// 直接上传
this
.
needShowUploadProcess
=
true
;
doUpload
(
vm
,
file
,
getFilePath
(
file
,
null
),
"preview4"
,
"progress"
,
""
).
then
(
function
(
path
)
{
// closeLoading(vm);
console
.
log
(
'vm.uploadProgress'
,
vm
.
uploadProgress
);
console
.
log
(
path
);
let
uploadResourceParam
=
{
formatType
:
path
.
ext
,
name
:
path
.
name
.
substring
(
path
.
name
.
length
-
25
),
//path.name,
qCloudUrl
:
path
.
fullPath
,
size
:
path
.
size
,
fileType
:
1
,
status
:
"success"
,
uid
:
new
Date
().
getTime
()
}
vm
.
needShowUploadProcess
=
false
;
vm
.
uploadProgress
=
0
;
vm
.
insertResourceAction
(
uploadResourceParam
);
});
},
},
// 上传资源(视频)后,生存对应的节
// 上传资源(视频)后,生存对应的节
...
@@ -676,6 +696,7 @@ export default {
...
@@ -676,6 +696,7 @@ export default {
contentCheck
:
""
,
contentCheck
:
""
,
resourceModel
:
{}
resourceModel
:
{}
}
}
this
.
orgCourseInfo
.
limitModel
=
res
.
data
.
limitModel
;
lectureObj
.
resourceModel
=
res
.
data
&&
res
.
data
.
resourceModelList
[
0
];
lectureObj
.
resourceModel
=
res
.
data
&&
res
.
data
.
resourceModelList
[
0
];
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
push
(
lectureObj
);
this
.
formData
.
courseCustomChapterModels
[
0
].
courseCustomLectureModelList
.
push
(
lectureObj
);
}
}
...
@@ -693,7 +714,8 @@ export default {
...
@@ -693,7 +714,8 @@ export default {
more
:
"attachmentMore1"
,
more
:
"attachmentMore1"
,
show
:
"uploadImgMessage"
show
:
"uploadImgMessage"
};
};
vm
.
beforeAvatarUpload
(
file
,
fileLimit
);
vm
.
beforeAvatarUpload2
(
file
,
fileLimit
);
// vm.beforeAvatarUpload(file, fileLimit);
},
},
//上传图片校验
//上传图片校验
...
@@ -892,44 +914,65 @@ export default {
...
@@ -892,44 +914,65 @@ export default {
// 上传课程封面图片
// 上传课程封面图片
beforeUpload1
(
file
)
{
beforeUpload1
(
file
)
{
const
isLt50kb
=
file
.
size
/
1024
<
50
;
// const isLt50kb = file.size / 1024
<
50
;
// if (!isLt50kb) {
const
isJPG
=
file
.
type
===
'image/jpeg'
// this.$message.error("上传的图片大小不能超过 50kb");
if
(
!
isJPG
)
{
// return;
this
.
$message
.
error
(
'只支持jpeg格式'
)
// }
return
;
vm
.
doUploadOSS
(
file
,
1
);
//评价图片
}
var
_img
=
new
FileReader
()
_img
.
readAsDataURL
(
file
)
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
()
image
.
src
=
theFile
.
target
.
result
image
.
onload
=
function
()
{
let
_this
=
this
if
(
_this
.
width
!=
740
||
_this
.
height
!=
420
)
{
vm
.
$message
.
info
(
"上传图片尺寸大小不合适,请重新上传"
)
}
else
{
vm
.
doUploadOSS
(
file
,
1
);
//封面图片
}
}
}
},
},
// 上传讲师图片
// 上传讲师图片
beforeUpload2
(
file
)
{
beforeUpload2
(
file
)
{
const
isLt50kb
=
file
.
size
/
1024
<
50
;
// const isLt50kb = file.size / 1024
<
50
;
// if (!isLt50kb) {
const
isJPG
=
file
.
type
===
'image/jpeg'
// this.$message.error("上传的图片大小不能超过 50kb");
if
(
!
isJPG
)
{
// return;
this
.
$message
.
error
(
'只支持jpeg格式'
)
// }
return
;
this
.
doUploadOSS
(
file
,
2
);
//web端课程覆盖图片
}
var
_img
=
new
FileReader
()
_img
.
readAsDataURL
(
file
)
_img
.
onload
=
function
(
theFile
)
{
let
image
=
new
Image
()
image
.
src
=
theFile
.
target
.
result
image
.
onload
=
function
()
{
let
_this
=
this
if
(
_this
.
width
!=
88
||
_this
.
height
!=
88
)
{
vm
.
$message
.
info
(
"上传图片尺寸大小不合适,请重新上传"
)
}
else
{
vm
.
doUploadOSS
(
file
,
2
);
//封面图片
}
}
}
},
},
// (调用OSS API)开始上传
// (调用OSS API)开始上传
doUploadOSS
(
file
,
index
)
{
doUploadOSS
(
file
,
index
)
{
let
self
=
this
;
let
self
=
this
;
//如果没有选择文件,返回
// if (isEmptyUtils(file)) {
// return;
// }
// self.$message.info("开始上传");
//上传 指定文件名
//上传 指定文件名
ossUpload
(
self
,
file
,
getFilePathForOSS
(
file
),
null
,
null
,
null
).
ossUpload
(
self
,
file
,
getFilePathForOSS
(
file
),
null
,
null
,
null
).
then
(
function
(
path
)
{
then
(
function
(
path
)
{
let
list
=
[{}];
let
list
=
[{}];
list
[
0
].
name
=
file
.
name
;
//
list[0].name = file.name;
list
[
0
].
url
=
localStorage
.
getItem
(
"resource_url"
)
+
path
;
//
list[0].url = localStorage.getItem("resource_url") + path;
if
(
index
===
1
)
{
if
(
index
===
1
)
{
self
.
fileList1
=
Object
.
assign
([],
list
);
self
.
model
.
courseInfoUrl
=
path
;
}
else
if
(
index
===
2
)
{
}
else
if
(
index
===
2
)
{
self
.
fileList2
=
Object
.
assign
([],
list
);
self
.
model
.
appCourseUrl
=
path
;
}
}
self
.
$message
.
success
(
"上传成功"
);
self
.
$message
.
success
(
"上传成功"
);
});
});
...
...
src/style/global.scss
浏览文件 @
d2298748
...
@@ -189,4 +189,10 @@
...
@@ -189,4 +189,10 @@
}
}
}
}
}
}
.el-cascader
.el-input
.el-input__inner
:focus
,
.el-cascader
.el-input.is-focus
.el-input__inner
{
border-color
:
#449284
!
important
;
}
.el-input__inner
:focus
,
.el-textarea__inner
:focus
{
border-color
:
#449284
!
important
;
}
src/utils/fetch.js
浏览文件 @
d2298748
...
@@ -54,7 +54,7 @@ service.interceptors.request.use(config => {
...
@@ -54,7 +54,7 @@ service.interceptors.request.use(config => {
}
}
if
(
process
.
env
.
BUILD_ENV
==
"development"
){
// 本地开发环境
if
(
process
.
env
.
BUILD_ENV
==
"development"
){
// 本地开发环境
// console.log('环境变量>>>> ', process.env.BUILD_ENV);
// console.log('环境变量>>>> ', process.env.BUILD_ENV);
config
.
headers
[
'token'
]
=
'3
77D063C4A8448B2847E05074648E77F
'
;
config
.
headers
[
'token'
]
=
'3
F5F01DF814C46E59FF09F3E63A55D18
'
;
// config.headers['token'] = localStorage.getItem('storageToken')
// config.headers['token'] = localStorage.getItem('storageToken')
}
else
{
}
else
{
config
.
headers
[
'token'
]
=
localStorage
.
getItem
(
'storageToken'
)
config
.
headers
[
'token'
]
=
localStorage
.
getItem
(
'storageToken'
)
...
...
src/utils/oss/ossUtil.js
浏览文件 @
d2298748
...
@@ -12,8 +12,13 @@ contentTypeMap.set("xlsx", "application/vnd.openxmlformats-officedocument.spread
...
@@ -12,8 +12,13 @@ contentTypeMap.set("xlsx", "application/vnd.openxmlformats-officedocument.spread
// PICA_DEV_APP.service('ossUtil', function ($rootScope, $q) {
// PICA_DEV_APP.service('ossUtil', function ($rootScope, $q) {
//获取OSS客户端
//获取OSS客户端
let
bucketName
=
localStorage
.
getItem
(
"bucketName"
);
// let bucketName = localStorage.getItem("bucketName");
let
endpoint
=
localStorage
.
getItem
(
"endpoint"
);
// let endpoint = localStorage.getItem("endpoint");
let
bucketName
=
'pica-test-huabei2'
;
let
endpoint
=
'oss-cn-beijing.aliyuncs.com'
;
console
.
log
(
bucketName
,
endpoint
);
// //上传状态
// //上传状态
// let status = false;
// let status = false;
...
@@ -34,8 +39,8 @@ const doOSSAction = () => {
...
@@ -34,8 +39,8 @@ const doOSSAction = () => {
//sts服务器
//sts服务器
// let stsUrl = localStorage.getItem("stsUrl") + "/" + localStorage.getItem("token");
// let stsUrl = localStorage.getItem("stsUrl") + "/" + localStorage.getItem("token");
// let stsUrl = 'https://dev-api.yunqueyi.com/middle/oss/token/' + localStorage.getItem("token");
// let stsUrl = 'https://dev-api.yunqueyi.com/middle/oss/token/' + localStorage.getItem("token");
// let stsUrl = 'https://dev-api.yunqueyi.com/middle/oss/token/377D063C4A8448B2847E05074648E77F
'
let
stsUrl
=
'https://dev-api.yunqueyi.com/middle/oss/token/D1AA498C1C1C4298B712B3678EF9BD07
'
let
stsUrl
=
'https://dev-api.yunqueyi.com/middle/oss/token/'
+
localStorage
.
getItem
(
"token"
);
//
let stsUrl = 'https://dev-api.yunqueyi.com/middle/oss/token/' + localStorage.getItem("token");
return
new
Promise
(
function
(
resolve
,
reject
)
{
return
new
Promise
(
function
(
resolve
,
reject
)
{
fetch
(
stsUrl
,
{},
'GET'
).
then
(
function
(
result
)
{
fetch
(
stsUrl
,
{},
'GET'
).
then
(
function
(
result
)
{
...
@@ -53,11 +58,11 @@ const doOSSAction = () => {
...
@@ -53,11 +58,11 @@ const doOSSAction = () => {
console
.
log
(
'STS临时授权成功'
);
console
.
log
(
'STS临时授权成功'
);
}
else
{
}
else
{
reject
(
result
);
reject
(
result
);
console
.
error
(
'STS临时授权失败:'
,
result
);
console
.
error
(
'STS临时授权失败
222
:'
,
result
);
}
}
}).
catch
(
function
(
error
)
{
}).
catch
(
function
(
error
)
{
reject
();
reject
();
console
.
error
(
'STS临时授权失败:'
,
error
);
console
.
error
(
'STS临时授权失败
111
:'
,
error
);
});
});
});
});
};
};
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录