raceDetail.vue 62 KB

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