|
@@ -10,7 +10,10 @@
|
|
|
</div>
|
|
|
<div class="stepRightNav" @click="jump('first')">
|
|
|
<div>项目基本信息</div>
|
|
|
- <div class="isFinishCss" v-if="raceDetail.title != '' && raceDetail.type.length > 0">
|
|
|
+ <div
|
|
|
+ class="isFinishCss"
|
|
|
+ v-if="raceDetail.title != '' && raceDetail.type.length > 0"
|
|
|
+ >
|
|
|
<div class="isFinish">
|
|
|
<img src="../../../../assets/icon/race/finish.png" alt="" />
|
|
|
</div>
|
|
@@ -91,28 +94,49 @@
|
|
|
</div>
|
|
|
<div class="right">
|
|
|
<div class="whiteBg">
|
|
|
- <div class="right_title" id="first">项目基本信息</div>
|
|
|
+ <div class="right_title" id="first"><span style="color:red;">*</span>项目基本信息</div>
|
|
|
<div class="basic_box">
|
|
|
<div class="big_box">
|
|
|
<div class="left_first">
|
|
|
<div>
|
|
|
<div>
|
|
|
<div class="bInfo_title" style="margin-bottom: 15px">
|
|
|
- 案例名称
|
|
|
+ 案例名称
|
|
|
</div>
|
|
|
<div style="display: flex; margin-right: 20px">
|
|
|
- <img src="../../../../assets/icon/projectName.png" alt style="margin-right: 8px" />
|
|
|
- <input type="text" placeholder="请输入项目名称" class="binfo_input" v-model="raceDetail.title"
|
|
|
- @input="updateTitle" />
|
|
|
+ <img
|
|
|
+ src="../../../../assets/icon/projectName.png"
|
|
|
+ alt
|
|
|
+ style="margin-right: 8px"
|
|
|
+ />
|
|
|
+ <input
|
|
|
+ type="text"
|
|
|
+ placeholder="请输入项目名称"
|
|
|
+ class="binfo_input"
|
|
|
+ v-model="raceDetail.title"
|
|
|
+ @input="updateTitle"
|
|
|
+ />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="both">
|
|
|
<div class="choose">
|
|
|
- <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
|
|
|
+ <div
|
|
|
+ class="all_choose"
|
|
|
+ v-for="(item, index) in CourseType[0]"
|
|
|
+ :key="index"
|
|
|
+ >
|
|
|
<span>{{ item.name }}</span>
|
|
|
- <el-checkbox-group v-model="raceDetail.type" @change="updateTitle">
|
|
|
- <el-checkbox @change="updateType(item1)" v-for="item1 in CourseTypeJson[item.id]"
|
|
|
- :key="item1.id" :label="item1.id">{{ item1.name }}</el-checkbox>
|
|
|
+ <el-checkbox-group
|
|
|
+ v-model="raceDetail.type"
|
|
|
+ @change="updateTitle"
|
|
|
+ >
|
|
|
+ <el-checkbox
|
|
|
+ @change="updateType(item1)"
|
|
|
+ v-for="item1 in CourseTypeJson[item.id]"
|
|
|
+ :key="item1.id"
|
|
|
+ :label="item1.id"
|
|
|
+ >{{ item1.name }}</el-checkbox
|
|
|
+ >
|
|
|
</el-checkbox-group>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -124,7 +148,7 @@
|
|
|
</div>
|
|
|
<div class="whiteBg" style="border-radius: 0">
|
|
|
<div class="right_first">
|
|
|
- <div class="right_title" id="second">案例封面设置</div>
|
|
|
+ <div class="right_title" id="second"><span style="color:red;">*</span>案例封面设置</div>
|
|
|
<div class="fmBox">
|
|
|
<div>
|
|
|
<div class="bInfo_title" style="margin-top: 0 !important">
|
|
@@ -132,9 +156,16 @@
|
|
|
</div>
|
|
|
<div class="picBox">
|
|
|
<div>
|
|
|
- <div class="uploadFm" v-if="raceDetail.cover.length === 0" @click="choosePicVisible = true">
|
|
|
+ <div
|
|
|
+ class="uploadFm"
|
|
|
+ v-if="raceDetail.cover.length === 0"
|
|
|
+ @click="choosePicVisible = true"
|
|
|
+ >
|
|
|
<!-- @click="addImg($event)" -->
|
|
|
- <img src="../../../../assets/icon/addPoster.png" alt="" />
|
|
|
+ <img
|
|
|
+ src="../../../../assets/icon/addPoster.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
<!-- <input
|
|
|
type="file"
|
|
|
accept="image/*"
|
|
@@ -142,10 +173,23 @@
|
|
|
@change="beforeUpload1"
|
|
|
/> -->
|
|
|
</div>
|
|
|
- <el-upload :class="{ disUoloadSty: noneBtnImg }" class="upCss" action="#" list-type="picture"
|
|
|
- v-loading="uploadLoading1" :http-request="beforeUpload1" ref="upload1"
|
|
|
- :on-preview="handlePictureCardPreview" :on-remove="handle_remove1" :show-file-list="true"
|
|
|
- :file-list="raceDetail.cover" accept="image/*" :limit="1" :on-exceed="onExceed" v-else>
|
|
|
+ <el-upload
|
|
|
+ :class="{ disUoloadSty: noneBtnImg }"
|
|
|
+ class="upCss"
|
|
|
+ action="#"
|
|
|
+ list-type="picture"
|
|
|
+ v-loading="uploadLoading1"
|
|
|
+ :http-request="beforeUpload1"
|
|
|
+ ref="upload1"
|
|
|
+ :on-preview="handlePictureCardPreview"
|
|
|
+ :on-remove="handle_remove1"
|
|
|
+ :show-file-list="true"
|
|
|
+ :file-list="raceDetail.cover"
|
|
|
+ accept="image/*"
|
|
|
+ :limit="1"
|
|
|
+ :on-exceed="onExceed"
|
|
|
+ v-else
|
|
|
+ >
|
|
|
<i class="el-icon-plus"></i>
|
|
|
</el-upload>
|
|
|
</div>
|
|
@@ -156,17 +200,29 @@
|
|
|
</div>
|
|
|
<div class="whiteBg" style="border-radius: 0">
|
|
|
<div class="right_first">
|
|
|
- <div class="right_title" id="third">联系人</div>
|
|
|
- <div class="addPeople" @click="addAutor(0)" v-if="raceDetail.autor.length == 0">
|
|
|
+ <div class="right_title" id="third"><span style="color:red;">*</span>联系人</div>
|
|
|
+ <div
|
|
|
+ class="addPeople"
|
|
|
+ @click="addAutor(0)"
|
|
|
+ v-if="raceDetail.autor.length == 0"
|
|
|
+ >
|
|
|
添加联系人
|
|
|
</div>
|
|
|
<div class="raTable">
|
|
|
- <el-table class="tableColor" ref="table" :data="raceDetail.autor" :height="tableHeight" :fit="true"
|
|
|
- style="width: 100%" :header-cell-style="{
|
|
|
- background: '#f1f1f1',
|
|
|
- fontSize: '17px',
|
|
|
-}" :row-class-name="tableRowClassName">
|
|
|
- <el-table-column label="姓名" min-width="20" align="center">
|
|
|
+ <el-table
|
|
|
+ class="tableColor"
|
|
|
+ ref="table"
|
|
|
+ :data="raceDetail.autor"
|
|
|
+ :height="tableHeight"
|
|
|
+ :fit="true"
|
|
|
+ style="width: 100%"
|
|
|
+ :header-cell-style="{
|
|
|
+ background: '#f1f1f1',
|
|
|
+ fontSize: '17px',
|
|
|
+ }"
|
|
|
+ :row-class-name="tableRowClassName"
|
|
|
+ >
|
|
|
+ <el-table-column label="姓名" min-width="15" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div class="userImg">
|
|
|
<div class="tx">
|
|
@@ -184,12 +240,12 @@
|
|
|
<div>{{ scope.row.su ? scope.row.su : "" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="学校" min-width="15" align="center">
|
|
|
+ <el-table-column label="学校" min-width="20" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.sc ? scope.row.sc : "" }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="邮箱" min-width="15" align="center">
|
|
|
+ <el-table-column label="邮箱" min-width="20" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div>{{ scope.row.em ? scope.row.em : "" }}</div>
|
|
|
</template>
|
|
@@ -211,10 +267,17 @@
|
|
|
@click="updateStudent(scope.row, scope.$index)"
|
|
|
>修改</el-button
|
|
|
> -->
|
|
|
- <div class="delete" style="margin-left: 0" @click="updateStudent(scope.row, scope.$index, 0)">
|
|
|
+ <div
|
|
|
+ class="delete"
|
|
|
+ style="margin-left: 0"
|
|
|
+ @click="updateStudent(scope.row, scope.$index, 0)"
|
|
|
+ >
|
|
|
<img src="../../../../assets/autorUp.png" alt />
|
|
|
</div>
|
|
|
- <div class="delete" @click="deleteStudent(scope.$index, 0)">
|
|
|
+ <div
|
|
|
+ class="delete"
|
|
|
+ @click="deleteStudent(scope.$index, 0)"
|
|
|
+ >
|
|
|
<img src="../../../../assets/remove.png" alt />
|
|
|
</div>
|
|
|
</div>
|
|
@@ -222,28 +285,41 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
- <div style="
|
|
|
+ <div
|
|
|
+ style="
|
|
|
color: #cd0808;
|
|
|
width: 97%;
|
|
|
margin: 10px auto;
|
|
|
font-size: 14px;
|
|
|
- ">
|
|
|
+ "
|
|
|
+ >
|
|
|
*项目联系人的所有信息为必填项,每个项目只限1名联系人。
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="whiteBg" style="border-radius: 0">
|
|
|
<div class="right_first">
|
|
|
- <div class="right_title" id="sixth">协作者</div>
|
|
|
- <div class="addPeople" @click="addAutor(1)" v-if="raceDetail.tableData.length < 5">
|
|
|
+ <div class="right_title" id="sixth"><span style="color:red;">*</span>协作者</div>
|
|
|
+ <div
|
|
|
+ class="addPeople"
|
|
|
+ @click="addAutor(1)"
|
|
|
+ v-if="raceDetail.tableData.length < 5"
|
|
|
+ >
|
|
|
添加协作者
|
|
|
</div>
|
|
|
<div class="raTable">
|
|
|
- <el-table class="tableColor" ref="table" :data="raceDetail.tableData" :height="tableHeight" :fit="true"
|
|
|
- style="width: 100%" :header-cell-style="{
|
|
|
- background: '#f1f1f1',
|
|
|
- fontSize: '17px',
|
|
|
-}">
|
|
|
+ <el-table
|
|
|
+ class="tableColor"
|
|
|
+ ref="table"
|
|
|
+ :data="raceDetail.tableData"
|
|
|
+ :height="tableHeight"
|
|
|
+ :fit="true"
|
|
|
+ style="width: 100%"
|
|
|
+ :header-cell-style="{
|
|
|
+ background: '#f1f1f1',
|
|
|
+ fontSize: '17px',
|
|
|
+ }"
|
|
|
+ >
|
|
|
<el-table-column label="姓名" min-width="20" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div class="userImg">
|
|
@@ -288,10 +364,17 @@
|
|
|
@click="updateStudent(scope.row, scope.$index)"
|
|
|
>修改</el-button
|
|
|
> -->
|
|
|
- <div class="delete" style="margin-left: 0" @click="updateStudent(scope.row, scope.$index, 1)">
|
|
|
+ <div
|
|
|
+ class="delete"
|
|
|
+ style="margin-left: 0"
|
|
|
+ @click="updateStudent(scope.row, scope.$index, 1)"
|
|
|
+ >
|
|
|
<img src="../../../../assets/autorUp.png" alt />
|
|
|
</div>
|
|
|
- <div class="delete" @click="deleteStudent(scope.$index, 1)">
|
|
|
+ <div
|
|
|
+ class="delete"
|
|
|
+ @click="deleteStudent(scope.$index, 1)"
|
|
|
+ >
|
|
|
<img src="../../../../assets/remove.png" alt />
|
|
|
</div>
|
|
|
</div>
|
|
@@ -299,23 +382,33 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
- <div style="
|
|
|
+ <div
|
|
|
+ style="
|
|
|
color: #cd0808;
|
|
|
width: 97%;
|
|
|
margin: 10px auto;
|
|
|
font-size: 14px;
|
|
|
- ">
|
|
|
+ "
|
|
|
+ >
|
|
|
协作者(不含联系人)不超过5人;姓名为必填项,其余信息非必填项。
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="whiteBg" style="border-radius: 0">
|
|
|
<div class="right_first">
|
|
|
- <div class="right_title" id="fouth">项目简介</div>
|
|
|
+ <div class="right_title" id="fouth"><span style="color:red;">*</span>项目简介</div>
|
|
|
<div class="secondTop">
|
|
|
- <el-input type="textarea" style="font-family: '微软雅黑'"
|
|
|
- placeholder="200字以内,介绍项目背景,描述生活中的现象,引出要解决的核心问题,概述解决问题的思路及预期成果等。" v-model="raceDetail.courseText"
|
|
|
- @input="updateTitle" maxlength="200" show-word-limit rows="8" class="tAreaCss" cols>
|
|
|
+ <el-input
|
|
|
+ type="textarea"
|
|
|
+ placeholder="200字以内,介绍项目背景,描述生活中的现象,引出要解决的核心问题,概述解决问题的思路及预期成果等。"
|
|
|
+ v-model="raceDetail.courseText"
|
|
|
+ @input="updateTitle"
|
|
|
+ maxlength="200"
|
|
|
+ show-word-limit
|
|
|
+ rows="8"
|
|
|
+ class="tAreaCss"
|
|
|
+ cols
|
|
|
+ >
|
|
|
</el-input>
|
|
|
<!-- <textarea
|
|
|
rows="8"
|
|
@@ -333,31 +426,59 @@
|
|
|
</div>
|
|
|
<div class="whiteBg" style="border-radius: 0">
|
|
|
<div class="right_first">
|
|
|
- <div class="right_title" id="fivth">文件上传</div>
|
|
|
+ <div class="right_title" id="fivth"><span style="color:red;">*</span>文件上传</div>
|
|
|
<div class="secondTop">
|
|
|
<div>
|
|
|
<div class="basic_box1" style="width: 100%">
|
|
|
<div>
|
|
|
- <div class="add_chapters_box" v-if="raceDetail.data && raceDetail.data.length == 0"></div>
|
|
|
- <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
|
|
|
- <div class="chapter_upload" v-for="(item, index) in raceDetail.data" :key="item.id">
|
|
|
+ <div
|
|
|
+ class="add_chapters_box"
|
|
|
+ v-if="raceDetail.data && raceDetail.data.length == 0"
|
|
|
+ ></div>
|
|
|
+ <div
|
|
|
+ v-else
|
|
|
+ class="add_chapters_box"
|
|
|
+ style="display: flex; flex-direction: column"
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ class="chapter_upload"
|
|
|
+ v-for="(item, index) in raceDetail.data"
|
|
|
+ :key="item.id"
|
|
|
+ >
|
|
|
<div class="chapter_upload_t"></div>
|
|
|
<div class="chapter_upload_o">
|
|
|
<div class="chapter_upload_l">
|
|
|
- <div v-if="item.type == 2" class="chapter_upload_l_i1"></div>
|
|
|
- <div v-if="item.type == 1 || item.type == 3" class="chapter_upload_l_i5"></div>
|
|
|
+ <div
|
|
|
+ v-if="item.type == 2"
|
|
|
+ class="chapter_upload_l_i1"
|
|
|
+ ></div>
|
|
|
+ <div
|
|
|
+ v-if="item.type == 1 || item.type == 3"
|
|
|
+ class="chapter_upload_l_i5"
|
|
|
+ ></div>
|
|
|
</div>
|
|
|
<div class="chapter_upload_ic">
|
|
|
<div class="chapter_upload_ic_l"></div>
|
|
|
- <div class="chapter_upload_ic_r" @click.stop="
|
|
|
- deleteChapterData($event, index, 0)
|
|
|
-">
|
|
|
+ <div
|
|
|
+ class="chapter_upload_ic_r"
|
|
|
+ @click.stop="
|
|
|
+ deleteChapterData($event, index, 0)
|
|
|
+ "
|
|
|
+ >
|
|
|
<div></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="chapter_upload_n">
|
|
|
- <input class="first" v-if="item.type == 1 || item.type == 3" :placeholder="item.name" />
|
|
|
- <input class="first" v-if="item.type == 2" :placeholder="item.name" />
|
|
|
+ <input
|
|
|
+ class="first"
|
|
|
+ v-if="item.type == 1 || item.type == 3"
|
|
|
+ :placeholder="item.name"
|
|
|
+ />
|
|
|
+ <input
|
|
|
+ class="first"
|
|
|
+ v-if="item.type == 2"
|
|
|
+ :placeholder="item.name"
|
|
|
+ />
|
|
|
<div class="chapter_upload_ud">
|
|
|
<div class="chapter_upload_up"></div>
|
|
|
<div class="chapter_upload_down"></div>
|
|
@@ -369,11 +490,18 @@
|
|
|
</div>
|
|
|
<div class="add_info_box">
|
|
|
<div class="upTips">
|
|
|
- <button class="info_btn" @click="addImg($event)" style="min-width: 108px">
|
|
|
+ <button
|
|
|
+ class="info_btn"
|
|
|
+ @click="addImg($event)"
|
|
|
+ style="min-width: 108px"
|
|
|
+ >
|
|
|
上传附件
|
|
|
- <input type="file"
|
|
|
+ <input
|
|
|
+ type="file"
|
|
|
accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document,video/mp4, video/quicktime, video/x-msvideo,image/*"
|
|
|
- style="display: none" @change="beforeUpload($event, null, 0)" />
|
|
|
+ style="display: none"
|
|
|
+ @change="beforeUpload($event, null, 0)"
|
|
|
+ />
|
|
|
</button>
|
|
|
<div>
|
|
|
此处需要提交《项目式学习方案设计》、《项目式学习活动案例》,此处只能上传PDF,文件不限制大小。
|
|
@@ -383,13 +511,20 @@
|
|
|
<div v-if="raceDetail.data.proVisible" class="mask">
|
|
|
<div class="progressBox">
|
|
|
<div class="lbox">
|
|
|
- <img src="../../../../assets/loading.gif" />上传中,请稍后
|
|
|
+ <img
|
|
|
+ src="../../../../assets/loading.gif"
|
|
|
+ />上传中,请稍后
|
|
|
</div>
|
|
|
- <el-progress :text-inside="true" :stroke-width="20" :percentage="
|
|
|
- raceDetail.data.progress
|
|
|
- ? raceDetail.data.progress
|
|
|
- : 0
|
|
|
-" style="width: 80%"></el-progress>
|
|
|
+ <el-progress
|
|
|
+ :text-inside="true"
|
|
|
+ :stroke-width="20"
|
|
|
+ :percentage="
|
|
|
+ raceDetail.data.progress
|
|
|
+ ? raceDetail.data.progress
|
|
|
+ : 0
|
|
|
+ "
|
|
|
+ style="width: 80%"
|
|
|
+ ></el-progress>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -405,32 +540,64 @@
|
|
|
</div> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
- <el-dialog :title="isAddOrUp == true ? '修改项目成员' : '添加项目成员'" :visible.sync="dialogVisibleMember"
|
|
|
- :append-to-body="true" width="700px" height="80%" :before-close="handleClose" class="add_student">
|
|
|
+ <el-dialog
|
|
|
+ :title="isAddOrUp == true ? '修改项目成员' : '添加项目成员'"
|
|
|
+ :visible.sync="dialogVisibleMember"
|
|
|
+ :append-to-body="true"
|
|
|
+ width="700px"
|
|
|
+ height="80%"
|
|
|
+ :before-close="handleClose"
|
|
|
+ class="add_student"
|
|
|
+ >
|
|
|
<el-form>
|
|
|
<el-form-item label="姓名" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input placeholder="请输入姓名" clearable v-model="sName" class="add_input"></el-input>
|
|
|
+ <el-input
|
|
|
+ placeholder="请输入姓名"
|
|
|
+ clearable
|
|
|
+ v-model="sName"
|
|
|
+ class="add_input"
|
|
|
+ ></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="学科" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input placeholder="请输入学科" clearable v-model="sSubject" class="add_input"></el-input>
|
|
|
+ <el-input
|
|
|
+ placeholder="请输入学科"
|
|
|
+ clearable
|
|
|
+ v-model="sSubject"
|
|
|
+ class="add_input"
|
|
|
+ ></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="学校" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input placeholder="请输入学校" clearable v-model="sSchool" class="add_input"></el-input>
|
|
|
+ <el-input
|
|
|
+ placeholder="请输入学校"
|
|
|
+ clearable
|
|
|
+ v-model="sSchool"
|
|
|
+ class="add_input"
|
|
|
+ ></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="邮箱" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input placeholder="请输入邮箱" clearable v-model="sEmail" class="add_input"></el-input>
|
|
|
+ <el-input
|
|
|
+ placeholder="请输入邮箱"
|
|
|
+ clearable
|
|
|
+ v-model="sEmail"
|
|
|
+ class="add_input"
|
|
|
+ ></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="电话" :label-width="formLabelWidth">
|
|
|
<span>
|
|
|
- <el-input placeholder="请输入电话" clearable v-model="sPhone" class="add_input"></el-input>
|
|
|
+ <el-input
|
|
|
+ placeholder="请输入电话"
|
|
|
+ clearable
|
|
|
+ v-model="sPhone"
|
|
|
+ class="add_input"
|
|
|
+ ></el-input>
|
|
|
</span>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
@@ -439,19 +606,37 @@
|
|
|
<el-button type="primary" @click="isAddPPTeacher">确定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
- <el-dialog title="上传图片" :visible.sync="choosePicVisible" :append-to-body="true" width="500px"
|
|
|
- :before-close="handleClose" class="dialog_diy">
|
|
|
+ <el-dialog
|
|
|
+ title="上传图片"
|
|
|
+ :visible.sync="choosePicVisible"
|
|
|
+ :append-to-body="true"
|
|
|
+ width="500px"
|
|
|
+ :before-close="handleClose"
|
|
|
+ class="dialog_diy"
|
|
|
+ >
|
|
|
<div>
|
|
|
<div class="fileCss" style="padding-top: 20px">
|
|
|
<div>
|
|
|
<button class="info_btn" @click="addImg($event)">
|
|
|
选择本地文件
|
|
|
- <input type="file" accept="image/*" style="display: none" @change="beforeUpload1" />
|
|
|
+ <input
|
|
|
+ type="file"
|
|
|
+ accept="image/*"
|
|
|
+ style="display: none"
|
|
|
+ @change="beforeUpload1"
|
|
|
+ />
|
|
|
</button>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <el-button @click="getAllBanner" v-if="isSysPic == false && raceDetail.cover.length == 0">选择系统文件</el-button>
|
|
|
- <div class="isSysPic" v-if="isSysPic == true && raceDetail.cover.length > 0">
|
|
|
+ <el-button
|
|
|
+ @click="getAllBanner"
|
|
|
+ v-if="isSysPic == false && raceDetail.cover.length == 0"
|
|
|
+ >选择系统文件</el-button
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ class="isSysPic"
|
|
|
+ v-if="isSysPic == true && raceDetail.cover.length > 0"
|
|
|
+ >
|
|
|
<img :src="raceDetail.cover[0].url" alt="" />
|
|
|
<div class="deletePic" @click="deleteSysPic">
|
|
|
<img src="../../../../assets/icon/delete.png" alt="" />
|
|
@@ -466,22 +651,46 @@
|
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button @click="choosePicVisible = false">取 消</el-button>
|
|
|
- <el-button type="primary" @click="choosePicVisible = false">确 定</el-button>
|
|
|
+ <el-button type="primary" @click="choosePicVisible = false"
|
|
|
+ >确 定</el-button
|
|
|
+ >
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
- <el-dialog title="选择系统文件" :visible.sync="sysPicVisible" :append-to-body="true" width="700px"
|
|
|
- :before-close="handleClose" class="dialog_diy">
|
|
|
+ <el-dialog
|
|
|
+ title="选择系统文件"
|
|
|
+ :visible.sync="sysPicVisible"
|
|
|
+ :append-to-body="true"
|
|
|
+ width="700px"
|
|
|
+ :before-close="handleClose"
|
|
|
+ class="dialog_diy"
|
|
|
+ >
|
|
|
<div class="cru_selectBox" style="margin: 0">
|
|
|
- <div @click="getChoosePic(1)" class="cru_select" :class="chooseType == 1 ? 'cru_selected' : ''">
|
|
|
+ <div
|
|
|
+ @click="getChoosePic(1)"
|
|
|
+ class="cru_select"
|
|
|
+ :class="chooseType == 1 ? 'cru_selected' : ''"
|
|
|
+ >
|
|
|
绘画
|
|
|
</div>
|
|
|
- <div @click="getChoosePic(2)" class="cru_select" :class="chooseType == 2 ? 'cru_selected' : ''">
|
|
|
+ <div
|
|
|
+ @click="getChoosePic(2)"
|
|
|
+ class="cru_select"
|
|
|
+ :class="chooseType == 2 ? 'cru_selected' : ''"
|
|
|
+ >
|
|
|
科技
|
|
|
</div>
|
|
|
- <div @click="getChoosePic(3)" class="cru_select" :class="chooseType == 3 ? 'cru_selected' : ''">
|
|
|
+ <div
|
|
|
+ @click="getChoosePic(3)"
|
|
|
+ class="cru_select"
|
|
|
+ :class="chooseType == 3 ? 'cru_selected' : ''"
|
|
|
+ >
|
|
|
人文
|
|
|
</div>
|
|
|
- <div @click="getChoosePic(4)" class="cru_select" :class="chooseType == 4 ? 'cru_selected' : ''">
|
|
|
+ <div
|
|
|
+ @click="getChoosePic(4)"
|
|
|
+ class="cru_select"
|
|
|
+ :class="chooseType == 4 ? 'cru_selected' : ''"
|
|
|
+ >
|
|
|
艺术
|
|
|
</div>
|
|
|
</div>
|
|
@@ -776,7 +985,7 @@ export default {
|
|
|
if (
|
|
|
file.name
|
|
|
.split(".")
|
|
|
- [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
|
|
|
+ [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
|
|
|
) {
|
|
|
this.$message.error("请上传PDF文件!");
|
|
|
return;
|
|
@@ -786,7 +995,7 @@ export default {
|
|
|
c.indexOf(
|
|
|
file.name
|
|
|
.split(".")
|
|
|
- [file.name.split(".").length - 1].toLocaleUpperCase()
|
|
|
+ [file.name.split(".").length - 1].toLocaleUpperCase()
|
|
|
) != -1
|
|
|
) {
|
|
|
type1 = 1;
|
|
@@ -794,7 +1003,7 @@ export default {
|
|
|
d.indexOf(
|
|
|
file.name
|
|
|
.split(".")
|
|
|
- [file.name.split(".").length - 1].toLocaleUpperCase()
|
|
|
+ [file.name.split(".").length - 1].toLocaleUpperCase()
|
|
|
) != -1
|
|
|
) {
|
|
|
type1 = 3;
|
|
@@ -856,29 +1065,30 @@ export default {
|
|
|
},
|
|
|
updateType(sid) {
|
|
|
var a = this.raceDetail.type;
|
|
|
- var c = []
|
|
|
+ var c = [];
|
|
|
var b = sid.pid;
|
|
|
- var d = []
|
|
|
+ var d = [];
|
|
|
// for (var i = 0; i < this.CourseType[1].length; i++) {
|
|
|
// if (this.CourseType[1][i].id == sid) {
|
|
|
// b = this.CourseType[1][i].pid;
|
|
|
// }
|
|
|
// }
|
|
|
|
|
|
- if (b == "34629bcc-d02f-11ec-8c78-005056b86db5" && a.indexOf(sid.id) != -1) {
|
|
|
+ if (
|
|
|
+ b == "34629bcc-d02f-11ec-8c78-005056b86db5" &&
|
|
|
+ a.indexOf(sid.id) != -1
|
|
|
+ ) {
|
|
|
for (var j = 0; j < this.CourseTypeJson[b].length; j++) {
|
|
|
- d.push(this.CourseTypeJson[b][j].id)
|
|
|
+ d.push(this.CourseTypeJson[b][j].id);
|
|
|
}
|
|
|
- for(var i = 0;i<a.length;i++){
|
|
|
- if(d.indexOf(a[i]) == -1){
|
|
|
- c.push(a[i])
|
|
|
+ for (var i = 0; i < a.length; i++) {
|
|
|
+ if (d.indexOf(a[i]) == -1) {
|
|
|
+ c.push(a[i]);
|
|
|
}
|
|
|
}
|
|
|
c.push(sid.id);
|
|
|
- this.raceDetail.type = c
|
|
|
+ this.raceDetail.type = c;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
},
|
|
|
isAddPPTeacher() {
|
|
|
if (this.isAutor == true) {
|
|
@@ -1007,7 +1217,7 @@ export default {
|
|
|
}
|
|
|
this.$emit("updateTitle", this.raceDetail);
|
|
|
})
|
|
|
- .catch(() => { });
|
|
|
+ .catch(() => {});
|
|
|
},
|
|
|
selectType() {
|
|
|
this.ajax
|
|
@@ -1082,29 +1292,29 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-.dialog_diy>>>.el-dialog__header {
|
|
|
+.dialog_diy >>> .el-dialog__header {
|
|
|
background: #3c3c3c !important;
|
|
|
padding: 15px 20px;
|
|
|
}
|
|
|
|
|
|
-.dialog_diy>>>.el-dialog__title {
|
|
|
+.dialog_diy >>> .el-dialog__title {
|
|
|
color: #fff;
|
|
|
}
|
|
|
|
|
|
-.dialog_diy>>>.el-dialog__headerbtn {
|
|
|
+.dialog_diy >>> .el-dialog__headerbtn {
|
|
|
top: 19px;
|
|
|
}
|
|
|
|
|
|
-.dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
|
|
|
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
|
|
|
color: #fff;
|
|
|
}
|
|
|
|
|
|
-.dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
|
|
|
+.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
|
|
|
color: #fff;
|
|
|
}
|
|
|
|
|
|
-.dialog_diy>>>.el-dialog__body,
|
|
|
-.dialog_diy>>>.el-dialog__footer {
|
|
|
+.dialog_diy >>> .el-dialog__body,
|
|
|
+.dialog_diy >>> .el-dialog__footer {
|
|
|
background: #fafafa;
|
|
|
}
|
|
|
|
|
@@ -1156,7 +1366,7 @@ export default {
|
|
|
height: 130px;
|
|
|
}
|
|
|
|
|
|
-.steps>div:nth-child(1)>img {
|
|
|
+.steps > div:nth-child(1) > img {
|
|
|
z-index: 9;
|
|
|
position: relative;
|
|
|
}
|
|
@@ -1221,13 +1431,13 @@ export default {
|
|
|
padding: 25px;
|
|
|
}
|
|
|
|
|
|
-.allBox>div:nth-child(1) {
|
|
|
+.allBox > div:nth-child(1) {
|
|
|
color: #0f40f5;
|
|
|
font-size: 18px;
|
|
|
font-weight: bold;
|
|
|
}
|
|
|
|
|
|
-.raceTop>div:nth-child(2) {
|
|
|
+.raceTop > div:nth-child(2) {
|
|
|
width: 80%;
|
|
|
margin-top: 10px;
|
|
|
}
|
|
@@ -1258,12 +1468,12 @@ export default {
|
|
|
width: 100%;
|
|
|
}
|
|
|
|
|
|
-.choose>.all_choose:nth-child(2)>span,
|
|
|
-.choose>.all_choose:nth-child(3)>span {
|
|
|
+.choose > .all_choose:nth-child(2) > span,
|
|
|
+.choose > .all_choose:nth-child(3) > span {
|
|
|
letter-spacing: 31px;
|
|
|
}
|
|
|
|
|
|
-.all_choose>span {
|
|
|
+.all_choose > span {
|
|
|
width: 120px;
|
|
|
/* display: block;
|
|
|
letter-spacing: 33px;
|
|
@@ -1272,7 +1482,7 @@ export default {
|
|
|
text-overflow: ellipsis; */
|
|
|
}
|
|
|
|
|
|
-.all_choose>>>.el-checkbox-group {
|
|
|
+.all_choose >>> .el-checkbox-group {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
|
width: 100%;
|
|
@@ -1283,14 +1493,14 @@ export default {
|
|
|
margin-top: 3px;
|
|
|
}
|
|
|
|
|
|
-.all_choose>.el-checkbox-group>>>.el-checkbox {
|
|
|
+.all_choose > .el-checkbox-group >>> .el-checkbox {
|
|
|
margin-bottom: 10px;
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
|
align-items: center;
|
|
|
}
|
|
|
|
|
|
-.all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label {
|
|
|
+.all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label {
|
|
|
width: 85px;
|
|
|
min-width: 85px;
|
|
|
/* min-width: 80px;
|
|
@@ -1300,11 +1510,11 @@ export default {
|
|
|
white-space: nowrap; */
|
|
|
}
|
|
|
|
|
|
-.all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label:hover {
|
|
|
+.all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label:hover {
|
|
|
width: auto;
|
|
|
}
|
|
|
|
|
|
-.disUoloadSty>>>.el-icon-plus {
|
|
|
+.disUoloadSty >>> .el-icon-plus {
|
|
|
display: none !important;
|
|
|
/* 上传按钮隐藏 */
|
|
|
}
|
|
@@ -1315,7 +1525,7 @@ export default {
|
|
|
justify-content: flex-start;
|
|
|
}
|
|
|
|
|
|
-.upCss>>>.el-icon-plus {
|
|
|
+.upCss >>> .el-icon-plus {
|
|
|
position: none !important;
|
|
|
width: 200px;
|
|
|
height: 100px;
|
|
@@ -1330,14 +1540,14 @@ export default {
|
|
|
z-index: 999;
|
|
|
}
|
|
|
|
|
|
-.upCss>>>.el-upload-list__item-name {
|
|
|
+.upCss >>> .el-upload-list__item-name {
|
|
|
width: 100px;
|
|
|
white-space: nowrap;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
}
|
|
|
|
|
|
-.upCss>>>.el-upload-list--picture .el-upload-list__item-thumbnail {
|
|
|
+.upCss >>> .el-upload-list--picture .el-upload-list__item-thumbnail {
|
|
|
object-fit: cover;
|
|
|
}
|
|
|
|
|
@@ -1349,7 +1559,7 @@ export default {
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
|
|
|
-.uploadFm>img {
|
|
|
+.uploadFm > img {
|
|
|
position: absolute;
|
|
|
top: 25px;
|
|
|
left: 35%;
|
|
@@ -1404,16 +1614,20 @@ export default {
|
|
|
margin: 10px auto;
|
|
|
}
|
|
|
|
|
|
-.tAreaCss>>>.el-textarea__inner {
|
|
|
+.tAreaCss >>> .el-textarea__inner {
|
|
|
resize: none;
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
|
|
|
-.addNewPP>>>.el-dialog__body {
|
|
|
+.tAreaCss >>> .el-textarea__inner {
|
|
|
+ font-family: "微软雅黑";
|
|
|
+}
|
|
|
+
|
|
|
+.addNewPP >>> .el-dialog__body {
|
|
|
padding: 5px 20px;
|
|
|
}
|
|
|
|
|
|
-.customWidth>>>.el-dialog {
|
|
|
+.customWidth >>> .el-dialog {
|
|
|
min-width: 500px !important;
|
|
|
}
|
|
|
|
|
@@ -1468,7 +1682,7 @@ export default {
|
|
|
width: 30px;
|
|
|
}
|
|
|
|
|
|
-.logoImg>img {
|
|
|
+.logoImg > img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
@@ -1507,40 +1721,40 @@ export default {
|
|
|
margin-left: 10px;
|
|
|
}
|
|
|
|
|
|
-.tx>img,
|
|
|
-.delete>img {
|
|
|
+.tx > img,
|
|
|
+.delete > img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
|
|
|
-.add_student>>>.el-dialog__header {
|
|
|
+.add_student >>> .el-dialog__header {
|
|
|
padding: 20px 20px 10px;
|
|
|
text-align: center;
|
|
|
background: #32455b;
|
|
|
}
|
|
|
|
|
|
-.add_student>>>.el-dialog__title {
|
|
|
+.add_student >>> .el-dialog__title {
|
|
|
font-size: 14px !important;
|
|
|
color: #fff !important;
|
|
|
}
|
|
|
|
|
|
-.add_student>>>.el-dialog__headerbtn {
|
|
|
+.add_student >>> .el-dialog__headerbtn {
|
|
|
font-size: 20px !important;
|
|
|
}
|
|
|
|
|
|
-.add_student>>>.el-form-item__label {
|
|
|
+.add_student >>> .el-form-item__label {
|
|
|
margin-left: 65px;
|
|
|
}
|
|
|
|
|
|
-.add_student>>>.el-form-item {
|
|
|
+.add_student >>> .el-form-item {
|
|
|
display: flex;
|
|
|
}
|
|
|
|
|
|
-.add_student>>>.el-form-item__content {
|
|
|
+.add_student >>> .el-form-item__content {
|
|
|
margin: 0 !important;
|
|
|
}
|
|
|
|
|
|
-.add_student>>>.el-dialog__footer {
|
|
|
+.add_student >>> .el-dialog__footer {
|
|
|
text-align: center !important;
|
|
|
}
|
|
|
|
|
@@ -1590,9 +1804,9 @@ export default {
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
|
|
|
-.sysPic>img,
|
|
|
-.isSysPic>img,
|
|
|
-.deletePic>img {
|
|
|
+.sysPic > img,
|
|
|
+.isSysPic > img,
|
|
|
+.deletePic > img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
object-fit: cover;
|
|
@@ -1676,8 +1890,8 @@ export default {
|
|
|
height: auto;
|
|
|
}
|
|
|
|
|
|
-.raTable>>>.el-table,
|
|
|
-.raTable>>>.el-table__body-wrapper {
|
|
|
+.raTable >>> .el-table,
|
|
|
+.raTable >>> .el-table__body-wrapper {
|
|
|
height: auto !important;
|
|
|
font-size: 16px !important;
|
|
|
}
|
|
@@ -1890,7 +2104,7 @@ export default {
|
|
|
margin-right: 20px;
|
|
|
}
|
|
|
|
|
|
-.progressBox>>>.el-progress-bar__outer {
|
|
|
+.progressBox >>> .el-progress-bar__outer {
|
|
|
background-color: #d1dfff !important;
|
|
|
}
|
|
|
|
|
@@ -1913,13 +2127,13 @@ export default {
|
|
|
align-items: baseline;
|
|
|
}
|
|
|
|
|
|
-.upTips>div {
|
|
|
+.upTips > div {
|
|
|
margin-left: 10px;
|
|
|
color: #999;
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
|
|
|
-.tableColor>>>.tr-blue {
|
|
|
+.tableColor >>> .tr-blue {
|
|
|
color: #628ff3 !important;
|
|
|
}
|
|
|
|
|
@@ -1940,7 +2154,7 @@ export default {
|
|
|
align-items: flex-end;
|
|
|
}
|
|
|
|
|
|
-.isFinishCss>div:nth-child(2) {
|
|
|
+.isFinishCss > div:nth-child(2) {
|
|
|
margin-left: 5px;
|
|
|
color: #939393;
|
|
|
}
|
|
@@ -1951,7 +2165,7 @@ export default {
|
|
|
margin-top: 5px;
|
|
|
}
|
|
|
|
|
|
-.isFinish>img {
|
|
|
+.isFinish > img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|