course.vue 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205
  1. <template>
  2. <div class="pb_content" style="height: auto; width: 94%; margin: 10px auto;background: unset;">
  3. <div style="width:100%;padding:0 21px;background:#fff;border-radius: 5px;box-sizing: border-box;">
  4. <div class="pb_head top">
  5. <div style="
  6. display: flex;
  7. align-items: center;
  8. ">
  9. <span class="sub_head">课程管理</span>
  10. <span class="subClick" @click="
  11. goTo(
  12. '/works?userid=' +
  13. userid +
  14. '&oid=' +
  15. oid +
  16. '&org=' +
  17. org +
  18. '&role=' +
  19. role
  20. )
  21. ">评价管理</span>
  22. </div>
  23. <div class="student_button">
  24. <!-- <el-button type="primary" class="bgColor" @click="openCourse">协同编辑</el-button> -->
  25. <!-- <el-button type="primary" class="bgColor" @click="goToCourse3()">创建极简式课程</el-button>
  26. <el-button type="primary" class="bgColor" @click="goToCourse2()">创建任务式课程</el-button>
  27. <el-button type="primary" class="bgColor" @click="goToCourse()">创建阶段式课程</el-button> -->
  28. <button class="r_pub_button_course" @mouseenter="btnDisplay = true" @mouseleave="btnDisplay = false">
  29. <span>创建课程</span>
  30. <div v-show="btnDisplay" class="buttonBox">
  31. <div type="primary" @click="goToCourse3()">极简式课程</div>
  32. <!-- <div type="primary" @click="goToCourse2()">任务式课程</div> -->
  33. <!-- <div type="primary" @click="goToCourse()">阶段式课程</div> -->
  34. <div type="primary" @click="goToCourse4()">阶段式课程</div>
  35. <!-- v-show="org == '1973f6c7-1561-11ee-91d8-005056b86db5' || org == '777559d2-7239-11ee-b98c-005056b86db5' || org == '884c5665-a453-46f3-b7b6-01d575290aa9'" -->
  36. <div type="primary" @click="oepnTemplate()" v-show="orgArray.includes(org) || oidArray.includes(oid)">AI模式</div>
  37. </div>
  38. </button>
  39. </div>
  40. </div>
  41. <div class="reBox">
  42. <div class="reTop">
  43. <!-- <div>分类筛选</div> -->
  44. <div class="reTopCh">
  45. <el-select v-model="groupA" @change="search" v-if="role == '1'">
  46. <el-option value="4" label="全部"></el-option>
  47. <el-option value="2" label="我的课程"></el-option>
  48. <el-option value="3" label="协同课程"></el-option>
  49. <el-option value="1" label="他人课程"></el-option>
  50. </el-select>
  51. <el-select v-model="groupA" @change="search" v-else>
  52. <el-option value="0" label="全部"></el-option>
  53. <el-option value="2" label="我的课程"></el-option>
  54. <el-option value="3" label="协同课程"></el-option>
  55. </el-select>
  56. <div class="searchI">
  57. <!-- @click="getCourse" -->
  58. <div class="search">
  59. <img src="../../assets/icon/search.png" alt="" />
  60. </div>
  61. <input class="sInput" type="text" placeholder="请输入关键字" v-model="courseName" />
  62. </div>
  63. <el-button type="primary" class="bgColor" style="margin-left: 10px;" @click="reset">重置</el-button>
  64. </div>
  65. </div>
  66. <div class="pType_box all_choose" v-if="oid == '69893dca-1d47-11ed-8c78-005056b86db5'">
  67. <span><span>类型</span></span>
  68. <el-radio-group v-model="pTypeCheckName" style="display: flex; align-items: center">
  69. <div class="all_choose" style="width: 100px" v-for="(item, index) in CourseType2" :key="index">
  70. <el-radio :label="item.name" @click.native.prevent="CourseType2Click(item.name)">{{ item.name }}</el-radio>
  71. </div>
  72. </el-radio-group>
  73. </div>
  74. <div class="choose">
  75. <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index"
  76. :style="{ margin: !CourseTypeJson[item.id].length && 0 }">
  77. <span v-if="CourseTypeJson[item.id].length &&
  78. (oid == '69893dca-1d47-11ed-8c78-005056b86db5'
  79. ? pTypeCheck.indexOf(item.id) != -1
  80. : true)
  81. "><span>{{ item.name }}</span></span>
  82. <div class="typeCss" v-if="CourseTypeJson[item.id].length &&
  83. (oid == '69893dca-1d47-11ed-8c78-005056b86db5'
  84. ? pTypeCheck.indexOf(item.id) != -1
  85. : true)
  86. ">
  87. <div class="cName" @click="getCourse2(item.name, '', item.id, 1)"
  88. :class="typeE.indexOf(item.id) != -1 ? 'isCType' : ''">
  89. 全部
  90. </div>
  91. <div v-for="(item1, index1) in CourseTypeJson[item.id]" :key="index + '-' + index1" :label="item1.id"
  92. @click="getCourse2(item.name, item.id, item1.id, 2)">
  93. <div class="cName" :class="typea == item1.id || typeb == item1.id || typed == item1.id
  94. ? 'isCType'
  95. : ''
  96. ">
  97. {{ item1.name }}
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="all_choose" v-if="role == '1'">
  103. <span><span>所有者</span></span>
  104. <div class="typeCss">
  105. <div class="cName" :class="groupA == '4' ? 'isCType' : ''" @click="groupA = '4'; search();">
  106. 全部
  107. </div>
  108. <div class="cName" :class="groupA == '2' ? 'isCType' : ''" @click="groupA = '2'; search();">
  109. 我的课程
  110. </div>
  111. <div class="cName" :class="groupA == '3' ? 'isCType' : ''" @click="groupA = '3'; search();">
  112. 协同课程
  113. </div>
  114. <div class="cName" :class="groupA == '1' ? 'isCType' : ''" @click="groupA = '1'; search();">
  115. 他人课程
  116. </div>
  117. </div>
  118. </div>
  119. <div class="all_choose" v-else>
  120. <span><span>所有者</span></span>
  121. <div class="typeCss">
  122. <div class="cName" :class="groupA == '0' ? 'isCType' : ''" @click="groupA = '0'; search();">
  123. 全部
  124. </div>
  125. <div class="cName" :class="groupA == '2' ? 'isCType' : ''" @click="groupA = '2'; search();">
  126. 我的课程
  127. </div>
  128. <div class="cName" :class="groupA == '3' ? 'isCType' : ''" @click="groupA = '3'; search();">
  129. 协同课程
  130. </div>
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. <div class="line"></div>
  137. <div class="pb_content_body" style="height: 100%;width: 100%;background: #e6eaf0;margin: 0 auto;">
  138. <div class="student_head" v-if="false">
  139. <div class="choose">
  140. <div class="student_search">
  141. <span>课程筛选</span>
  142. <el-select v-model="groupA" @change="search">
  143. <el-option value="0" label="我的课程"></el-option>
  144. <el-option value="1" label="他人课程"></el-option>
  145. </el-select>
  146. </div>
  147. <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
  148. <span v-if="CourseTypeJson[item.id].length">{{ item.name }}</span>
  149. <el-select v-if="CourseTypeJson[item.id].length" v-model="courseTypeId[item.id]" placeholder="请选择"
  150. @change="getTypeName">
  151. <el-option label="全部" value="1">全部</el-option>
  152. <el-option v-for="item1 in CourseTypeJson[item.id]" :key="item1.id" :label="item1.name" :value="item1.id">
  153. </el-option>
  154. </el-select>
  155. </div>
  156. <div @click="clear" class="clear">重置</div>
  157. </div>
  158. <div class="student_right">
  159. <div class="head_left">
  160. <el-input v-model="courseName" class="student_input" placeholder="请输入课程名称"></el-input>
  161. <el-button class="course_button" @click="searchCourse">查询</el-button>
  162. </div>
  163. </div>
  164. </div>
  165. <div class="student_table">
  166. <div class="course_box">
  167. <div class="out_box" v-for="(item, index) in course" :key="index">
  168. <!-- <div class="myCourse" v-if="item.isCourseType == 1 && groupA == 0">
  169. 我的课程
  170. </div>
  171. <div class="myCourse" v-else-if="groupA == 1">
  172. 他人课程
  173. </div>
  174. <div class="xtCourse" v-else>协同课程</div> -->
  175. <div class="myCourse" v-if="item.userid == userid">我的课程</div>
  176. <div class="myCourse" style="background: #4187f0" v-else-if="!item.course_teacher ||
  177. (item.course_teacher &&
  178. item.course_teacher.indexOf(userid) == -1)
  179. ">
  180. 他人课程
  181. </div>
  182. <div class="xtCourse" v-else>协同课程</div>
  183. <div class="tup">
  184. <img :src="item.cover != null && item.cover != ''
  185. ? JSON.parse(item.cover).length > 0
  186. ? JSON.parse(item.cover)[0].url
  187. : mr
  188. : mr
  189. " alt />
  190. </div>
  191. <!-- <div class="bottom_box">
  192. <div>{{ item.title }}</div>
  193. <div class="kc_t" v-if="groupA == '1'">
  194. 创建老师:{{ item.uname }}
  195. </div>
  196. <div class="kc_time">{{ item.time }}</div>
  197. </div> -->
  198. <div class="bottom_box">
  199. <div>
  200. <el-tooltip :content="item.title" popper-class="text_tooltip" placement="top" effect="dark">
  201. <span>{{ item.title }}</span>
  202. </el-tooltip>
  203. </div>
  204. <!-- v-if="item.isCourseType == 2 || groupA == 1" -->
  205. <div class="kc_t">
  206. <span>{{ item.uname }}</span>
  207. <span>{{ item.state == 1 ? '阶段模式' : item.state == 2 ? '任务模式' : item.state == 3 ? '极简模式' : 'AI模式' }}</span>
  208. </div>
  209. <div class="kc_time">
  210. <span style="color: #717C8D">创建日期:</span>{{ item.time }}
  211. </div>
  212. <div class="kc_time">
  213. <span style="color: #717C8D">修改日期:</span>{{ item.utime }}
  214. </div>
  215. </div>
  216. <div class="three_bottom">
  217. <el-tooltip effect="dark" content="预览" placement="top">
  218. <div class="t_b_Item" @click="get(item)">
  219. <img style="height: 90%;width: 90%;" src="../../assets/icon/course/lookeye.svg">
  220. </div>
  221. </el-tooltip>
  222. <el-tooltip effect="dark" content="Ai一下" placement="top">
  223. <div class="t_b_Item" @click="aiCourse(item.courseId)">
  224. <img src="../../assets/icon/course/aiEdit.svg">
  225. </div>
  226. </el-tooltip>
  227. <el-tooltip effect="dark" content="复制" placement="top">
  228. <div class="t_b_Item" @click="copyCourse(item.courseId)">
  229. <img src="../../assets/icon/course/copy.svg">
  230. </div>
  231. </el-tooltip>
  232. <el-tooltip effect="dark" content="修改" placement="top">
  233. <div class="t_b_Item" v-if="((item.userid == userid) ||
  234. (item.course_teacher &&
  235. item.course_teacher.indexOf(userid) !== -1) || role == '1') &&
  236. item.state == 1
  237. " @click="goToCourse(item.courseId)">
  238. <img src="../../assets/icon/course/edit.svg">
  239. </div>
  240. <div class="t_b_Item" v-if="((item.userid == userid) ||
  241. (item.course_teacher &&
  242. item.course_teacher.indexOf(userid) !== -1) || role == '1') &&
  243. item.state == 2
  244. " @click="goToCourse(item.courseId)">
  245. <img src="../../assets/icon/course/edit.svg">
  246. </div>
  247. <div class="t_b_Item" v-if="((item.userid == userid) ||
  248. (item.course_teacher &&
  249. item.course_teacher.indexOf(userid) !== -1) || role == '1') &&
  250. item.state == 3
  251. " @click="goToCourse3(item.courseId)">
  252. <img src="../../assets/icon/course/edit.svg">
  253. </div>
  254. <div class="t_b_Item" v-if="((item.userid == userid) ||
  255. (item.course_teacher &&
  256. item.course_teacher.indexOf(userid) !== -1) || role == '1') &&
  257. (item.state == 4 || item.state == 5)
  258. " @click="goToCourse5(item.courseId)">
  259. <img src="../../assets/icon/course/edit.svg">
  260. </div>
  261. </el-tooltip>
  262. <el-tooltip effect="dark" content="删除" placement="top" v-if="item.isCourseType == 1 || role == '1'">
  263. <div class="t_b_Item" @click="deleteCourse(item.courseId)">
  264. <img src="../../assets/icon/course/del.svg">
  265. </div>
  266. </el-tooltip>
  267. <el-tooltip effect="dark" content="分享" placement="top">
  268. <div class="t_b_Item" @click="shareCourse(item.courseId)">
  269. <img src="../../assets/icon/course/share.svg">
  270. </div>
  271. </el-tooltip>
  272. <!-- v-if="role == '1'" -->
  273. <!-- <div @click="get(item)">预览</div> -->
  274. <!-- <div @click="jump(item.courseId)" v-else>评课</div> -->
  275. <!-- <div v-if="((item.userid == userid) ||
  276. (item.course_teacher &&
  277. item.course_teacher.indexOf(userid) !== -1) || role == '1') &&
  278. item.state == 1
  279. " @click="goToCourse(item.courseId)">
  280. 修改
  281. </div>
  282. <div v-if="((item.userid == userid) ||
  283. (item.course_teacher &&
  284. item.course_teacher.indexOf(userid) !== -1) || role == '1') &&
  285. item.state == 2
  286. " @click="goToCourse(item.courseId)">
  287. 修改
  288. </div>
  289. <div v-if="((item.userid == userid) ||
  290. (item.course_teacher &&
  291. item.course_teacher.indexOf(userid) !== -1) || role == '1') &&
  292. item.state == 3
  293. " @click="goToCourse3(item.courseId)">
  294. 修改
  295. </div> -->
  296. <!-- <div v-if="groupA == '0'" @click="
  297. goTo(
  298. '/works?cid=' +
  299. item.courseId +
  300. '&userid=' +
  301. userid +
  302. '&oid=' +
  303. oid +
  304. '&org=' +
  305. org +
  306. '&role=' +
  307. role
  308. )
  309. ">
  310. 评价
  311. </div> -->
  312. <!-- <div @click="copyCourse(item.courseId)">
  313. 复制
  314. </div>
  315. <div v-if="item.isCourseType == 1 || role == '1'" @click="deleteCourse(item.courseId)">
  316. 删除
  317. </div> -->
  318. <!-- <div class="more">
  319. <span style="font-size: 18px; font-weight: 700">...</span>
  320. <div>
  321. <span @click="copyCourse(item.courseId)">复制</span>
  322. <span @click="jump(item.courseId)" v-if="role == '1'">评课</span>
  323. <span @click="get(item.courseId)" v-else>预览</span>
  324. <span @click="getNT(item.courseId)">无终端</span>
  325. </div>
  326. </div> -->
  327. </div>
  328. </div>
  329. <div class="course_empty" v-if="course.length == 0">暂无数据</div>
  330. </div>
  331. </div>
  332. </div>
  333. <div class="student_page">
  334. <el-pagination background layout="prev, pager, next" :page-size="pageSize" :total="total"
  335. v-if="page && course.length" style="padding-bottom: 20px" @current-change="handleCurrentChange"></el-pagination>
  336. </div>
  337. <el-dialog :visible.sync="dialogVisible1" size="tiny">
  338. <img width="100%" :src="dialogImageUrl" alt />
  339. </el-dialog>
  340. <el-dialog title="查看提问" :visible.sync="dialogVisible" :append-to-body="true" width="750px" :before-close="handleClose"
  341. class="dialog_diy">
  342. <div>
  343. <div class="a_addBox">
  344. <CourseProblem :problemCourse="problemCourse"></CourseProblem>
  345. </div>
  346. </div>
  347. <span slot="footer" class="dialog-footer">
  348. <el-button @click="dialogVisible = false">关 闭</el-button>
  349. </span>
  350. </el-dialog>
  351. <el-dialog title="查看协同课程" :visible.sync="dialogVisibleCourse" :append-to-body="true" width="850px"
  352. :before-close="handleClose" class="dialog_diy">
  353. <div class="ct_box">
  354. <div class="out_box" v-for="(item, index) in courseTeam" :key="index" style="margin-left: 15px">
  355. <div class="tup">
  356. <img :src="item.cover != null && item.cover != ''
  357. ? JSON.parse(item.cover).length > 0
  358. ? JSON.parse(item.cover)[0].url
  359. : mr
  360. : mr
  361. " alt />
  362. </div>
  363. <div class="bottom_box">
  364. <div>{{ item.title }}</div>
  365. <div class="kc_t">创建老师:{{ item.uname }}</div>
  366. <div class="kc_time">{{ item.time }}</div>
  367. </div>
  368. <div class="three_bottom">
  369. <div @click="jump(item.courseId)">查看内容</div>
  370. <div @click="
  371. goTo(
  372. '/course/addCourse?cid=' +
  373. item.courseId +
  374. '&userid=' +
  375. userid +
  376. '&oid=' +
  377. oid +
  378. '&org=' +
  379. org
  380. )
  381. ">
  382. 编辑
  383. </div>
  384. </div>
  385. </div>
  386. <div class="course_empty" v-if="courseTeam.length == 0">暂无数据</div>
  387. </div>
  388. <span slot="footer" class="dialog-footer">
  389. <el-button @click="dialogVisibleCourse = false">关 闭</el-button>
  390. </span>
  391. </el-dialog>
  392. <shareDialog ref="shareDialogRef"/>
  393. <templateDialog :dialogVisibleTemplate.sync="dialogVisibleTemplate" :userid="userid" :org="org" :oid="oid" @goToCourseTemplate="goToCourseTemplate" @goToCourseTemplate2="goToCourseTemplate2"></templateDialog>
  394. </div>
  395. </template>
  396. <script>
  397. import "../../common/aws-sdk-2.235.1.min";
  398. import EditorBar from "../../components/tools/wangEnduit";
  399. import CourseProblem from "./components/courseProblem";
  400. import shareDialog from './dialog/shareDialog.vue'
  401. import templateDialog from "./aiAddCourse/templateDialog.vue";
  402. export default {
  403. components: { EditorBar, CourseProblem,shareDialog,templateDialog },
  404. data() {
  405. return {
  406. itemCount: 1,
  407. courseTitle: "",
  408. courseText: "",
  409. courseTime: "",
  410. isLoading: false,
  411. fileList: [],
  412. fileList1: [],
  413. homeworkList: [{ name: "" }],
  414. formLabelWidth: "100px",
  415. dialogVisible: false,
  416. dialogVisible1: false,
  417. dialogVisibleCourse: false,
  418. dialogImageUrl: "",
  419. group: "",
  420. userid: this.$route.query.userid,
  421. oid: this.$route.query.oid,
  422. org: this.$route.query.org,
  423. role: this.$route.query.role,
  424. Juri: "",
  425. groupList: [],
  426. JuriList: [],
  427. page: 1,
  428. total: 0,
  429. pageSize: 20,
  430. tableData: [],
  431. now: "",
  432. courseDetail: {},
  433. addCourse: {},
  434. groupA: "0",
  435. classX: "",
  436. course: [],
  437. courseName: "",
  438. mr: require("../../assets/icon/kc1.png"),
  439. CourseType: [],
  440. CourseType2: [],
  441. CourseTypeJson: {},
  442. courseTypeId: {},
  443. courseTypeSon: [],
  444. isChoose: 0,
  445. problemCourse: null, //查看提问的课程
  446. courseTeam: [],
  447. typeE: [],
  448. typea: "",
  449. typeb: "",
  450. typed: "",
  451. pTypeCheck: [],
  452. pTypeCheckName: [],
  453. btnDisplay: false,
  454. dialogVisibleTemplate: false,
  455. orgArray:[],
  456. oidArray:[]
  457. };
  458. },
  459. watch: {
  460. courseName(newValue, oldValue) {
  461. this.searchCourse()
  462. }
  463. },
  464. methods: {
  465. getAIJ(){
  466. this.ajax
  467. .get(this.$store.state.api + "getAIJ", "")
  468. .then((res) => {
  469. let oid = res.data[0];
  470. let org = res.data[1];
  471. let oidArray = []
  472. let orgArray = []
  473. for(var i = 0; i < oid.length; i++){
  474. oidArray.push(oid[i].oid)
  475. }
  476. for(var i = 0; i < org.length; i++){
  477. orgArray.push(org[i].oid)
  478. }
  479. this.orgArray = orgArray
  480. this.oidArray = oidArray
  481. })
  482. .catch((err) => {
  483. console.error(err);
  484. });
  485. },
  486. // 分析按钮
  487. shareCourse(courseId){
  488. this.$refs.shareDialogRef.open(courseId)
  489. },
  490. change(val) {
  491. console.log(val);
  492. },
  493. time() {
  494. if (!this.now) {
  495. this.now = new Date().getTime();
  496. return true;
  497. } else {
  498. let time = new Date().getTime();
  499. if (time - this.now > 3000) {
  500. this.now = time;
  501. return true;
  502. } else {
  503. return false;
  504. }
  505. }
  506. },
  507. addHomeworkBox() {
  508. this.homeworkList.push({ name: "" });
  509. this.itemCount++;
  510. },
  511. reduceHomeworkBox() {
  512. var a = this.homeworkList;
  513. a.splice(a.length - 1);
  514. this.itemCount--;
  515. },
  516. goTo(path) {
  517. this.$router.push(path);
  518. },
  519. CourseType2Change(val) {
  520. this.pTypeCheck = [];
  521. for (var i = 0; i < this.CourseType2.length; i++) {
  522. let typeA = this.CourseType2[i];
  523. if (val.indexOf(typeA.name) != -1) {
  524. this.pTypeCheck.push(...typeA.id);
  525. }
  526. }
  527. this.typea = "";
  528. this.typeb = "";
  529. this.typed = "";
  530. this.getCourse();
  531. },
  532. CourseType2Click(val) {
  533. this.pTypeCheck = [];
  534. this.typeE = [];
  535. if (val === this.pTypeCheckName) {
  536. this.pTypeCheckName = "";
  537. } else {
  538. this.pTypeCheckName = val;
  539. for (var i = 0; i < this.CourseType2.length; i++) {
  540. let typeA = this.CourseType2[i];
  541. if (val.indexOf(typeA.name) != -1) {
  542. this.pTypeCheck.push(...typeA.id);
  543. this.typeE = [...typeA.id];
  544. }
  545. }
  546. }
  547. this.typea = "";
  548. this.typeb = "";
  549. this.typed = "";
  550. this.getCourse();
  551. },
  552. goToCourse(courseId) {
  553. // if(this.org !== '16ace517-b5c7-4168-a9bb-a9e0035df840'){
  554. // if (courseId) {
  555. // this.$router.push(
  556. // "/course/addCourse?cid=" +
  557. // courseId +
  558. // "&userid=" +
  559. // this.userid +
  560. // "&oid=" +
  561. // this.oid +
  562. // "&org=" +
  563. // this.org +
  564. // "&role=" +
  565. // this.role
  566. // );
  567. // } else {
  568. // this.$router.push(
  569. // "/course/addCourse?userid=" +
  570. // this.userid +
  571. // "&oid=" +
  572. // this.oid +
  573. // "&org=" +
  574. // this.org +
  575. // "&role=" +
  576. // this.role
  577. // );
  578. // }
  579. // }else{
  580. this.goToCourse4(courseId)
  581. // }
  582. // this.$router.push(path);
  583. },
  584. goToCourse4(courseId) {
  585. if (courseId) {
  586. this.$router.push(
  587. "/newAddCourse?cid=" +
  588. courseId +
  589. "&userid=" +
  590. this.userid +
  591. "&oid=" +
  592. this.oid +
  593. "&org=" +
  594. this.org +
  595. "&role=" +
  596. this.role
  597. );
  598. } else {
  599. this.$router.push(
  600. "/newAddCourse?userid=" +
  601. this.userid +
  602. "&oid=" +
  603. this.oid +
  604. "&org=" +
  605. this.org +
  606. "&role=" +
  607. this.role
  608. );
  609. }
  610. // this.$router.push(path);
  611. },
  612. oepnTemplate(){
  613. // this.goToCourseTemplate('');
  614. this.dialogVisibleTemplate = true;
  615. },
  616. goToCourseTemplate(tid){
  617. this.$router.push(
  618. "/aiAddCourse?userid=" +
  619. this.userid +
  620. "&oid=" +
  621. this.oid +
  622. "&org=" +
  623. this.org +
  624. "&role=" +
  625. this.role +
  626. "&templateid=" +
  627. tid
  628. );
  629. },
  630. goToCourseTemplate2(tid){
  631. if(tid){
  632. this.$router.push(
  633. "/aiAddCourse?userid=" +
  634. this.userid +
  635. "&oid=" +
  636. this.oid +
  637. "&org=" +
  638. this.org +
  639. "&role=" +
  640. this.role +
  641. "&templateid=" +
  642. tid +
  643. "&istemplate=1"
  644. );
  645. }else{
  646. this.$router.push(
  647. "/aiAddCourse?userid=" +
  648. this.userid +
  649. "&oid=" +
  650. this.oid +
  651. "&org=" +
  652. this.org +
  653. "&role=" +
  654. this.role +
  655. "&templateid=" +
  656. "&istemplate=1"
  657. );
  658. }
  659. },
  660. goToCourse5(courseId) {
  661. if (courseId) {
  662. this.$router.push(
  663. "/aiAddCourse?cid=" +
  664. courseId +
  665. "&userid=" +
  666. this.userid +
  667. "&oid=" +
  668. this.oid +
  669. "&org=" +
  670. this.org +
  671. "&role=" +
  672. this.role
  673. );
  674. } else {
  675. this.$router.push(
  676. "/aiAddCourse?userid=" +
  677. this.userid +
  678. "&oid=" +
  679. this.oid +
  680. "&org=" +
  681. this.org +
  682. "&role=" +
  683. this.role
  684. );
  685. }
  686. // this.$router.push(path);
  687. },
  688. aiCourse(courseId){
  689. this.$router.push(
  690. "/aiAddCourse?userid=" +
  691. this.userid +
  692. "&oid=" +
  693. this.oid +
  694. "&org=" +
  695. this.org +
  696. "&role=" +
  697. this.role +
  698. "&aiId=" +
  699. courseId
  700. );
  701. },
  702. reset() {
  703. this.typeE = []
  704. this.typea = ''
  705. this.typeb = ''
  706. this.typed = ''
  707. this.courseName = ''
  708. if (this.role == "1") {
  709. this.groupA = "4";
  710. } else {
  711. this.groupA = "0";
  712. }
  713. this.getCourse();
  714. },
  715. goToCourse2(courseId) {
  716. if (courseId) {
  717. this.$router.push(
  718. "/course/addCourseT?cid=" +
  719. courseId +
  720. "&userid=" +
  721. this.userid +
  722. "&oid=" +
  723. this.oid +
  724. "&org=" +
  725. this.org +
  726. "&role=" +
  727. this.role
  728. );
  729. } else {
  730. this.$router.push(
  731. "/course/addCourseT?userid=" +
  732. this.userid +
  733. "&oid=" +
  734. this.oid +
  735. "&org=" +
  736. this.org +
  737. "&role=" +
  738. this.role
  739. );
  740. }
  741. },
  742. goToCourse3(courseId) {
  743. if (courseId) {
  744. this.$router.push(
  745. "/course/addCourseE?cid=" +
  746. courseId +
  747. "&userid=" +
  748. this.userid +
  749. "&oid=" +
  750. this.oid +
  751. "&org=" +
  752. this.org +
  753. "&role=" +
  754. this.role
  755. );
  756. } else {
  757. this.$router.push(
  758. "/course/addCourseE?userid=" +
  759. this.userid +
  760. "&oid=" +
  761. this.oid +
  762. "&org=" +
  763. this.org +
  764. "&role=" +
  765. this.role
  766. );
  767. }
  768. },
  769. tableRowClassName({ row, rowIndex }) {
  770. if ((rowIndex + 1) % 2 === 0) {
  771. return "even_row";
  772. } else {
  773. return "";
  774. }
  775. },
  776. jump(cid) {
  777. // window.open(
  778. // "//pbl.cocorobo.cn/pbl-student-table/dist/#/courseDetail?courseId=" +
  779. // cid +
  780. // "&userid=" +
  781. // this.userid
  782. // );
  783. top.postMessage({ cid: cid, screenType: "2" }, "*");
  784. },
  785. get(item) {
  786. top.postMessage({ cid: item.courseId, screenType: "3" }, "*");
  787. },
  788. getNT(cid) {
  789. top.postMessage({ cid: cid, screenType: "3NT" }, "*");
  790. },
  791. handle_remove(file, fileList) {
  792. var _tmp = this.fileList;
  793. for (var i = 0, len = _tmp.length; i < len; i++) {
  794. if (_tmp[i].uid == file.uid) {
  795. _tmp.splice(i, 1);
  796. break;
  797. }
  798. this.fileList = _tmp;
  799. }
  800. },
  801. handle_remove1(file, fileList) {
  802. var _tmp = this.fileList1;
  803. for (var i = 0, len = _tmp.length; i < len; i++) {
  804. if (_tmp[i].uid == file.uid) {
  805. _tmp.splice(i, 1);
  806. break;
  807. }
  808. this.fileList1 = _tmp;
  809. }
  810. },
  811. handleCurrentChange(val) {
  812. // console.log(`当前页: ${val}`);
  813. this.page = val;
  814. this.getCourse();
  815. },
  816. init() { },
  817. handleClose(done) {
  818. done();
  819. },
  820. handleRemove(file, fileList) {
  821. console.log(file, fileList);
  822. },
  823. handlePictureCardPreview(file) {
  824. this.dialogImageUrl = file.url;
  825. this.dialogVisible1 = true;
  826. },
  827. onExceed() {
  828. this.$message.error("课程海报仅支持上传一张,请删除后再进行上传");
  829. },
  830. //uuid生成
  831. guid() {
  832. return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
  833. /[xy]/g,
  834. function (c) {
  835. var r = (Math.random() * 16) | 0,
  836. v = c == "x" ? r : (r & 0x3) | 0x8;
  837. return v.toString(16);
  838. }
  839. );
  840. },
  841. time() {
  842. if (!this.now) {
  843. this.now = new Date().getTime();
  844. return true;
  845. } else {
  846. let time = new Date().getTime();
  847. if (time - this.now > 3000) {
  848. this.now = time;
  849. return true;
  850. } else {
  851. return false;
  852. }
  853. }
  854. },
  855. searchCourse() {
  856. this.page = 1;
  857. this.getCourse();
  858. },
  859. clear() {
  860. for (var i = 0; i < this.CourseType[0].length; i++) {
  861. this.courseTypeId[this.CourseType[0][i].id] = "";
  862. }
  863. this.getCourse();
  864. },
  865. getCourse2(typeName, ftypeId, typeid, type) {
  866. this.page = 1;
  867. if (typeid == "34628934-d02f-11ec-8c78-005056b86db5" || ftypeId == '34628934-d02f-11ec-8c78-005056b86db5' || typeid == "34628934-d02f-11ec-8c78-005056b86ac5" || ftypeId == "34628934-d02f-11ec-8c78-005056b86ac5") {
  868. if (type == 1) {
  869. if (this.typeE.indexOf(typeid) != -1) {
  870. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  871. return;
  872. } else {
  873. this.typeE.splice(this.typeE.indexOf(typeid), 1);
  874. }
  875. } else {
  876. this.typeE.push(typeid);
  877. if (this.typea != "") {
  878. this.typea = "";
  879. }
  880. }
  881. } else {
  882. if (this.typea == typeid) {
  883. this.typea = "";
  884. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  885. this.typeE.push(ftypeId);
  886. }
  887. } else {
  888. this.typea = typeid;
  889. if (this.typeE.indexOf(ftypeId) != -1) {
  890. this.typeE.splice(this.typeE.indexOf(ftypeId), 1);
  891. }
  892. }
  893. }
  894. } else if (typeName == "专栏") {
  895. if (type == 1) {
  896. if (this.typeE.indexOf(typeid) != -1) {
  897. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  898. return;
  899. } else {
  900. this.typeE.splice(this.typeE.indexOf(typeid), 1);
  901. }
  902. } else {
  903. this.typeE.push(typeid);
  904. if (this.typeb != "") {
  905. this.typeb = "";
  906. }
  907. }
  908. } else {
  909. if (this.typeb == typeid) {
  910. this.typeb = "";
  911. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  912. this.typeE.push(ftypeId);
  913. }
  914. } else {
  915. this.typeb = typeid;
  916. if (this.typeE.indexOf(ftypeId) != -1) {
  917. this.typeE.splice(this.typeE.indexOf(ftypeId), 1);
  918. }
  919. }
  920. }
  921. } else if (typeName == "栏目") {
  922. if (type == 1) {
  923. if (this.typeE.indexOf(typeid) != -1) {
  924. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  925. return;
  926. } else {
  927. this.typeE.splice(this.typeE.indexOf(typeid), 1);
  928. }
  929. } else {
  930. this.typeE.push(typeid);
  931. if (this.typeb != "") {
  932. this.typeb = "";
  933. }
  934. }
  935. } else {
  936. if (this.typeb == typeid) {
  937. this.typeb = "";
  938. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  939. this.typeE.push(ftypeId);
  940. }
  941. } else {
  942. this.typeb = typeid;
  943. if (this.typeE.indexOf(ftypeId) != -1) {
  944. this.typeE.splice(this.typeE.indexOf(ftypeId), 1);
  945. }
  946. }
  947. }
  948. } else if (typeid == "34629bcc-d02f-11ec-8c78-005056b86db5" || ftypeId == '34629bcc-d02f-11ec-8c78-005056b86db5') {
  949. if (type == 1) {
  950. if (this.typeE.indexOf(typeid) != -1) {
  951. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  952. return;
  953. } else {
  954. this.typeE.splice(this.typeE.indexOf(typeid), 1);
  955. }
  956. } else {
  957. this.typeE.push(typeid);
  958. if (this.typeb != "") {
  959. this.typeb = "";
  960. }
  961. }
  962. } else {
  963. if (this.typeb == typeid) {
  964. this.typeb = "";
  965. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  966. this.typeE.push(ftypeId);
  967. }
  968. } else {
  969. this.typeb = typeid;
  970. if (this.typeE.indexOf(ftypeId) != -1) {
  971. this.typeE.splice(this.typeE.indexOf(ftypeId), 1);
  972. }
  973. }
  974. }
  975. } else if (typeName == "学院") {
  976. if (type == 1) {
  977. if (this.typeE.indexOf(typeid) != -1) {
  978. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  979. return;
  980. } else {
  981. this.typeE.splice(this.typeE.indexOf(typeid), 1);
  982. }
  983. } else {
  984. this.typeE.push(typeid);
  985. if (this.typeb != "") {
  986. this.typeb = "";
  987. }
  988. }
  989. } else {
  990. if (this.typeb == typeid) {
  991. this.typeb = "";
  992. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  993. this.typeE.push(ftypeId);
  994. }
  995. } else {
  996. this.typeb = typeid;
  997. if (this.typeE.indexOf(ftypeId) != -1) {
  998. this.typeE.splice(this.typeE.indexOf(ftypeId), 1);
  999. }
  1000. }
  1001. }
  1002. } else if (typeid == "34629907-d02f-11ec-8c78-005056b86db5" || ftypeId == '34629907-d02f-11ec-8c78-005056b86db5' || typeid == "34629907-d02f-11ec-8c78-005056b86ac5" || ftypeId == "34629907-d02f-11ec-8c78-005056b86ac5") {
  1003. if (type == 1) {
  1004. if (this.typeE.indexOf(typeid) != -1) {
  1005. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  1006. return;
  1007. } else {
  1008. this.typeE.splice(this.typeE.indexOf(typeid), 1);
  1009. }
  1010. } else {
  1011. this.typeE.push(typeid);
  1012. if (this.typed != "") {
  1013. this.typed = "";
  1014. }
  1015. }
  1016. } else {
  1017. if (this.typed == typeid) {
  1018. this.typed = "";
  1019. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  1020. this.typeE.push(ftypeId);
  1021. }
  1022. } else {
  1023. this.typed = typeid;
  1024. if (this.typeE.indexOf(ftypeId) != -1) {
  1025. this.typeE.splice(this.typeE.indexOf(ftypeId), 1);
  1026. }
  1027. }
  1028. }
  1029. }
  1030. // this.loading = true;
  1031. this.getCourse();
  1032. },
  1033. getCourse() {
  1034. if (!this.loading) {
  1035. this.loading = this.openLoading(
  1036. document.querySelector(".student_table")
  1037. );
  1038. }
  1039. // var typeE = [];
  1040. // var typea, typeb, typec, typed;
  1041. // if (this.isChoose == 1) {
  1042. // for (var i = 0; i < this.CourseType[0].length; i++) {
  1043. // if (this.courseTypeId[this.CourseType[0][i].id] == "1") {
  1044. // typeE.push(this.CourseType[0][i].id);
  1045. // } else if (this.courseTypeId[this.CourseType[0][i].id] != "") {
  1046. // if (this.CourseType[0][i].name == "年级") {
  1047. // typea = this.courseTypeId[this.CourseType[0][i].id];
  1048. // } else if (this.CourseType[0][i].name == "专栏") {
  1049. // typeb = this.courseTypeId[this.CourseType[0][i].id];
  1050. // } else if (this.CourseType[0][i].name == "栏目") {
  1051. // typeb = this.courseTypeId[this.CourseType[0][i].id];
  1052. // } else if (this.CourseType[0][i].name == "学院") {
  1053. // typeb = this.courseTypeId[this.CourseType[0][i].id];
  1054. // } else if (this.CourseType[0][i].name == "主题") {
  1055. // typeb = this.courseTypeId[this.CourseType[0][i].id];
  1056. // } else if (this.CourseType[0][i].name == "新技能") {
  1057. // typec = this.courseTypeId[this.CourseType[0][i].id];
  1058. // } else if (this.CourseType[0][i].name == "学科") {
  1059. // typed = this.courseTypeId[this.CourseType[0][i].id];
  1060. // }
  1061. // this.courseTypeSon.push(
  1062. // this.courseTypeId[this.CourseType[0][i].id]
  1063. // );
  1064. // }
  1065. // }
  1066. // }
  1067. console.log("typea", this.typea);
  1068. this.isLoading = true;
  1069. let params = {
  1070. type: this.groupA,
  1071. uid: this.userid,
  1072. oid: this.oid,
  1073. org: this.org,
  1074. typea: this.typea != undefined ? this.typea : "",
  1075. typeb: this.typeb != undefined ? this.typeb : "",
  1076. typec: "",
  1077. typed: this.typed != undefined ? this.typed : "",
  1078. typeE: this.typeE.join(","),
  1079. cu: "",
  1080. cn: this.courseName,
  1081. page: this.page,
  1082. pageSize: this.pageSize,
  1083. };
  1084. this.ajax
  1085. .get(this.$store.state.api + "selectCourseNew2", params)
  1086. .then((res) => {
  1087. this.loading.close();
  1088. this.loading = "";
  1089. this.isLoading = false;
  1090. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  1091. this.course = res.data[0];
  1092. })
  1093. .catch((err) => {
  1094. console.error(err);
  1095. });
  1096. },
  1097. getTypeName() {
  1098. this.$forceUpdate();
  1099. this.page = 1;
  1100. this.isChoose = 1;
  1101. this.getCourse();
  1102. },
  1103. // searchCourse() {
  1104. // this.isLoading = true;
  1105. // let params = {
  1106. // cu: "",
  1107. // cn: this.courseName,
  1108. // page: this.page,
  1109. // };
  1110. // this.ajax
  1111. // .get(this.$store.state.api + "searchCourse", params)
  1112. // .then((res) => {
  1113. // this.isLoading = false;
  1114. // this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  1115. // this.course = res.data[0];
  1116. // })
  1117. // .catch((err) => {
  1118. // this.isLoading = false;
  1119. // console.error(err);
  1120. // });
  1121. // },
  1122. deleteCourse(cid) {
  1123. // if (this.time()) {
  1124. this.$confirm("确定删除此课程吗?", "提示", {
  1125. confirmButtonText: "确定",
  1126. cancelButtonText: "取消",
  1127. type: "warning",
  1128. })
  1129. .then(() => {
  1130. const loading = this.openLoading(
  1131. document.querySelector(".student_table")
  1132. );
  1133. this.isLoading = true;
  1134. let params = {
  1135. cid: cid,
  1136. };
  1137. this.ajax
  1138. .get(this.$store.state.api + "deleteCourse", params)
  1139. .then((res) => {
  1140. loading.close();
  1141. this.isLoading = false;
  1142. this.$message.success("删除成功");
  1143. this.getCourse();
  1144. })
  1145. .catch((err) => {
  1146. console.error(err);
  1147. });
  1148. })
  1149. .catch(() => {
  1150. loading.close();
  1151. this.isLoading = false;
  1152. return;
  1153. });
  1154. // }
  1155. },
  1156. selectAllType() {
  1157. let params = {
  1158. org: this.org && this.org != "" ? this.org : "",
  1159. oid: this.oid && this.oid != "" ? this.oid : "",
  1160. stand: "cn"
  1161. };
  1162. this.ajax
  1163. .get(this.$store.state.api + "selectAllTypeStand", params)
  1164. .then((res) => {
  1165. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  1166. res.data[0] = [...res.data[0], ...res.data[4]]
  1167. }
  1168. this.CourseType = res.data;
  1169. this.CourseType2 = [
  1170. { name: "智见课程", id: [] },
  1171. { name: "智行课程", id: [] },
  1172. { name: "智创课程", id: [] },
  1173. ];
  1174. for (var cti = 0; cti < res.data[0].length; cti++) {
  1175. if (
  1176. res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" ||
  1177. res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5"
  1178. ) {
  1179. this.CourseType2[0].id.push(res.data[0][cti].id);
  1180. } else if (res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86ac5" ||
  1181. res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86ac5") {
  1182. this.CourseType2[1].id.push(res.data[0][cti].id);
  1183. } else if (res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5") {
  1184. this.CourseType2[2].id.push(res.data[0][cti].id);
  1185. }
  1186. if (res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86ac5") {
  1187. res.data[0][cti].name = "年级";
  1188. } else if (res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86ac5") {
  1189. res.data[0][cti].name = "学科";
  1190. } else if (res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5") {
  1191. res.data[0][cti].name = "主题";
  1192. }
  1193. }
  1194. for (var i = 0; i < res.data[0].length; i++) {
  1195. if (!this.cid) {
  1196. this.courseTypeId[res.data[0][i].id] = [];
  1197. }
  1198. if (!this.CourseTypeJson[res.data[0][i].id]) {
  1199. this.CourseTypeJson[res.data[0][i].id] = [];
  1200. }
  1201. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  1202. if (res.data[0][i].name == "栏目") {
  1203. this.CourseType[0][i].name = "主题";
  1204. }
  1205. }
  1206. if (res.data[2].length == 0 && res.data[3].length == 0) {
  1207. for (var j = 0; j < res.data[1].length; j++) {
  1208. if (res.data[0][i].id == res.data[1][j].pid) {
  1209. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  1210. }
  1211. }
  1212. } else {
  1213. if (res.data[2].length > 0) {
  1214. for (var j = 0; j < res.data[2].length; j++) {
  1215. if (res.data[0][i].id == res.data[2][j].pid) {
  1216. this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
  1217. }
  1218. }
  1219. }
  1220. if (res.data[3].length > 0) {
  1221. for (var j = 0; j < res.data[3].length; j++) {
  1222. if (res.data[0][i].id == res.data[3][j].pid) {
  1223. this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
  1224. }
  1225. }
  1226. }
  1227. }
  1228. }
  1229. })
  1230. .catch((err) => {
  1231. console.error(err);
  1232. });
  1233. },
  1234. selectType() {
  1235. this.ajax
  1236. .get(this.$store.state.api + "selectType")
  1237. .then((res) => {
  1238. this.CourseType = res.data;
  1239. for (var i = 0; i < res.data[0].length; i++) {
  1240. if (!this.cid) {
  1241. this.courseTypeId[res.data[0][i].id] = "";
  1242. }
  1243. // if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  1244. // if (res.data[0][i].name == "栏目") {
  1245. // this.CourseType[0][i].name = "主题";
  1246. // }
  1247. // }
  1248. for (var j = 0; j < res.data[1].length; j++) {
  1249. if (res.data[0][i].id == res.data[1][j].pid) {
  1250. if (!this.CourseTypeJson[res.data[0][i].id]) {
  1251. this.CourseTypeJson[res.data[0][i].id] = [];
  1252. }
  1253. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); //去除公共分类
  1254. }
  1255. }
  1256. }
  1257. this.selectTypeByOid();
  1258. this.selectTypeByOrg();
  1259. })
  1260. .catch((err) => {
  1261. console.error(err);
  1262. });
  1263. },
  1264. selectTypeByOid() {
  1265. let params = {
  1266. oid: this.oid,
  1267. };
  1268. this.ajax
  1269. .get(this.$store.state.api + "selectTypeByOid", params)
  1270. .then((res) => {
  1271. for (var i = 0; i < res.data[0].length; i++) {
  1272. for (var j = 0; j < res.data[1].length; j++) {
  1273. if (res.data[0][i].id == res.data[1][j].pid) {
  1274. if (!this.CourseTypeJson[res.data[0][i].id]) {
  1275. this.CourseTypeJson[res.data[0][i].id] = [];
  1276. }
  1277. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  1278. }
  1279. }
  1280. }
  1281. this.$forceUpdate();
  1282. })
  1283. .catch((err) => {
  1284. console.error(err);
  1285. });
  1286. },
  1287. selectTypeByOrg() {
  1288. let params = {
  1289. oid: this.org,
  1290. };
  1291. this.ajax
  1292. .get(this.$store.state.api + "selectTypeByOrg", params)
  1293. .then((res) => {
  1294. for (var i = 0; i < res.data[0].length; i++) {
  1295. for (var j = 0; j < res.data[1].length; j++) {
  1296. if (res.data[0][i].id == res.data[1][j].pid) {
  1297. if (!this.CourseTypeJson[res.data[0][i].id]) {
  1298. this.CourseTypeJson[res.data[0][i].id] = [];
  1299. }
  1300. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  1301. }
  1302. }
  1303. }
  1304. this.$forceUpdate();
  1305. })
  1306. .catch((err) => {
  1307. console.error(err);
  1308. });
  1309. },
  1310. openCourse() {
  1311. this.dialogVisibleCourse = true;
  1312. this.getTeamCourse();
  1313. },
  1314. getTeamCourse() {
  1315. let params = {
  1316. uid: this.userid,
  1317. oid: this.oid,
  1318. };
  1319. this.ajax
  1320. .get(this.$store.state.api + "selectCourseTeam", params)
  1321. .then((res) => {
  1322. this.courseTeam = res.data[0];
  1323. })
  1324. .catch((err) => {
  1325. console.error(err);
  1326. });
  1327. },
  1328. search() {
  1329. this.page = 1;
  1330. this.getCourse();
  1331. },
  1332. checkProblem(res) {
  1333. this.problemCourse = res;
  1334. this.dialogVisible = true;
  1335. },
  1336. copyCourse(cid) {
  1337. let params = [
  1338. {
  1339. cid: cid,
  1340. uid: this.userid,
  1341. },
  1342. ];
  1343. this.ajax
  1344. .post(this.$store.state.api + "copyCourse", params)
  1345. .then((res) => {
  1346. this.page = 1;
  1347. if (this.role == "1") {
  1348. this.groupA = "4";
  1349. } else {
  1350. this.groupA = "0";
  1351. }
  1352. this.$message.success("复制成功")
  1353. this.clear();
  1354. })
  1355. .catch((err) => {
  1356. console.error(err);
  1357. });
  1358. },
  1359. },
  1360. created() {
  1361. if (this.role == "1") {
  1362. this.groupA = "4";
  1363. }
  1364. this.getAIJ();
  1365. this.page = 1;
  1366. // this.selectType();
  1367. this.selectAllType();
  1368. this.getCourse();
  1369. let _this = this
  1370. window.goToCourse3 = function(){
  1371. _this.goToCourse3()
  1372. }
  1373. window.goToCourse = function(){
  1374. _this.goToCourse()
  1375. }
  1376. },
  1377. };
  1378. </script>
  1379. <style scoped>
  1380. @media screen and (max-width: 1380px) {
  1381. .out_box {
  1382. width: calc(100% / 4 - (15px * 3) / 4) !important;
  1383. }
  1384. .out_box:nth-child(5n) {
  1385. margin-right: 15px !important;
  1386. }
  1387. .out_box:nth-child(4n) {
  1388. margin-right: 0 !important;
  1389. }
  1390. }
  1391. @media screen and (max-width: 1080px) {
  1392. .out_box {
  1393. width: calc(100% / 3 - (15px * 2) / 3) !important;
  1394. }
  1395. .out_box:nth-child(5n) {
  1396. margin-right: 15px !important;
  1397. }
  1398. .out_box:nth-child(4n) {
  1399. margin-right: 15px !important;
  1400. }
  1401. .out_box:nth-child(3n) {
  1402. margin-right: 0 !important;
  1403. }
  1404. }
  1405. .dialog_diy>>>.el-dialog__header {
  1406. background: #3d67bc !important;
  1407. padding: 15px 20px;
  1408. }
  1409. .dialog_diy>>>.el-dialog__title {
  1410. color: #fff;
  1411. }
  1412. .dialog_diy>>>.el-dialog__headerbtn {
  1413. top: 19px;
  1414. }
  1415. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  1416. color: #fff;
  1417. }
  1418. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  1419. color: #fff;
  1420. }
  1421. .student_head>>>.el-button--primary {
  1422. background-color: #2268bc;
  1423. }
  1424. .xls_button {
  1425. font-size: 14px;
  1426. cursor: pointer;
  1427. text-decoration: underline;
  1428. color: rgb(34, 104, 188);
  1429. }
  1430. .student_head {
  1431. display: flex;
  1432. justify-content: space-between;
  1433. align-items: baseline;
  1434. flex-direction: row;
  1435. flex-wrap: wrap;
  1436. }
  1437. .top {
  1438. display: flex;
  1439. justify-content: space-between;
  1440. width: 100% !important;
  1441. box-sizing: border-box;
  1442. margin: 0px auto;
  1443. padding: 10px 5px;
  1444. height: 54px;
  1445. }
  1446. .bgColor {
  1447. background: #0061FF;
  1448. }
  1449. .student_search {
  1450. display: flex;
  1451. align-items: center;
  1452. width: calc(100% / 3);
  1453. }
  1454. .student_search span {
  1455. margin: 0 10px 0 0;
  1456. min-width: 65px;
  1457. }
  1458. .student_button {
  1459. display: flex;
  1460. /* overflow: hidden; */
  1461. height: 40px;
  1462. }
  1463. .upload-demo {
  1464. display: flex;
  1465. flex-direction: column;
  1466. align-items: end;
  1467. /* position: relative; */
  1468. width: 100px;
  1469. overflow: hidden;
  1470. }
  1471. .student_table {
  1472. /* padding: 20px 0; */
  1473. height: 100%;
  1474. /* overflow: auto; */
  1475. min-height: 360px;
  1476. }
  1477. .student_empty {
  1478. display: flex;
  1479. justify-content: center;
  1480. align-items: center;
  1481. }
  1482. .el-table>>>.even_row {
  1483. background-color: #f1f1f1;
  1484. }
  1485. .time {
  1486. font-size: 13px;
  1487. color: #999;
  1488. }
  1489. .course_button {
  1490. padding: 10px 20px;
  1491. }
  1492. .course_button_box {
  1493. display: flex;
  1494. margin-top: 5px;
  1495. justify-content: space-between;
  1496. }
  1497. .course_rate {
  1498. margin-top: 5px;
  1499. }
  1500. .course_view {
  1501. display: flex;
  1502. align-items: center;
  1503. margin: 5px 0 0 0;
  1504. }
  1505. .course_view i {
  1506. background-image: url("../../assets/liulan.png");
  1507. width: 25px;
  1508. height: 25px;
  1509. background-size: 100% 100%;
  1510. /* margin-top: 1px; */
  1511. line-height: 25px;
  1512. vertical-align: text-top;
  1513. background-repeat: no-repeat;
  1514. }
  1515. .image {
  1516. width: 100%;
  1517. height: 150px;
  1518. display: block;
  1519. }
  1520. .course_box {
  1521. display: flex;
  1522. flex-wrap: wrap;
  1523. }
  1524. .student_page {
  1525. width: 100%;
  1526. margin: 0 auto;
  1527. background: #e6eaf0;
  1528. }
  1529. .course_create_box {
  1530. font-size: 18px;
  1531. }
  1532. .course_name {
  1533. margin-top: 10px;
  1534. }
  1535. .course_name span {
  1536. margin-bottom: 10px;
  1537. display: block;
  1538. }
  1539. .homework_box {
  1540. display: flex;
  1541. align-items: center;
  1542. flex-wrap: wrap;
  1543. }
  1544. .course_homework {
  1545. width: 130px;
  1546. display: flex;
  1547. justify-content: center;
  1548. flex-direction: column;
  1549. align-items: center;
  1550. margin: 0 10px 10px 0;
  1551. }
  1552. .course_type {
  1553. margin-top: 10px;
  1554. display: flex;
  1555. }
  1556. .course_type1 span {
  1557. margin-bottom: 10px;
  1558. display: block;
  1559. }
  1560. .course_type2 {
  1561. margin-left: 20px;
  1562. }
  1563. .course_type2 span {
  1564. margin-bottom: 10px;
  1565. display: block;
  1566. }
  1567. .course_empty {
  1568. color: rgb(110, 110, 110);
  1569. width: 100%;
  1570. height: 100%;
  1571. display: flex;
  1572. align-items: center;
  1573. justify-content: center;
  1574. }
  1575. .el_cards>>>.el-card__body {
  1576. height: 100%;
  1577. }
  1578. .courseBtnBox {
  1579. display: flex;
  1580. flex-direction: column;
  1581. justify-content: space-between;
  1582. height: calc(100% - 170px);
  1583. padding: 10px;
  1584. }
  1585. .wordUpload {
  1586. display: flex;
  1587. }
  1588. .wordUpload>.buttonUp {
  1589. margin-right: 5px;
  1590. }
  1591. .out_box {
  1592. display: flex;
  1593. flex-direction: column;
  1594. flex-wrap: nowrap;
  1595. width: calc(100% / 5 - (15px * 4) / 5);
  1596. /* width: 280px; */
  1597. background: #fff;
  1598. margin-right: 15px;
  1599. /* border: 1px solid #ccc; */
  1600. height: fit-content;
  1601. box-sizing: border-box;
  1602. border-radius: 0px 0px 5px 5px;
  1603. /* overflow: hidden; */
  1604. margin-bottom: 15px;
  1605. position: relative;
  1606. border-radius: 8px;
  1607. box-sizing: border-box;
  1608. overflow: hidden;
  1609. border: 1px solid #3682fc00;
  1610. }
  1611. .out_box:hover {
  1612. border: 1px solid #3681FC;
  1613. }
  1614. .out_box:nth-child(5n) {
  1615. margin-right: 0;
  1616. }
  1617. .bottom_box {
  1618. display: flex;
  1619. padding: 10px;
  1620. flex-direction: column;
  1621. box-sizing: border-box;
  1622. height: 121px;
  1623. flex-wrap: nowrap;
  1624. justify-content: space-evenly;
  1625. }
  1626. .bottom_box>div:nth-child(1) {
  1627. width: 100%;
  1628. /* overflow: hidden;
  1629. text-overflow: ellipsis;
  1630. white-space: nowrap;
  1631. font-weight: bold; */
  1632. display: flex;
  1633. align-items: center;
  1634. justify-content: space-between;
  1635. }
  1636. .bottom_box>div:nth-child(1)>span:nth-child(1) {
  1637. max-width: 100%;
  1638. overflow: hidden;
  1639. text-overflow: ellipsis;
  1640. white-space: nowrap;
  1641. font-weight: bold;
  1642. }
  1643. .bottom_box>div:nth-child(1)>span:nth-child(2) {
  1644. min-width: fit-content;
  1645. font-size: 14px;
  1646. color: #8c8c8c;
  1647. }
  1648. .tup {
  1649. width: 100%;
  1650. height: 180px;
  1651. margin: 0 auto;
  1652. overflow: hidden;
  1653. display: flex;
  1654. align-items: center;
  1655. padding: 10px;
  1656. box-sizing: border-box;
  1657. }
  1658. .tup>img {
  1659. width: 100%;
  1660. height: 100%;
  1661. object-fit: cover;
  1662. }
  1663. .kc_time {
  1664. margin-top: 8px;
  1665. font-size: 14px;
  1666. color: #717C8D;
  1667. }
  1668. .kc_time+.kc_time {
  1669. margin-top: 0;
  1670. }
  1671. .kc_t {
  1672. margin-top: 5px;
  1673. width: 100%;
  1674. white-space: nowrap;
  1675. overflow: hidden;
  1676. text-overflow: ellipsis;
  1677. display: flex;
  1678. align-items: center;
  1679. justify-content: space-between;
  1680. }
  1681. .kc_t>span:nth-child(1) {
  1682. max-width: 100%;
  1683. overflow: hidden;
  1684. text-overflow: ellipsis;
  1685. white-space: nowrap;
  1686. }
  1687. .kc_t>span:nth-child(2) {
  1688. min-width: fit-content;
  1689. font-size: 14px;
  1690. color: #8c8c8c;
  1691. }
  1692. .three_bottom {
  1693. display: flex;
  1694. flex-direction: row;
  1695. /* justify-content: space-around; */
  1696. justify-content: flex-end;
  1697. height: 45px;
  1698. align-items: center;
  1699. background: #fff;
  1700. font-size: 14px;
  1701. border-top: 1px solid #ddd;
  1702. box-sizing: border-box;
  1703. }
  1704. .t_b_Item{
  1705. width: 30px;
  1706. height: 30px;
  1707. background-color: white;
  1708. border-radius: 2px;
  1709. display: flex;
  1710. justify-content: center;
  1711. align-items: center;
  1712. transition: .3s;
  1713. margin-right: 10px;
  1714. cursor: pointer;
  1715. }
  1716. .t_b_Item:hover{
  1717. background-color: #E8E8E8;
  1718. }
  1719. .t_b_Item>img{
  1720. width: 80%;
  1721. height: 80%;
  1722. }
  1723. /* .three_bottom>div {
  1724. cursor: pointer;
  1725. width: 100%;
  1726. text-align: center;
  1727. }
  1728. .three_bottom>div+div {
  1729. border-left: 1px solid #ddd;
  1730. } */
  1731. /* .three_bottom>div:hover {
  1732. color: #3681FC;
  1733. font-weight: bold;
  1734. } */
  1735. .three_bottom .deleteB {
  1736. color: #E96E6E;
  1737. }
  1738. .three_bottom .deleteB:hover {
  1739. color: #E96E6E;
  1740. font-weight: bold;
  1741. }
  1742. .head_left {
  1743. display: flex;
  1744. }
  1745. .student_input>>>.el-input__inner {
  1746. height: 40px;
  1747. width: 190px;
  1748. font-size: 13px;
  1749. padding: 0 10px;
  1750. }
  1751. .course_button {
  1752. color: #fff;
  1753. background: #2268bc;
  1754. width: 75px;
  1755. height: 40px;
  1756. padding: 0 !important;
  1757. font-size: 12px;
  1758. line-height: 40px;
  1759. }
  1760. /* .all_choose {
  1761. margin: 15px 0 10px;
  1762. height: 20%;
  1763. display: flex;
  1764. flex-direction: row;
  1765. align-items: center;
  1766. max-width: calc(100% / 3);
  1767. }
  1768. .all_choose > span {
  1769. width: 50px;
  1770. display: block;
  1771. }
  1772. .choose {
  1773. display: flex;
  1774. flex-direction: row;
  1775. flex-wrap: wrap;
  1776. align-content: space-between;
  1777. height: 100%;
  1778. justify-content: flex-start;
  1779. width: 60%;
  1780. min-width: 868px;
  1781. align-items: center;
  1782. } */
  1783. /* .choose > div:nth-child(2) {
  1784. margin-left: 1%;
  1785. width: 32.33333%;
  1786. }
  1787. .choose > div:nth-child(4) {
  1788. margin-right: 1%;
  1789. width: 32.33333%;
  1790. }
  1791. .choose > div:nth-child(5) {
  1792. margin: 5px 0 0 1%;
  1793. }
  1794. .choose > div:nth-child(4) > span {
  1795. width: 74px !important;
  1796. min-width: 74px;
  1797. }
  1798. .choose > div:nth-child(4) >>> .el-select {
  1799. width: 217.5px;
  1800. min-width: 215.06px;
  1801. } */
  1802. .clear {
  1803. width: 70px;
  1804. height: 35px;
  1805. background: #0061FF;
  1806. color: #fff;
  1807. text-align: center;
  1808. border-radius: 5px;
  1809. line-height: 35px;
  1810. cursor: pointer;
  1811. margin-left: 20px;
  1812. }
  1813. .ct_box {
  1814. height: 500px;
  1815. overflow: auto;
  1816. display: flex;
  1817. flex-wrap: wrap;
  1818. }
  1819. .myCourse {
  1820. position: absolute;
  1821. background: #3c3c3c;
  1822. width: 70px;
  1823. height: 30px;
  1824. border-radius: 5px;
  1825. color: #fff;
  1826. font-size: 14px;
  1827. text-align: center;
  1828. line-height: 30px;
  1829. top: 5px;
  1830. left: 5px;
  1831. }
  1832. .xtCourse {
  1833. position: absolute;
  1834. background: #0061FF;
  1835. width: 70px;
  1836. height: 30px;
  1837. border-radius: 5px;
  1838. color: #fff;
  1839. font-size: 14px;
  1840. text-align: center;
  1841. line-height: 30px;
  1842. top: 5px;
  1843. left: 5px;
  1844. }
  1845. .sub_head {
  1846. position: relative;
  1847. }
  1848. .sub_head::after {
  1849. content: "";
  1850. width: 100%;
  1851. background: #5a9cea;
  1852. height: 2px;
  1853. position: absolute;
  1854. left: 0;
  1855. bottom: -10px;
  1856. }
  1857. .subClick {
  1858. /* font-size: 16px; */
  1859. font-size: 26px;
  1860. cursor: pointer;
  1861. margin-left: 17.5px;
  1862. /* color: #ab582f; */
  1863. /* color: #409eff; */
  1864. color: #999;
  1865. }
  1866. .subClick:hover {
  1867. color: #000;
  1868. }
  1869. .more {
  1870. position: relative;
  1871. }
  1872. .more:hover div {
  1873. display: block;
  1874. color: #000;
  1875. }
  1876. .more div {
  1877. position: absolute;
  1878. bottom: 0px;
  1879. transform: translate(-50%, 100%);
  1880. background: #f5f4f4;
  1881. padding: 10px 20px;
  1882. z-index: 99;
  1883. width: 50px;
  1884. border-radius: 5px;
  1885. box-shadow: 0 0 3px 3px #80808020;
  1886. display: none;
  1887. }
  1888. .more div>span+span {
  1889. margin-top: 10px;
  1890. }
  1891. .more div>span {
  1892. display: block;
  1893. width: 100%;
  1894. text-align: center;
  1895. }
  1896. .more div>span:hover {
  1897. color: #79a2ff;
  1898. }
  1899. .line {
  1900. width: 100%;
  1901. height: 15px;
  1902. background: #e6eaf0;
  1903. }
  1904. .reBox {
  1905. width: 100%;
  1906. /* padding-left: 20px; */
  1907. margin: 0 auto;
  1908. box-sizing: border-box;
  1909. overflow: hidden;
  1910. padding: 10px 15px 0;
  1911. }
  1912. .reTop {
  1913. padding: 0 0 5px;
  1914. /* padding: 20px 0 0 0; */
  1915. /* border-bottom: 1px solid #eee; */
  1916. display: flex;
  1917. flex-direction: row;
  1918. flex-wrap: nowrap;
  1919. align-items: center;
  1920. justify-content: space-between;
  1921. }
  1922. .reTop>div:nth-child(1) {
  1923. font-weight: bold;
  1924. /* width: 40px; */
  1925. /* border-bottom: 1px solid #205cc6; */
  1926. /* padding-bottom: 20px; */
  1927. color: #205cc6;
  1928. /* font-size: 20px; */
  1929. }
  1930. .reTop .reTopCh {
  1931. display: flex;
  1932. }
  1933. .reTop .searchI {
  1934. display: flex;
  1935. flex-direction: row;
  1936. align-items: center;
  1937. border: 1px solid #ccced3;
  1938. width: 250px;
  1939. border-radius: 8px;
  1940. padding: 5px 0;
  1941. /* margin-bottom: 10px; */
  1942. background: #fafafa;
  1943. margin: 0 0 0 10px;
  1944. }
  1945. .search {
  1946. width: 20px;
  1947. padding: 0 5px;
  1948. display: flex;
  1949. align-items: center;
  1950. }
  1951. .search>img {
  1952. width: 100%;
  1953. height: 100%;
  1954. }
  1955. .sInput {
  1956. border: none;
  1957. width: 85%;
  1958. background: #fafafa;
  1959. }
  1960. .sInput:focus-visible {
  1961. outline: none;
  1962. }
  1963. .typeCss {
  1964. display: flex;
  1965. flex-direction: row;
  1966. flex-wrap: wrap;
  1967. justify-content: flex-start;
  1968. align-items: center;
  1969. }
  1970. .choose {
  1971. display: flex;
  1972. flex-direction: column;
  1973. flex-wrap: nowrap;
  1974. height: 100%;
  1975. justify-content: space-evenly;
  1976. align-items: flex-start;
  1977. padding: 10px 0;
  1978. }
  1979. .all_choose {
  1980. display: flex;
  1981. flex-direction: row;
  1982. align-items: baseline;
  1983. margin: 2px 0;
  1984. width: 100%;
  1985. }
  1986. .all_choose>span {
  1987. display: flex;
  1988. margin-right: 5px;
  1989. }
  1990. .all_choose>span>span {
  1991. min-width: 65px;
  1992. max-width: 65px;
  1993. display: block;
  1994. text-align-last: justify;
  1995. }
  1996. .all_choose>span::after {
  1997. content: ':';
  1998. }
  1999. .all_choose>span:nth-child(1) {
  2000. font-weight: bold;
  2001. }
  2002. .all_choose>>>.el-checkbox-group {
  2003. display: flex;
  2004. flex-direction: row;
  2005. width: 820px;
  2006. flex-wrap: wrap;
  2007. align-content: center;
  2008. justify-content: flex-start;
  2009. align-items: center;
  2010. margin-top: 3px;
  2011. }
  2012. .all_choose>.el-checkbox-group>>>.el-checkbox {
  2013. margin-bottom: 10px;
  2014. display: flex;
  2015. flex-direction: row;
  2016. align-items: center;
  2017. }
  2018. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label {
  2019. min-width: 80px;
  2020. overflow: hidden;
  2021. width: 80px;
  2022. text-overflow: ellipsis;
  2023. white-space: nowrap;
  2024. }
  2025. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label:hover {
  2026. width: auto;
  2027. }
  2028. .cName {
  2029. cursor: pointer;
  2030. margin: 0 10px 5px 0;
  2031. color: #b9b6b9;
  2032. min-width: 80px;
  2033. width: 80px;
  2034. white-space: nowrap;
  2035. overflow: hidden;
  2036. text-overflow: ellipsis;
  2037. }
  2038. .isCType {
  2039. color: #6282c2;
  2040. }
  2041. .pType_box {
  2042. margin-top: 0;
  2043. }
  2044. .pType_box>>>.el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner {
  2045. -webkit-box-shadow: none !important;
  2046. box-shadow: none !important;
  2047. }
  2048. .buttonBox {
  2049. position: absolute;
  2050. bottom: -0;
  2051. transform: translateY(100%);
  2052. background: #fff;
  2053. border-radius: 5px;
  2054. box-shadow: 0 0 3px 1px #e3e3e3;
  2055. width: 100%;
  2056. }
  2057. .buttonBox>div {
  2058. height: 40px;
  2059. line-height: 40px;
  2060. width: 100%;
  2061. text-align: center;
  2062. color: #000;
  2063. box-sizing: border-box;
  2064. }
  2065. .buttonBox>div+div {
  2066. border-top: 1px solid #e0e0e0;
  2067. }
  2068. .buttonBox>div:hover {
  2069. background: #f6f8ff;
  2070. }</style>