raceDetail.vue 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238
  1. <template>
  2. <!-- 项目基础信息 -->
  3. <div class="pb_content">
  4. <div class="race_content_body">
  5. <div class="raceBox">
  6. <div class="stepBg">
  7. <div class="steps">
  8. <div>
  9. <img src="../../../../assets/icon/race/progress.png" alt="" />
  10. </div>
  11. <div class="stepRightNav" @click="jump('first')">
  12. <div>项目基本信息</div>
  13. <div
  14. class="isFinishCss"
  15. v-if="raceDetail.title != '' && raceDetail.type.length > 0"
  16. >
  17. <div class="isFinish">
  18. <img src="../../../../assets/icon/race/finish.png" alt="" />
  19. </div>
  20. <div>已填写</div>
  21. </div>
  22. </div>
  23. </div>
  24. <div class="steps">
  25. <div>
  26. <img src="../../../../assets/icon/race/progress.png" alt="" />
  27. </div>
  28. <div class="stepRightNav" @click="jump('second')">
  29. <div>案例封面设置</div>
  30. <div class="isFinishCss" v-if="raceDetail.cover.length > 0">
  31. <div class="isFinish">
  32. <img src="../../../../assets/icon/race/finish.png" alt="" />
  33. </div>
  34. <div>已填写</div>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="steps">
  39. <div>
  40. <img src="../../../../assets/icon/race/progress.png" alt="" />
  41. </div>
  42. <div class="stepRightNav" @click="jump('third')">
  43. <div>联系人</div>
  44. <div class="isFinishCss" v-if="raceDetail.autor.length > 0">
  45. <div class="isFinish">
  46. <img src="../../../../assets/icon/race/finish.png" alt="" />
  47. </div>
  48. <div>已填写</div>
  49. </div>
  50. </div>
  51. </div>
  52. <div class="steps">
  53. <div>
  54. <img src="../../../../assets/icon/race/progress.png" alt="" />
  55. </div>
  56. <div class="stepRightNav" @click="jump('sixth')">
  57. <div>协作者</div>
  58. <div class="isFinishCss" v-if="raceDetail.tableData.length > 0">
  59. <div class="isFinish">
  60. <img src="../../../../assets/icon/race/finish.png" alt="" />
  61. </div>
  62. <div>已填写</div>
  63. </div>
  64. </div>
  65. </div>
  66. <div class="steps">
  67. <div>
  68. <img src="../../../../assets/icon/race/progress.png" alt="" />
  69. </div>
  70. <div class="stepRightNav" @click="jump('fouth')">
  71. <div>项目简介</div>
  72. <div class="isFinishCss" v-if="raceDetail.courseText != ''">
  73. <div class="isFinish">
  74. <img src="../../../../assets/icon/race/finish.png" alt="" />
  75. </div>
  76. <div>已填写</div>
  77. </div>
  78. </div>
  79. </div>
  80. <div class="steps">
  81. <div>
  82. <img src="../../../../assets/icon/race/progress.png" alt="" />
  83. </div>
  84. <div class="stepRightNav" @click="jump('fivth')">
  85. <div>文件上传</div>
  86. <div class="isFinishCss" v-if="raceDetail.data.length > 0">
  87. <div class="isFinish">
  88. <img src="../../../../assets/icon/race/finish.png" alt="" />
  89. </div>
  90. <div>已填写</div>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
  95. <div class="right">
  96. <div class="whiteBg">
  97. <div class="right_title" id="first">
  98. <span style="color: red">*</span>项目基本信息
  99. </div>
  100. <div class="basic_box">
  101. <div class="big_box">
  102. <div class="left_first">
  103. <div>
  104. <div>
  105. <div class="bInfo_title" style="margin-bottom: 15px">
  106. <span style="color: red">*</span> 案例名称
  107. </div>
  108. <div style="display: flex; margin-right: 20px">
  109. <img
  110. src="../../../../assets/icon/projectName.png"
  111. alt
  112. style="margin-right: 8px"
  113. />
  114. <input
  115. type="text"
  116. placeholder="请输入项目名称"
  117. class="binfo_input"
  118. v-model="raceDetail.title"
  119. @input="updateTitle"
  120. />
  121. </div>
  122. </div>
  123. <div class="both">
  124. <div class="choose">
  125. <div
  126. class="all_choose"
  127. v-for="(item, index) in CourseType[0]"
  128. :key="index"
  129. >
  130. <div
  131. v-if="item.name == '案例组别'"
  132. style="position: relative; width: 120px"
  133. >
  134. <span
  135. style="
  136. color: red;
  137. position: absolute;
  138. top: 0;
  139. left: 0;
  140. "
  141. v-if="item.name == '案例组别'"
  142. >*</span
  143. ><span style="width: 100px px; margin-left: 10px">{{
  144. item.name
  145. }}</span>
  146. </div>
  147. <span v-else>{{ item.name }}</span>
  148. <el-checkbox-group
  149. :class="item.name == '案例组别' ? 'radiusCss' : ''"
  150. v-model="raceDetail.type"
  151. @change="updateTitle"
  152. >
  153. <el-checkbox
  154. @change="updateType(item1)"
  155. v-for="item1 in CourseTypeJson[item.id]"
  156. :key="item1.id"
  157. :label="item1.id"
  158. >{{ item1.name }}</el-checkbox
  159. >
  160. </el-checkbox-group>
  161. </div>
  162. </div>
  163. </div>
  164. </div>
  165. </div>
  166. </div>
  167. </div>
  168. </div>
  169. <div class="whiteBg" style="border-radius: 0">
  170. <div class="right_first">
  171. <div class="right_title" id="second">案例封面设置</div>
  172. <div class="fmBox">
  173. <div>
  174. <div class="bInfo_title" style="margin-top: 0 !important">
  175. 案例封面
  176. </div>
  177. <div class="picBox">
  178. <div>
  179. <div
  180. class="uploadFm"
  181. v-if="raceDetail.cover.length === 0"
  182. @click="choosePicVisible = true"
  183. >
  184. <!-- @click="addImg($event)" -->
  185. <img
  186. src="../../../../assets/icon/addPoster.png"
  187. alt=""
  188. />
  189. <!-- <input
  190. type="file"
  191. accept="image/*"
  192. style="display: none"
  193. @change="beforeUpload1"
  194. /> -->
  195. </div>
  196. <el-upload
  197. :class="{ disUoloadSty: noneBtnImg }"
  198. class="upCss"
  199. action="#"
  200. list-type="picture"
  201. v-loading="uploadLoading1"
  202. :http-request="beforeUpload1"
  203. ref="upload1"
  204. :on-preview="handlePictureCardPreview"
  205. :on-remove="handle_remove1"
  206. :show-file-list="true"
  207. :file-list="raceDetail.cover"
  208. accept="image/*"
  209. :limit="1"
  210. :on-exceed="onExceed"
  211. v-else
  212. >
  213. <i class="el-icon-plus"></i>
  214. </el-upload>
  215. </div>
  216. </div>
  217. </div>
  218. </div>
  219. </div>
  220. </div>
  221. <div class="whiteBg" style="border-radius: 0">
  222. <div class="right_first">
  223. <div class="right_title" id="third">
  224. <span style="color: red">*</span>联系人
  225. </div>
  226. <div
  227. class="addPeople"
  228. @click="addAutor(0)"
  229. v-if="raceDetail.autor.length == 0"
  230. >
  231. 添加联系人
  232. </div>
  233. <div class="raTable">
  234. <el-table
  235. class="tableColor"
  236. ref="table"
  237. :data="raceDetail.autor"
  238. :height="tableHeight"
  239. :fit="true"
  240. style="width: 100%"
  241. :header-cell-style="{
  242. background: '#f1f1f1',
  243. fontSize: '17px',
  244. }"
  245. :row-class-name="tableRowClassName"
  246. >
  247. <el-table-column label="姓名" min-width="15" align="center">
  248. <template slot-scope="scope">
  249. <!-- <div class="userImg">
  250. <div class="tx">
  251. <img :src="tx" alt />
  252. </div>
  253. <div class="fontWidth">
  254. {{ scope.row.sn }}
  255. </div>
  256. </div> -->
  257. <div class="fontWidth">
  258. {{ scope.row.sn }}
  259. </div>
  260. </template>
  261. </el-table-column>
  262. <el-table-column label="学科" min-width="15" align="center">
  263. <template slot-scope="scope">
  264. <div>{{ scope.row.su ? scope.row.su : "" }}</div>
  265. </template>
  266. </el-table-column>
  267. <el-table-column label="学校" min-width="20" align="center">
  268. <template slot-scope="scope">
  269. <div>{{ scope.row.sc ? scope.row.sc : "" }}</div>
  270. </template>
  271. </el-table-column>
  272. <el-table-column label="邮箱" min-width="20" align="center">
  273. <template slot-scope="scope">
  274. <div>{{ scope.row.em ? scope.row.em : "" }}</div>
  275. </template>
  276. </el-table-column>
  277. <el-table-column label="电话" min-width="15" align="center">
  278. <template slot-scope="scope">
  279. <div>
  280. {{ scope.row.ph ? scope.row.ph : "" }}
  281. </div>
  282. </template>
  283. </el-table-column>
  284. <el-table-column label="操作" min-width="20">
  285. <template slot-scope="scope">
  286. <div class="pb_buttonBox">
  287. <!-- <el-button
  288. size="mini"
  289. type="primary"
  290. style="cursor: pointer"
  291. @click="updateStudent(scope.row, scope.$index)"
  292. >修改</el-button
  293. > -->
  294. <div
  295. class="delete"
  296. style="margin-left: 0"
  297. @click="updateStudent(scope.row, scope.$index, 0)"
  298. >
  299. <img src="../../../../assets/autorUp.png" alt />
  300. </div>
  301. <div
  302. class="delete"
  303. @click="deleteStudent(scope.$index, 0)"
  304. >
  305. <img src="../../../../assets/remove.png" alt />
  306. </div>
  307. </div>
  308. </template>
  309. </el-table-column>
  310. </el-table>
  311. </div>
  312. <div
  313. style="
  314. color: #cd0808;
  315. width: 97%;
  316. margin: 10px auto;
  317. font-size: 14px;
  318. "
  319. >
  320. *项目联系人的所有信息为必填项,每个项目只限1名联系人。
  321. </div>
  322. </div>
  323. </div>
  324. <div class="whiteBg" style="border-radius: 0">
  325. <div class="right_first">
  326. <div class="right_title" id="sixth">协作者</div>
  327. <div
  328. class="addPeople"
  329. @click="addAutor(1)"
  330. v-if="raceDetail.tableData.length < 5"
  331. >
  332. 添加协作者
  333. </div>
  334. <div class="raTable">
  335. <el-table
  336. class="tableColor"
  337. ref="table"
  338. :data="raceDetail.tableData"
  339. :height="tableHeight"
  340. :fit="true"
  341. style="width: 100%"
  342. :header-cell-style="{
  343. background: '#f1f1f1',
  344. fontSize: '17px',
  345. }"
  346. >
  347. <el-table-column label="姓名" min-width="20" align="center">
  348. <template slot-scope="scope">
  349. <!-- <div class="userImg">
  350. <div class="tx">
  351. <img :src="tx" alt />
  352. </div>
  353. </div> -->
  354. <div class="fontWidth">
  355. {{ scope.row.sn }}
  356. </div>
  357. </template>
  358. </el-table-column>
  359. <el-table-column label="学科" min-width="15" align="center">
  360. <template slot-scope="scope">
  361. <div>{{ scope.row.su ? scope.row.su : "" }}</div>
  362. </template>
  363. </el-table-column>
  364. <el-table-column label="学校" min-width="15" align="center">
  365. <template slot-scope="scope">
  366. <div>{{ scope.row.sc ? scope.row.sc : "" }}</div>
  367. </template>
  368. </el-table-column>
  369. <el-table-column label="邮箱" min-width="15" align="center">
  370. <template slot-scope="scope">
  371. <div>{{ scope.row.em ? scope.row.em : "" }}</div>
  372. </template>
  373. </el-table-column>
  374. <el-table-column label="电话" min-width="15" align="center">
  375. <template slot-scope="scope">
  376. <div>
  377. {{ scope.row.ph ? scope.row.ph : "" }}
  378. </div>
  379. </template>
  380. </el-table-column>
  381. <el-table-column label="操作" min-width="20">
  382. <template slot-scope="scope">
  383. <div class="pb_buttonBox">
  384. <!-- <el-button
  385. size="mini"
  386. type="primary"
  387. style="cursor: pointer"
  388. @click="updateStudent(scope.row, scope.$index)"
  389. >修改</el-button
  390. > -->
  391. <div
  392. class="delete"
  393. style="margin-left: 0"
  394. @click="updateStudent(scope.row, scope.$index, 1)"
  395. >
  396. <img src="../../../../assets/autorUp.png" alt />
  397. </div>
  398. <div
  399. class="delete"
  400. @click="deleteStudent(scope.$index, 1)"
  401. >
  402. <img src="../../../../assets/remove.png" alt />
  403. </div>
  404. </div>
  405. </template>
  406. </el-table-column>
  407. </el-table>
  408. </div>
  409. <div
  410. style="
  411. color: #cd0808;
  412. width: 97%;
  413. margin: 10px auto;
  414. font-size: 14px;
  415. "
  416. >
  417. 协作者(不含联系人)不超过5人;姓名为必填项,其余信息非必填项。
  418. </div>
  419. </div>
  420. </div>
  421. <div class="whiteBg" style="border-radius: 0">
  422. <div class="right_first">
  423. <div class="right_title" id="fouth">
  424. <span style="color: red">*</span>项目简介
  425. </div>
  426. <div class="secondTop">
  427. <el-input
  428. type="textarea"
  429. placeholder="200字以内,介绍项目背景,描述生活中的现象,引出要解决的核心问题,概述解决问题的思路及预期成果等。"
  430. v-model="raceDetail.courseText"
  431. @input="updateTitle"
  432. maxlength="200"
  433. show-word-limit
  434. rows="8"
  435. class="tAreaCss"
  436. cols
  437. >
  438. </el-input>
  439. <!-- <textarea
  440. rows="8"
  441. class="binfo_input tAreaCss"
  442. cols
  443. v-model="raceDetail.courseText"
  444. @input="updateTitle"
  445. maxlength="200"
  446. show-word-limit
  447. placeholder="200字以内,介绍项目背景,描述生活中的现象,引出要解决的核心问题,概述解决问题的思路及预期成果等。"
  448. style="font-size: 14px"
  449. ></textarea> -->
  450. </div>
  451. </div>
  452. </div>
  453. <div class="whiteBg" style="border-radius: 0">
  454. <div class="right_first">
  455. <div class="right_title" id="fivth">
  456. <span style="color: red">*</span>文件上传
  457. </div>
  458. <div class="secondTop">
  459. <div>
  460. <div class="basic_box1" style="width: 100%">
  461. <div>
  462. <div
  463. class="add_chapters_box"
  464. v-if="raceDetail.data && raceDetail.data.length == 0"
  465. ></div>
  466. <div
  467. v-else
  468. class="add_chapters_box"
  469. style="display: flex; flex-direction: column"
  470. >
  471. <div
  472. class="chapter_upload"
  473. v-for="(item, index) in raceDetail.data"
  474. :key="item.id"
  475. >
  476. <div class="chapter_upload_t"></div>
  477. <div class="chapter_upload_o">
  478. <div class="chapter_upload_l">
  479. <div
  480. v-if="item.type == 2"
  481. class="chapter_upload_l_i1"
  482. ></div>
  483. <div
  484. v-if="item.type == 1 || item.type == 3"
  485. class="chapter_upload_l_i5"
  486. ></div>
  487. </div>
  488. <div class="chapter_upload_ic">
  489. <div class="chapter_upload_ic_l"></div>
  490. <div
  491. class="chapter_upload_ic_r"
  492. @click.stop="
  493. deleteChapterData($event, index, 0)
  494. "
  495. >
  496. <div></div>
  497. </div>
  498. </div>
  499. <div class="chapter_upload_n">
  500. <input
  501. class="first"
  502. v-if="item.type == 1 || item.type == 3"
  503. :placeholder="item.name"
  504. />
  505. <input
  506. class="first"
  507. v-if="item.type == 2"
  508. :placeholder="item.name"
  509. />
  510. <div class="chapter_upload_ud">
  511. <div
  512. class="chapter_upload_up"
  513. @click="upCd($event, index)"
  514. ></div>
  515. <div
  516. class="chapter_upload_down"
  517. @click="downCd($event, index)"
  518. ></div>
  519. </div>
  520. </div>
  521. </div>
  522. </div>
  523. </div>
  524. </div>
  525. <div class="add_info_box">
  526. <div class="upTips">
  527. <button
  528. class="info_btn"
  529. @click="addImg($event)"
  530. style="min-width: 108px"
  531. >
  532. 上传附件
  533. <input
  534. type="file"
  535. accept="application/pdf"
  536. style="display: none"
  537. @change="beforeUpload($event, null, 0)"
  538. />
  539. </button>
  540. <div style="color:red;">
  541. *此处需提交《项目式学习方案设计》、《项目式学习活动案例》的PDF格式文件。
  542. </div>
  543. </div>
  544. </div>
  545. <div v-if="raceDetail.data.proVisible" class="mask">
  546. <div class="progressBox">
  547. <div class="lbox">
  548. <img
  549. src="../../../../assets/loading.gif"
  550. />上传中,请稍后
  551. </div>
  552. <el-progress
  553. :text-inside="true"
  554. :stroke-width="20"
  555. :percentage="
  556. raceDetail.data.progress
  557. ? raceDetail.data.progress
  558. : 0
  559. "
  560. style="width: 80%"
  561. ></el-progress>
  562. </div>
  563. </div>
  564. </div>
  565. </div>
  566. </div>
  567. </div>
  568. </div>
  569. </div>
  570. <!-- <div class="buttonCss">
  571. <div class="info_btn noBg">预览</div>
  572. <div class="info_btn noBg">保存</div>
  573. <div class="info_btn" style="margin-right: 25px">下一步</div>
  574. </div> -->
  575. </div>
  576. </div>
  577. <el-dialog
  578. :title="isAddOrUp == true ? '修改项目成员' : '添加项目成员'"
  579. :visible.sync="dialogVisibleMember"
  580. :append-to-body="true"
  581. width="700px"
  582. height="80%"
  583. :before-close="handleClose"
  584. class="add_student"
  585. >
  586. <el-form>
  587. <el-form-item label="姓名" :label-width="formLabelWidth">
  588. <span>
  589. <el-input
  590. placeholder="请输入姓名"
  591. clearable
  592. v-model="sName"
  593. class="add_input"
  594. ></el-input>
  595. </span>
  596. </el-form-item>
  597. <el-form-item label="学科" :label-width="formLabelWidth">
  598. <span>
  599. <el-input
  600. placeholder="请输入学科"
  601. clearable
  602. v-model="sSubject"
  603. class="add_input"
  604. ></el-input>
  605. </span>
  606. </el-form-item>
  607. <el-form-item label="学校" :label-width="formLabelWidth">
  608. <span>
  609. <el-input
  610. placeholder="请输入学校"
  611. clearable
  612. v-model="sSchool"
  613. class="add_input"
  614. ></el-input>
  615. </span>
  616. </el-form-item>
  617. <el-form-item label="邮箱" :label-width="formLabelWidth">
  618. <span>
  619. <el-input
  620. placeholder="请输入邮箱"
  621. clearable
  622. v-model="sEmail"
  623. class="add_input"
  624. ></el-input>
  625. </span>
  626. </el-form-item>
  627. <el-form-item label="电话" :label-width="formLabelWidth">
  628. <span>
  629. <el-input
  630. placeholder="请输入电话"
  631. clearable
  632. v-model="sPhone"
  633. class="add_input"
  634. ></el-input>
  635. </span>
  636. </el-form-item>
  637. </el-form>
  638. <span slot="footer" class="dialog-footer">
  639. <el-button @click="dialogVisibleMember = false">取 消</el-button>
  640. <el-button type="primary" @click="isAddPPTeacher">确定</el-button>
  641. </span>
  642. </el-dialog>
  643. <el-dialog
  644. title="上传图片"
  645. :visible.sync="choosePicVisible"
  646. :append-to-body="true"
  647. width="500px"
  648. :before-close="handleClose"
  649. class="dialog_diy"
  650. >
  651. <div>
  652. <div class="fileCss" style="padding-top: 20px">
  653. <div>
  654. <button class="info_btn" @click="addImg($event)">
  655. 选择本地文件
  656. <input
  657. type="file"
  658. accept="image/*"
  659. style="display: none"
  660. @change="beforeUpload1"
  661. />
  662. </button>
  663. </div>
  664. <div>
  665. <el-button
  666. @click="getAllBanner"
  667. v-if="isSysPic == false && raceDetail.cover.length == 0"
  668. >选择系统文件</el-button
  669. >
  670. <div
  671. class="isSysPic"
  672. v-if="isSysPic == true && raceDetail.cover.length > 0"
  673. >
  674. <img :src="raceDetail.cover[0].url" alt="" />
  675. <div class="deletePic" @click="deleteSysPic">
  676. <img src="../../../../assets/icon/delete.png" alt="" />
  677. </div>
  678. </div>
  679. </div>
  680. </div>
  681. <div class="fileCss" v-if="raceDetail.cover.length > 0">
  682. <div>选择本地文件</div>
  683. <div>选择系统文件</div>
  684. </div>
  685. </div>
  686. <span slot="footer" class="dialog-footer">
  687. <el-button @click="choosePicVisible = false">取 消</el-button>
  688. <el-button type="primary" @click="choosePicVisible = false"
  689. >确 定</el-button
  690. >
  691. </span>
  692. </el-dialog>
  693. <el-dialog
  694. title="选择系统文件"
  695. :visible.sync="sysPicVisible"
  696. :append-to-body="true"
  697. width="700px"
  698. :before-close="handleClose"
  699. class="dialog_diy"
  700. >
  701. <div class="cru_selectBox" style="margin: 0">
  702. <div
  703. @click="getChoosePic(1)"
  704. class="cru_select"
  705. :class="chooseType == 1 ? 'cru_selected' : ''"
  706. >
  707. 绘画
  708. </div>
  709. <div
  710. @click="getChoosePic(2)"
  711. class="cru_select"
  712. :class="chooseType == 2 ? 'cru_selected' : ''"
  713. >
  714. 科技
  715. </div>
  716. <div
  717. @click="getChoosePic(3)"
  718. class="cru_select"
  719. :class="chooseType == 3 ? 'cru_selected' : ''"
  720. >
  721. 人文
  722. </div>
  723. <div
  724. @click="getChoosePic(4)"
  725. class="cru_select"
  726. :class="chooseType == 4 ? 'cru_selected' : ''"
  727. >
  728. 艺术
  729. </div>
  730. </div>
  731. <div class="sysPicBox">
  732. <div v-for="(sys, sysIndex) in sysPic" :key="sysIndex" class="sysPic">
  733. <img :src="sys.poster" alt="" @click="chooseSysPic(sys.poster)" />
  734. </div>
  735. </div>
  736. <span slot="footer" class="dialog-footer">
  737. <el-button @click="sysPicVisible = false">取 消</el-button>
  738. <el-button type="primary">确 定</el-button>
  739. </span>
  740. </el-dialog>
  741. </div>
  742. </template>
  743. <script>
  744. export default {
  745. props: ["raceInfo"],
  746. data() {
  747. return {
  748. tableHeight: "500px",
  749. formLabelWidth: "100px",
  750. chooseType: 1,
  751. CourseType: [],
  752. CourseTypeJson: [],
  753. noneBtnImg: false,
  754. uploadLoading1: false,
  755. dialogVisibleMember: false,
  756. isAddOrUp: false,
  757. choosePicVisible: false,
  758. sysPicVisible: false,
  759. isSysPic: false,
  760. isAutor: false,
  761. sysPic: [],
  762. upIndex: -1,
  763. sName: "",
  764. sSubject: "",
  765. sSchool: "",
  766. sEmail: "",
  767. sPhone: "",
  768. raceDetail: {
  769. title: "",
  770. type: [],
  771. cover: [],
  772. autor: [],
  773. tableData: [],
  774. courseText: "",
  775. data: [],
  776. },
  777. tx: require("../../../../assets/avatar.png"),
  778. };
  779. },
  780. mounted() {
  781. this.$nextTick(function () {
  782. this.tableHeight =
  783. window.innerHeight - this.$refs.table.$el.offsetTop - 200;
  784. if (this.tableHeight <= 530) {
  785. this.tableHeight = 530;
  786. }
  787. // 监听窗口大小变化
  788. let self = this;
  789. window.onresize = function () {
  790. self.tableHeight =
  791. window.innerHeight - self.$refs.table.$el.offsetTop - 200;
  792. if (self.tableHeight <= 530) {
  793. self.tableHeight = 530;
  794. }
  795. };
  796. });
  797. },
  798. beforeRouteLeave(to, from, next) {
  799. window.onresize = null;
  800. next();
  801. },
  802. watch: {
  803. raceInfo: {
  804. immediate: true,
  805. deep: true,
  806. handler(newValue, oldValue) {
  807. this.getValue();
  808. },
  809. },
  810. },
  811. methods: {
  812. tableRowClassName({ row, rowIndex }) {
  813. // if ((rowIndex + 1) % 2 === 0) {
  814. // return "even_row";
  815. // } else {
  816. // return "";
  817. // }
  818. if (rowIndex === 0) {
  819. return "tr-blue";
  820. } else {
  821. return "";
  822. }
  823. },
  824. handlePictureCardPreview(file) {
  825. this.dialogImageUrl = file.url;
  826. },
  827. onExceed() {
  828. this.$message.error("项目封面仅支持上传一张,请删除后再进行上传");
  829. },
  830. handleClose(done) {
  831. this.isAddOrUp = false;
  832. this.isAutor = false;
  833. done();
  834. },
  835. jump(t) {
  836. var a = document.getElementById(t);
  837. var b = document.getElementsByClassName("right")[0];
  838. b.scrollTop = a.offsetTop;
  839. },
  840. handle_remove1(file, fileList, type) {
  841. var _tmp = this.raceDetail.cover;
  842. for (var i = 0, len = _tmp.length; i < len; i++) {
  843. if (_tmp[i].uid == file.uid) {
  844. _tmp.splice(i, 1);
  845. break;
  846. }
  847. this.raceDetail.cover = _tmp;
  848. }
  849. this.noneBtnImg = _tmp.length >= 1;
  850. this.isSysPic = false;
  851. },
  852. addImg(e) {
  853. var el = e.currentTarget;
  854. el.getElementsByTagName("input")[0].click();
  855. e.target.value = "";
  856. },
  857. imgChange1(file, fileList, type, itemTaskIndex) {
  858. if (type == 1) {
  859. var _tmp = this.raceDetail.cover;
  860. }
  861. this.noneBtnImg = _tmp.length >= 1;
  862. },
  863. imgChange(file, fileList, type, jT) {
  864. var _tmp = this.raceDetail.data;
  865. this.noneBtnImg = _tmp.length >= 1;
  866. },
  867. deleteChapterData(e, i, t) {
  868. e.stopPropagation();
  869. this.raceDetail.data.splice(i, 1);
  870. },
  871. chooseSysPic(p) {
  872. if (this.raceDetail.cover.length == 0) {
  873. this.raceDetail.cover.push({
  874. name: "系统图片.png",
  875. url: p,
  876. });
  877. } else {
  878. console.log(this.raceDetail.cover);
  879. }
  880. this.imgChange1(null, null, 1, null);
  881. this.isSysPic = true;
  882. this.sysPicVisible = false;
  883. },
  884. deleteSysPic() {
  885. this.raceDetail.cover = [];
  886. this.isSysPic = false;
  887. },
  888. getChoosePic(t) {
  889. this.chooseType = t;
  890. this.getAllBanner();
  891. },
  892. beforeUpload1(event, type) {
  893. const loading = this.openLoading();
  894. var file = event.target.files[0];
  895. var credentials = {
  896. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  897. secretAccessKey: "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",
  898. }; //秘钥形式的登录上传
  899. window.AWS.config.update(credentials);
  900. window.AWS.config.region = "cn-northwest-1"; //设置区域
  901. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  902. var _this = this;
  903. if (file) {
  904. var params = {
  905. Key:
  906. file.name.split(".")[0] +
  907. new Date().getTime() +
  908. "." +
  909. file.name.split(".")[file.name.split(".").length - 1],
  910. ContentType: file.type,
  911. Body: file,
  912. "Access-Control-Allow-Credentials": "*",
  913. ACL: "public-read",
  914. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  915. var options = {
  916. partSize: 2048 * 1024 * 1024,
  917. queueSize: 2,
  918. leavePartsOnError: true,
  919. };
  920. bucket
  921. .upload(params, options)
  922. .on("httpUploadProgress", function (evt) {
  923. //这里可以写进度条
  924. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  925. })
  926. .send(function (err, data) {
  927. loading.close();
  928. if (err) {
  929. var a = _this.$refs.upload1.uploadFiles;
  930. a.splice(a.length - 1, a.length);
  931. _this.$message.error("上传失败");
  932. } else {
  933. if (file.name.indexOf("微信图片") != -1) {
  934. _this.raceDetail.cover.push({
  935. name: "图片.png",
  936. url: data.Location,
  937. });
  938. } else {
  939. _this.raceDetail.cover.push({
  940. name: file.name,
  941. url: data.Location,
  942. });
  943. }
  944. _this.imgChange1(null, null, 1, null);
  945. _this.choosePicVisible = false;
  946. console.log(data.Location);
  947. }
  948. });
  949. }
  950. },
  951. beforeUpload(event, type, jsonType) {
  952. var file = event.target.files[0];
  953. var credentials = {
  954. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  955. secretAccessKey: "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",
  956. }; //秘钥形式的登录上传
  957. window.AWS.config.update(credentials);
  958. window.AWS.config.region = "cn-northwest-1"; //设置区域
  959. var type1 = type;
  960. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  961. var _this = this;
  962. var b = [
  963. "DOC",
  964. "DOCX",
  965. "DOCM",
  966. "DOTM",
  967. "DOTX",
  968. "PPTX",
  969. "PPSX",
  970. "PPT",
  971. "PPS",
  972. "PPTM",
  973. "POTM",
  974. "PPAM",
  975. "POTX",
  976. "PPSM",
  977. ];
  978. var c = ["PDF", "DOT", "DOC", "DOCX", "PPT", "PPTX", "XLSX", "XLS"];
  979. var d = [
  980. "BMP",
  981. "PJP",
  982. "APNG",
  983. "PNG",
  984. "JPG",
  985. "GIF",
  986. "SVG",
  987. "JPEG",
  988. "JPG",
  989. "ICO",
  990. "PGPEG",
  991. "AVIF",
  992. ];
  993. // if (
  994. // b.indexOf(
  995. // file.name
  996. // .split(".")
  997. // [file.name.split(".").length - 1].toLocaleUpperCase()
  998. // ) != -1
  999. // ) {
  1000. // if (file.size / 1024 / 1024 > 10) {
  1001. // this.$message.error("上传文件大于10M,请重新选择文件!");
  1002. // return;
  1003. // }
  1004. // } else if (
  1005. // c.indexOf(
  1006. // file.name
  1007. // .split(".")
  1008. // [file.name.split(".").length - 1].toLocaleUpperCase()
  1009. // ) != -1
  1010. // ) {
  1011. // if (file.size / 1024 / 1024 > 5) {
  1012. // this.$message.error("添加的上传文件大于5M,请重新选择文件!");
  1013. // return;
  1014. // }
  1015. // }
  1016. if (
  1017. file.name
  1018. .split(".")
  1019. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  1020. ) {
  1021. this.$message.error("请上传PDF文件!");
  1022. return;
  1023. }
  1024. if (
  1025. c.indexOf(
  1026. file.name
  1027. .split(".")
  1028. [file.name.split(".").length - 1].toLocaleUpperCase()
  1029. ) != -1
  1030. ) {
  1031. type1 = 1;
  1032. } else if (
  1033. d.indexOf(
  1034. file.name
  1035. .split(".")
  1036. [file.name.split(".").length - 1].toLocaleUpperCase()
  1037. ) != -1
  1038. ) {
  1039. type1 = 3;
  1040. } else {
  1041. type1 = 2;
  1042. }
  1043. _this.raceDetail.data.progress = 0;
  1044. _this.raceDetail.data.proVisible = true;
  1045. _this.$forceUpdate();
  1046. if (file) {
  1047. var params = {
  1048. Key:
  1049. file.name.split(".")[0] +
  1050. new Date().getTime() +
  1051. "." +
  1052. file.name.split(".")[file.name.split(".").length - 1],
  1053. ContentType: file.type,
  1054. Body: file,
  1055. "Access-Control-Allow-Credentials": "*",
  1056. ACL: "public-read",
  1057. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  1058. var options = {
  1059. partSize: 2048 * 1024 * 1024,
  1060. queueSize: 2,
  1061. leavePartsOnError: true,
  1062. };
  1063. bucket
  1064. .upload(params, options)
  1065. .on("httpUploadProgress", function (evt) {
  1066. //这里可以写进度条
  1067. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  1068. _this.raceDetail.data.progress = parseInt(
  1069. (evt.loaded * 80) / evt.total
  1070. );
  1071. })
  1072. .send(function (err, data) {
  1073. // loading.close();
  1074. _this.raceDetail.data.progress = 100;
  1075. setTimeout(() => {
  1076. _this.raceDetail.data.proVisible = false;
  1077. _this.$forceUpdate();
  1078. }, 1000);
  1079. if (err) {
  1080. _this.$message.error("上传失败");
  1081. } else {
  1082. _this.raceDetail.data.push({
  1083. name: file.name,
  1084. url: data.Location,
  1085. type: type1,
  1086. });
  1087. _this.imgChange(null, null, type1, jsonType);
  1088. console.log(data.Location);
  1089. }
  1090. });
  1091. }
  1092. },
  1093. updateTitle() {
  1094. this.$emit("updateTitle", this.raceDetail);
  1095. },
  1096. updateType(sid) {
  1097. var a = this.raceDetail.type;
  1098. var c = [];
  1099. var b = sid.pid;
  1100. var d = [];
  1101. // for (var i = 0; i < this.CourseType[1].length; i++) {
  1102. // if (this.CourseType[1][i].id == sid) {
  1103. // b = this.CourseType[1][i].pid;
  1104. // }
  1105. // }
  1106. if (
  1107. b == "34629bcc-d02f-11ec-8c78-005056b86db5" &&
  1108. a.indexOf(sid.id) != -1
  1109. ) {
  1110. for (var j = 0; j < this.CourseTypeJson[b].length; j++) {
  1111. d.push(this.CourseTypeJson[b][j].id);
  1112. }
  1113. for (var i = 0; i < a.length; i++) {
  1114. if (d.indexOf(a[i]) == -1) {
  1115. c.push(a[i]);
  1116. }
  1117. }
  1118. c.push(sid.id);
  1119. this.raceDetail.type = c;
  1120. }
  1121. },
  1122. isAddPPTeacher() {
  1123. if (this.isAutor == true) {
  1124. if (this.sName === "") {
  1125. this.$message.error("姓名不能为空");
  1126. return;
  1127. } else if (this.sSubject === "") {
  1128. this.$message.error("学科不能为空");
  1129. return;
  1130. } else if (this.sSchool === "") {
  1131. this.$message.error("学校不能为空");
  1132. return;
  1133. } else if (this.sPhone == "") {
  1134. this.$message.error("手机号不能为空");
  1135. return;
  1136. } else if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)) {
  1137. this.$message.error("手机号格式不正确");
  1138. return;
  1139. } else if (this.sEmail == "") {
  1140. this.$message.error("邮箱不能为空");
  1141. return;
  1142. } else if (this.sEmail != "") {
  1143. if (
  1144. !/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(
  1145. this.sEmail
  1146. )
  1147. ) {
  1148. this.$message.error("邮箱格式不正确");
  1149. return;
  1150. }
  1151. }
  1152. } else {
  1153. if (this.sName === "") {
  1154. this.$message.error("姓名不能为空");
  1155. return;
  1156. } else if (this.sPhone != "") {
  1157. if (!/^[1][3,4,5,7,8][0-9]{9}$/.test(this.sPhone)) {
  1158. this.$message.error("手机号格式不正确");
  1159. return;
  1160. }
  1161. } else if (this.sEmail != "") {
  1162. if (
  1163. !/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/.test(
  1164. this.sEmail
  1165. )
  1166. ) {
  1167. this.$message.error("邮箱格式不正确");
  1168. return;
  1169. }
  1170. }
  1171. }
  1172. if (this.isAutor == true) {
  1173. if (this.isAddOrUp == true) {
  1174. this.raceDetail.autor[0].sn = this.sName;
  1175. this.raceDetail.autor[0].su = this.sSubject;
  1176. this.raceDetail.autor[0].sc = this.sSchool;
  1177. this.raceDetail.autor[0].em = this.sEmail;
  1178. this.raceDetail.autor[0].ph = this.sPhone;
  1179. } else {
  1180. this.raceDetail.autor.push({
  1181. sn: this.sName,
  1182. su: this.sSubject,
  1183. sc: this.sSchool,
  1184. em: this.sEmail,
  1185. ph: this.sPhone,
  1186. });
  1187. }
  1188. } else {
  1189. if (this.isAddOrUp == true) {
  1190. this.raceDetail.tableData[this.upIndex].sn = this.sName;
  1191. this.raceDetail.tableData[this.upIndex].su = this.sSubject;
  1192. this.raceDetail.tableData[this.upIndex].sc = this.sSchool;
  1193. this.raceDetail.tableData[this.upIndex].em = this.sEmail;
  1194. this.raceDetail.tableData[this.upIndex].ph = this.sPhone;
  1195. } else {
  1196. this.raceDetail.tableData.push({
  1197. sn: this.sName,
  1198. su: this.sSubject,
  1199. sc: this.sSchool,
  1200. em: this.sEmail,
  1201. ph: this.sPhone,
  1202. });
  1203. }
  1204. }
  1205. this.sName = "";
  1206. this.sSubject = "";
  1207. this.sSchool = "";
  1208. this.sEmail = "";
  1209. this.sPhone = "";
  1210. this.isAddOrUp = false;
  1211. this.isAutor = false;
  1212. this.upIndex = -1;
  1213. this.dialogVisibleMember = false;
  1214. this.$emit("updateTitle", this.raceDetail);
  1215. },
  1216. updateStudent(r, i, t) {
  1217. this.sName = r.sn;
  1218. this.sSubject = r.su;
  1219. this.sSchool = r.sc;
  1220. this.sEmail = r.em;
  1221. this.sPhone = r.ph;
  1222. this.isAddOrUp = true;
  1223. if (t == 0) {
  1224. this.isAutor = true;
  1225. }
  1226. this.upIndex = i;
  1227. this.dialogVisibleMember = true;
  1228. },
  1229. deleteStudent(i, t) {
  1230. this.$confirm("确定删除此作者吗?", "提示", {
  1231. confirmButtonText: "确定",
  1232. cancelButtonText: "取消",
  1233. type: "warning",
  1234. })
  1235. .then(() => {
  1236. this.$message({
  1237. message: "删除成功",
  1238. type: "success",
  1239. });
  1240. if (t == 0) {
  1241. this.raceDetail.autor = [];
  1242. } else {
  1243. this.raceDetail.tableData.splice(i, 1);
  1244. }
  1245. this.$emit("updateTitle", this.raceDetail);
  1246. })
  1247. .catch(() => {});
  1248. },
  1249. selectType() {
  1250. this.ajax
  1251. .get(this.$store.state.api + "selectMatType")
  1252. .then((res) => {
  1253. this.CourseType = res.data;
  1254. for (var i = 0; i < res.data[0].length; i++) {
  1255. if (!this.cid) {
  1256. this.raceDetail.type[res.data[0][i].id] = "";
  1257. }
  1258. for (var j = 0; j < res.data[1].length; j++) {
  1259. if (res.data[0][i].id == res.data[1][j].pid) {
  1260. if (!this.CourseTypeJson[res.data[0][i].id]) {
  1261. this.CourseTypeJson[res.data[0][i].id] = [];
  1262. }
  1263. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  1264. }
  1265. }
  1266. }
  1267. })
  1268. .catch((err) => {
  1269. console.error(err);
  1270. });
  1271. },
  1272. getAllBanner() {
  1273. this.sysPicVisible = true;
  1274. let params = {
  1275. t: this.chooseType,
  1276. };
  1277. this.ajax
  1278. .get(this.$store.state.api + "selectAllBanner", params)
  1279. .then((res) => {
  1280. this.sysPic = res.data[0];
  1281. })
  1282. .catch((err) => {
  1283. console.error(err);
  1284. });
  1285. },
  1286. getValue() {
  1287. this.raceDetail.title = this.raceInfo.title;
  1288. this.raceDetail.type = this.raceInfo.type;
  1289. this.raceDetail.cover = this.raceInfo.cover;
  1290. this.raceDetail.autor = this.raceInfo.autor;
  1291. this.raceDetail.tableData = this.raceInfo.tableData;
  1292. this.raceDetail.courseText = this.raceInfo.courseText;
  1293. this.raceDetail.data = this.raceInfo.data;
  1294. this.imgChange1(null, null, 1, null);
  1295. this.$forceUpdate();
  1296. },
  1297. addAutor(t) {
  1298. if (t == 0) {
  1299. this.isAutor = true;
  1300. }
  1301. this.dialogVisibleMember = true;
  1302. },
  1303. upCd(e, i) {
  1304. e.stopPropagation();
  1305. if (i == 0) {
  1306. return;
  1307. }
  1308. var a = this.raceDetail.data[i - 1];
  1309. this.raceDetail.data[i - 1] = this.raceDetail.data[i];
  1310. this.raceDetail.data[i] = a;
  1311. this.$forceUpdate();
  1312. },
  1313. downCd(e, i) {
  1314. e.stopPropagation();
  1315. if (i == this.raceDetail.data.length - 1) {
  1316. return;
  1317. }
  1318. var a = this.raceDetail.data[i + 1];
  1319. this.raceDetail.data[i + 1] = this.raceDetail.data[i];
  1320. this.raceDetail.data[i] = a;
  1321. this.$forceUpdate();
  1322. },
  1323. },
  1324. created() {
  1325. this.getValue();
  1326. this.selectType();
  1327. },
  1328. };
  1329. </script>
  1330. <style scoped>
  1331. @media screen and (max-width: 1280px) {
  1332. .upTips {
  1333. align-items: flex-start !important;
  1334. }
  1335. }
  1336. .dialog_diy >>> .el-dialog__header {
  1337. background: #3c3c3c !important;
  1338. padding: 15px 20px;
  1339. }
  1340. .dialog_diy >>> .el-dialog__title {
  1341. color: #fff;
  1342. }
  1343. .dialog_diy >>> .el-dialog__headerbtn {
  1344. top: 19px;
  1345. }
  1346. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
  1347. color: #fff;
  1348. }
  1349. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
  1350. color: #fff;
  1351. }
  1352. .dialog_diy >>> .el-dialog__body,
  1353. .dialog_diy >>> .el-dialog__footer {
  1354. background: #fafafa;
  1355. }
  1356. .pb_content {
  1357. width: 100%;
  1358. height: 100%;
  1359. }
  1360. .race_content_body {
  1361. width: 100%;
  1362. position: relative;
  1363. margin: 0;
  1364. height: 100%;
  1365. }
  1366. .raceBox {
  1367. width: 100%;
  1368. height: 100%;
  1369. display: flex;
  1370. flex-direction: row;
  1371. flex-wrap: nowrap;
  1372. align-items: flex-start;
  1373. }
  1374. .stepBg {
  1375. font-size: 16px;
  1376. padding: 80px 0 0 0;
  1377. margin: 0 25px 0 0;
  1378. width: 15%;
  1379. display: flex;
  1380. justify-content: flex-start;
  1381. align-items: center;
  1382. flex-wrap: nowrap;
  1383. background: #fff;
  1384. /* min-height: 800px; */
  1385. height: calc(100% - 80px);
  1386. border-radius: 15px;
  1387. overflow: auto;
  1388. min-width: 260px;
  1389. flex-direction: column;
  1390. }
  1391. .steps {
  1392. display: flex;
  1393. flex-direction: row;
  1394. flex-wrap: nowrap;
  1395. position: relative;
  1396. width: 145px;
  1397. height: 130px;
  1398. }
  1399. .steps > div:nth-child(1) > img {
  1400. z-index: 9;
  1401. position: relative;
  1402. }
  1403. .stepLeft,
  1404. .isSteps {
  1405. width: 30px;
  1406. height: 30px;
  1407. border-radius: 50%;
  1408. text-align: center;
  1409. line-height: 30px;
  1410. border: 2px solid #eee;
  1411. color: #c0c0c0;
  1412. }
  1413. .isSteps {
  1414. background: #1990ff;
  1415. color: #fff;
  1416. border: none;
  1417. }
  1418. .stepRightNav {
  1419. display: flex;
  1420. flex-direction: column;
  1421. flex-wrap: nowrap;
  1422. justify-content: space-between;
  1423. align-items: flex-start;
  1424. margin: 8px 0 0 10px;
  1425. height: 40px;
  1426. cursor: pointer;
  1427. }
  1428. .stepRightNav:hover {
  1429. color: #999;
  1430. }
  1431. .line,
  1432. .isLine {
  1433. position: absolute;
  1434. width: 5px;
  1435. height: 50px;
  1436. border-left: 1px solid #dadada;
  1437. top: 38px;
  1438. left: 15px;
  1439. }
  1440. .isLine {
  1441. border-left: 1px solid #1d92ff !important;
  1442. }
  1443. .right {
  1444. width: 100%;
  1445. background: rgb(255, 255, 255);
  1446. border-radius: 10px;
  1447. overflow: auto;
  1448. height: 100%;
  1449. border-radius: 15px;
  1450. /* max-height: 800px; */
  1451. }
  1452. .allBox {
  1453. padding: 25px;
  1454. }
  1455. .allBox > div:nth-child(1) {
  1456. color: #0f40f5;
  1457. font-size: 18px;
  1458. font-weight: bold;
  1459. }
  1460. .raceTop > div:nth-child(2) {
  1461. width: 80%;
  1462. margin-top: 10px;
  1463. }
  1464. .choose {
  1465. display: flex;
  1466. flex-direction: column;
  1467. flex-wrap: nowrap;
  1468. height: 100%;
  1469. justify-content: space-evenly;
  1470. align-items: flex-start;
  1471. }
  1472. .both {
  1473. display: flex;
  1474. flex-direction: row;
  1475. flex-wrap: wrap;
  1476. width: 100%;
  1477. align-items: center;
  1478. justify-content: flex-start;
  1479. margin: 30px 0;
  1480. }
  1481. .all_choose {
  1482. display: flex;
  1483. flex-direction: row;
  1484. align-items: flex-start;
  1485. width: 100%;
  1486. }
  1487. .choose > .all_choose:nth-child(2) > span,
  1488. .choose > .all_choose:nth-child(3) > span {
  1489. letter-spacing: 31px;
  1490. margin-left: 10px;
  1491. }
  1492. .all_choose > span {
  1493. width: 120px;
  1494. /* display: block;
  1495. letter-spacing: 33px;
  1496. white-space: nowrap;
  1497. overflow: hidden;
  1498. text-overflow: ellipsis; */
  1499. }
  1500. .all_choose >>> .el-checkbox-group {
  1501. display: flex;
  1502. flex-direction: row;
  1503. width: 100%;
  1504. flex-wrap: wrap;
  1505. align-content: center;
  1506. justify-content: flex-start;
  1507. align-items: center;
  1508. margin-top: 3px;
  1509. }
  1510. .all_choose > .el-checkbox-group >>> .el-checkbox {
  1511. margin-bottom: 10px;
  1512. display: flex;
  1513. flex-direction: row;
  1514. align-items: center;
  1515. }
  1516. .all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label {
  1517. width: 85px;
  1518. min-width: 85px;
  1519. /* min-width: 80px;
  1520. overflow: hidden; */
  1521. /* width: 80px; */
  1522. /* text-overflow: ellipsis;
  1523. white-space: nowrap; */
  1524. }
  1525. .all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label:hover {
  1526. width: auto;
  1527. }
  1528. .disUoloadSty >>> .el-icon-plus {
  1529. display: none !important;
  1530. /* 上传按钮隐藏 */
  1531. }
  1532. .upCss {
  1533. display: flex;
  1534. flex-direction: row;
  1535. justify-content: flex-start;
  1536. }
  1537. .upCss >>> .el-icon-plus {
  1538. position: none !important;
  1539. width: 200px;
  1540. height: 100px;
  1541. display: flex;
  1542. flex-wrap: nowrap;
  1543. flex-direction: column;
  1544. align-items: center;
  1545. justify-content: center;
  1546. border: 1px dashed #ccc;
  1547. min-width: 78px;
  1548. min-height: 100px;
  1549. z-index: 999;
  1550. }
  1551. .upCss >>> .el-upload-list__item-name {
  1552. width: 100px;
  1553. white-space: nowrap;
  1554. overflow: hidden;
  1555. text-overflow: ellipsis;
  1556. }
  1557. .upCss >>> .el-upload-list--picture .el-upload-list__item-thumbnail {
  1558. object-fit: cover;
  1559. }
  1560. .uploadFm {
  1561. border: 1px dashed #ccc;
  1562. width: 202px;
  1563. height: 102px;
  1564. position: relative;
  1565. cursor: pointer;
  1566. }
  1567. .uploadFm > img {
  1568. position: absolute;
  1569. top: 25px;
  1570. left: 35%;
  1571. width: 50px;
  1572. }
  1573. .picBox {
  1574. display: flex;
  1575. flex-direction: row;
  1576. flex-wrap: nowrap;
  1577. align-items: flex-start;
  1578. margin-top: 10px;
  1579. }
  1580. .picNav {
  1581. margin-left: 10px;
  1582. color: #aaabaa;
  1583. }
  1584. .addPeople {
  1585. color: #75a1f4;
  1586. padding: 10px 20px 10px 0;
  1587. float: right;
  1588. cursor: pointer;
  1589. }
  1590. .binfo_input {
  1591. font: inherit;
  1592. color: currentColor;
  1593. width: 100%;
  1594. margin: 0;
  1595. /* padding: 15px 14px; */
  1596. padding: 8px 14px;
  1597. display: block;
  1598. min-width: 0;
  1599. outline: none;
  1600. box-sizing: content-box;
  1601. background: none;
  1602. border: 1px solid rgba(0, 0, 0, 0.23);
  1603. border-radius: 4px;
  1604. box-sizing: border-box;
  1605. background: #fff;
  1606. font-size: 18px;
  1607. }
  1608. .binfo_input:focus-visible {
  1609. border: 1px solid rgba(61, 103, 188);
  1610. }
  1611. .secondTop {
  1612. width: 97%;
  1613. margin: 10px auto;
  1614. }
  1615. .tAreaCss >>> .el-textarea__inner {
  1616. resize: none;
  1617. font-size: 16px;
  1618. }
  1619. .tAreaCss >>> .el-textarea__inner {
  1620. font-family: "微软雅黑";
  1621. }
  1622. .addNewPP >>> .el-dialog__body {
  1623. padding: 5px 20px;
  1624. }
  1625. .customWidth >>> .el-dialog {
  1626. min-width: 500px !important;
  1627. }
  1628. .whiteBg {
  1629. background: #fff;
  1630. border-radius: 10px;
  1631. }
  1632. .right_title {
  1633. height: 30px;
  1634. padding: 15px 0 15px 20px;
  1635. border-bottom: 1px solid #f2f2f2;
  1636. font-size: 1.5em;
  1637. font-weight: bold;
  1638. color: #0f7eff;
  1639. margin: 0 auto;
  1640. }
  1641. .basic_box {
  1642. margin: 0 auto;
  1643. position: relative;
  1644. padding: 0 20px 0 20px;
  1645. }
  1646. .basic_box1 {
  1647. position: relative;
  1648. margin: 0;
  1649. min-height: 0;
  1650. width: 90%;
  1651. }
  1652. .left_first {
  1653. display: flex;
  1654. flex-direction: column;
  1655. flex-wrap: nowrap;
  1656. }
  1657. .bInfo_title {
  1658. text-align: left;
  1659. margin: 10px 0;
  1660. }
  1661. .fmBox {
  1662. padding: 10px 0 0 20px;
  1663. display: flex;
  1664. align-items: baseline;
  1665. justify-content: flex-start;
  1666. margin: 0 auto;
  1667. }
  1668. .logoImg {
  1669. width: 30px;
  1670. }
  1671. .logoImg > img {
  1672. width: 100%;
  1673. height: 100%;
  1674. }
  1675. .title_add_student {
  1676. margin: 0 auto;
  1677. color: #fff;
  1678. }
  1679. .add_input {
  1680. width: 365px;
  1681. }
  1682. .userImg {
  1683. display: flex;
  1684. flex-direction: row;
  1685. justify-content: center;
  1686. align-items: center;
  1687. }
  1688. .tx {
  1689. width: 40px;
  1690. margin-right: 10px;
  1691. }
  1692. .pb_buttonBox {
  1693. display: flex;
  1694. flex-direction: row;
  1695. flex-wrap: nowrap;
  1696. align-items: flex-start;
  1697. }
  1698. .delete {
  1699. width: 25px;
  1700. cursor: pointer;
  1701. margin-left: 10px;
  1702. }
  1703. .tx > img,
  1704. .delete > img {
  1705. width: 100%;
  1706. height: 100%;
  1707. }
  1708. .add_student >>> .el-dialog__header {
  1709. padding: 20px 20px 10px;
  1710. text-align: center;
  1711. background: #32455b;
  1712. }
  1713. .add_student >>> .el-dialog__title {
  1714. font-size: 14px !important;
  1715. color: #fff !important;
  1716. }
  1717. .add_student >>> .el-dialog__headerbtn {
  1718. font-size: 20px !important;
  1719. }
  1720. .add_student >>> .el-form-item__label {
  1721. margin-left: 65px;
  1722. }
  1723. .add_student >>> .el-form-item {
  1724. display: flex;
  1725. }
  1726. .add_student >>> .el-form-item__content {
  1727. margin: 0 !important;
  1728. }
  1729. .add_student >>> .el-dialog__footer {
  1730. text-align: center !important;
  1731. }
  1732. .header-title {
  1733. display: flex;
  1734. }
  1735. .stepBg .steps:nth-child(1) ::after,
  1736. .stepBg .steps:nth-child(2) ::after,
  1737. .stepBg .steps:nth-child(3) ::after,
  1738. .stepBg .steps:nth-child(4) ::after,
  1739. .stepBg .steps:nth-child(5) ::after {
  1740. content: "";
  1741. height: 100%;
  1742. background: #eee;
  1743. width: 4px;
  1744. position: absolute;
  1745. left: 15px;
  1746. top: calc(50% + (35px / 2));
  1747. transform: translateY(-50%);
  1748. z-index: 1;
  1749. }
  1750. .fileCss {
  1751. width: 100%;
  1752. display: flex;
  1753. flex-direction: row;
  1754. flex-wrap: nowrap;
  1755. justify-content: space-around;
  1756. align-items: center;
  1757. padding-top: 15px;
  1758. }
  1759. .sysPicBox {
  1760. display: flex;
  1761. flex-direction: row;
  1762. flex-wrap: wrap;
  1763. align-content: flex-start;
  1764. height: 435px;
  1765. overflow: auto;
  1766. }
  1767. .sysPic {
  1768. width: 200px;
  1769. height: 115px;
  1770. margin: 0 10px 20px 0;
  1771. cursor: pointer;
  1772. }
  1773. .sysPic > img,
  1774. .isSysPic > img,
  1775. .deletePic > img {
  1776. width: 100%;
  1777. height: 100%;
  1778. object-fit: cover;
  1779. }
  1780. .isSysPic {
  1781. width: 200px;
  1782. height: 115px;
  1783. position: relative;
  1784. }
  1785. .deletePic {
  1786. width: 20px;
  1787. height: 20px;
  1788. position: absolute;
  1789. top: 0;
  1790. right: 0;
  1791. cursor: pointer;
  1792. }
  1793. .cru_selectBox {
  1794. display: flex;
  1795. margin: 24px 0 10px;
  1796. flex-wrap: nowrap;
  1797. white-space: nowrap;
  1798. overflow: auto;
  1799. position: relative;
  1800. height: 47px;
  1801. }
  1802. .cru_selectBox::-webkit-scrollbar {
  1803. /*滚动条整体样式*/
  1804. width: 6px;
  1805. /*高宽分别对应横竖滚动条的尺寸*/
  1806. height: 6px;
  1807. }
  1808. /*定义滚动条轨道 内阴影+圆角*/
  1809. .cru_selectBox::-webkit-scrollbar-track {
  1810. border-radius: 10px;
  1811. background-color: #eee;
  1812. }
  1813. /*定义滑块 内阴影+圆角*/
  1814. .cru_selectBox::-webkit-scrollbar-thumb {
  1815. border-radius: 10px;
  1816. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  1817. background-color: rgba(0, 0, 0, 0.1);
  1818. }
  1819. .cru_select {
  1820. font-size: 21px;
  1821. margin-right: 37px;
  1822. margin-left: 5px;
  1823. cursor: pointer;
  1824. color: #a6a6a6;
  1825. }
  1826. .cru_selected {
  1827. color: #0b7fc2 !important;
  1828. }
  1829. .info_btn {
  1830. color: #fff;
  1831. background-color: #0f7eff;
  1832. padding: 8px 24px;
  1833. font-size: 0.9375rem;
  1834. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  1835. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  1836. min-width: 64px;
  1837. font-weight: 500;
  1838. border-radius: 4px;
  1839. box-sizing: border-box;
  1840. border: none;
  1841. cursor: pointer;
  1842. }
  1843. .raTable {
  1844. width: 97%;
  1845. margin: 0 auto;
  1846. height: auto;
  1847. }
  1848. .raTable >>> .el-table,
  1849. .raTable >>> .el-table__body-wrapper {
  1850. height: auto !important;
  1851. font-size: 16px !important;
  1852. }
  1853. .add_chapters_box {
  1854. text-align: left;
  1855. background-color: rgb(232 234 237);
  1856. width: 100%;
  1857. padding: 0px 15px;
  1858. border-radius: 15px;
  1859. font-size: 16px;
  1860. box-sizing: border-box;
  1861. position: relative;
  1862. padding: 0 10px 5px 10px;
  1863. height: 125px;
  1864. overflow-y: auto;
  1865. overflow-x: hidden;
  1866. }
  1867. .chapter_upload {
  1868. height: 50px;
  1869. margin-top: 8px;
  1870. position: relative;
  1871. display: flex;
  1872. align-items: center;
  1873. width: 100%;
  1874. min-height: 50px;
  1875. }
  1876. .chapter_upload_t {
  1877. background-color: #fff;
  1878. position: absolute;
  1879. height: 100%;
  1880. top: 0px;
  1881. left: 0px;
  1882. border-radius: 40px;
  1883. box-sizing: border-box;
  1884. box-shadow: 0 0 3px 3px #dfdfdf;
  1885. width: 100%;
  1886. }
  1887. .chapter_upload_o {
  1888. width: 100%;
  1889. height: 100%;
  1890. position: relative;
  1891. z-index: 1;
  1892. display: flex;
  1893. align-items: center;
  1894. }
  1895. .chapter_upload_ic {
  1896. height: 30px;
  1897. float: right;
  1898. cursor: pointer;
  1899. position: absolute;
  1900. width: 45px;
  1901. right: 0;
  1902. top: 0;
  1903. }
  1904. .chapter_upload_ic_l {
  1905. width: 50px;
  1906. height: 50px;
  1907. float: left;
  1908. }
  1909. .chapter_upload_ic_l div {
  1910. width: 30px;
  1911. height: 35px;
  1912. background: url("../../../../assets/icon/icon.png");
  1913. }
  1914. .chapter_upload_ic_r {
  1915. width: 50px;
  1916. height: 50px;
  1917. float: left;
  1918. margin-left: 0px;
  1919. display: flex;
  1920. align-items: center;
  1921. position: absolute;
  1922. }
  1923. .chapter_upload_ic_r div {
  1924. width: 25px;
  1925. height: 25px;
  1926. background-image: url("../../../../assets/delete.png");
  1927. background-size: 100% 100%;
  1928. }
  1929. .chapter_upload_n {
  1930. display: flex;
  1931. text-indent: 10px;
  1932. text-decoration: none;
  1933. text-overflow: ellipsis;
  1934. white-space: nowrap;
  1935. overflow: hidden;
  1936. width: 55%;
  1937. margin-left: 10px;
  1938. cursor: pointer;
  1939. margin-top: 2px;
  1940. }
  1941. .chapter_upload_l_i1 {
  1942. background-image: url("../../../../assets/icon/video.png");
  1943. width: 28px;
  1944. height: 28px;
  1945. background-size: 100% 100%;
  1946. }
  1947. .chapter_upload_l_i5 {
  1948. background-image: url("../../../../assets/icon/word.png");
  1949. width: 24px;
  1950. height: 24px;
  1951. background-size: 100% 100%;
  1952. margin-left: 1px;
  1953. }
  1954. .chapter_upload_l_i8 {
  1955. background-image: url("../../../../assets/icon/line.png");
  1956. width: 24px;
  1957. height: 24px;
  1958. background-size: 100% 100%;
  1959. margin-left: 1px;
  1960. }
  1961. .chapter_upload_ud {
  1962. display: flex;
  1963. flex-direction: column;
  1964. margin-left: 5px;
  1965. justify-content: center;
  1966. z-index: 99;
  1967. }
  1968. .chapter_upload_up {
  1969. background-image: url("../../../../assets/icon/up.png");
  1970. width: 17px;
  1971. height: 15px;
  1972. background-size: 100% 100%;
  1973. cursor: pointer;
  1974. }
  1975. .chapter_upload_down {
  1976. background-image: url("../../../../assets/icon/down.png");
  1977. width: 17px;
  1978. height: 15px;
  1979. margin: 2px auto 0 auto;
  1980. background-size: 100% 100%;
  1981. cursor: pointer;
  1982. }
  1983. .chapter_upload_l {
  1984. padding: 1px 0 0 10px;
  1985. }
  1986. .first {
  1987. border: none;
  1988. outline: none;
  1989. width: 80%;
  1990. min-width: 215px;
  1991. z-index: 99;
  1992. font-size: 14px;
  1993. white-space: nowrap;
  1994. overflow: hidden;
  1995. text-overflow: ellipsis;
  1996. }
  1997. .add_info_box {
  1998. margin: 20px 0;
  1999. }
  2000. .add_info_box button {
  2001. margin: 0 10px 10px 0;
  2002. }
  2003. .mask {
  2004. background-color: rgb(0 0 0 / 30%);
  2005. /* position: fixed; */
  2006. position: absolute;
  2007. top: 0;
  2008. left: 0;
  2009. width: 100%;
  2010. height: 100%;
  2011. z-index: 20000;
  2012. display: flex;
  2013. align-items: center;
  2014. justify-content: center;
  2015. }
  2016. .progressBox {
  2017. width: 300px;
  2018. height: 150px;
  2019. background: #fff;
  2020. border-radius: 10px;
  2021. box-shadow: 0 0 6px 1px #bfbfbf;
  2022. display: flex;
  2023. align-items: center;
  2024. justify-content: center;
  2025. flex-direction: column;
  2026. }
  2027. .progressBox .lbox {
  2028. height: 100px;
  2029. font-size: 16px;
  2030. display: flex;
  2031. align-items: center;
  2032. }
  2033. .progressBox .lbox img {
  2034. width: 40px;
  2035. margin-right: 20px;
  2036. }
  2037. .progressBox >>> .el-progress-bar__outer {
  2038. background-color: #d1dfff !important;
  2039. }
  2040. .progressBox .lbox {
  2041. height: 100px;
  2042. font-size: 19px;
  2043. display: flex;
  2044. align-items: center;
  2045. }
  2046. .progressBox .lbox img {
  2047. width: 40px;
  2048. margin-right: 20px;
  2049. }
  2050. .upTips {
  2051. display: flex;
  2052. flex-direction: row;
  2053. flex-wrap: nowrap;
  2054. align-items: baseline;
  2055. }
  2056. .upTips > div {
  2057. margin-left: 10px;
  2058. color: #999;
  2059. font-size: 14px;
  2060. }
  2061. .tableColor >>> .tr-blue {
  2062. color: #628ff3 !important;
  2063. }
  2064. .lxr {
  2065. color: #fff;
  2066. background: center center #4a54ff;
  2067. background-image: linear-gradient(315deg, #6772ff 0, #00f9e5 100%);
  2068. background-size: 104% 104%;
  2069. min-width: 50px;
  2070. margin-left: 3px;
  2071. border-radius: 3px;
  2072. }
  2073. .isFinishCss {
  2074. display: flex;
  2075. flex-direction: row;
  2076. flex-wrap: nowrap;
  2077. align-items: flex-end;
  2078. }
  2079. .isFinishCss > div:nth-child(2) {
  2080. margin-left: 5px;
  2081. color: #939393;
  2082. }
  2083. .isFinish {
  2084. width: 16px;
  2085. height: 16px;
  2086. margin-top: 5px;
  2087. }
  2088. .isFinish > img {
  2089. width: 100%;
  2090. height: 100%;
  2091. }
  2092. .fontWidth {
  2093. text-align: center;
  2094. white-space: nowrap;
  2095. overflow: hidden;
  2096. text-overflow: ellipsis;
  2097. }
  2098. .radiusCss >>> .el-checkbox__inner {
  2099. border-radius: 50% !important;
  2100. }
  2101. .radiusCss {
  2102. margin-left: 10px !important;
  2103. }
  2104. </style>