group.vue 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353
  1. <template>
  2. <div>
  3. <div style="overflow: auto">
  4. <div class="g_d_btnBox">
  5. <!-- <div class="btn_left" v-if="type == 1 || type == 4">
  6. <div @click="setClassid('1')" :class="{ active: classid == '1' }" v-if="!classList.length">All</div>
  7. <div @click="setClassid(item.id)" :class="{ active: classid == item.id }"
  8. v-for="(item, index) in classList" :key="index">{{ item.name }}</div>
  9. </div>
  10. <div class="btn_left" v-if="type == 2">
  11. <div @click="setClassid('1')" :class="{ active: classid == '1' }" v-if="!classList.length">All</div>
  12. <div @click="setClassid(item.id)" :class="{ active: classid == item.id }"
  13. v-for="(item, index) in classList" :key="index">{{ item.name }}</div>
  14. </div> -->
  15. <div></div>
  16. <!-- || (courseDetail.course_teacher && courseDetail.course_teacher.indexOf(userid) != -1) -->
  17. <div class="btn_right"
  18. v-if="courseDetail.userid == userid">
  19. <div style="color: rgb(171 171 171); margin: 0 10px 0 0" v-show="false">
  20. 提示:开启【开放选座】,能够自由加入和退出小组。
  21. </div>
  22. <!-- 开放选座 -->
  23. <!-- <div type="primary" v-if="groupJson.islock == 1 && groupJson.group.length" class="returnBtn"
  24. style="background-color: #225bc7" @click="lockChair">
  25. 锁定位置
  26. </div>
  27. <div type="primary" v-else-if="groupJson.group.length" class="returnBtn"
  28. style="background-color: #225bc7" @click="lockChair">
  29. 解锁位置
  30. </div> -->
  31. <div class="group_switch" v-show="false">
  32. <span>开放选座</span>
  33. <el-switch v-model="islock" active-text="" class="switchCss" @change="lockChair"></el-switch>
  34. </div>
  35. <div class="group_switch" v-show="false">
  36. <span>开启分组</span>
  37. <el-switch v-model="isopen" class="switchCss" @change="openChair"></el-switch>
  38. </div>
  39. <div type="primary" @click="updateGroup" class="returnBtn" style="background-color: #225bc7">
  40. Create Group
  41. </div>
  42. <div type="primary" @click="deleteCourseGroup" class="returnBtn" style="background-color: #225bc7" >
  43. Delete Group
  44. </div>
  45. </div>
  46. <div class="btn_right"
  47. v-else>
  48. <div style="color: rgb(171 171 171); margin: 0 10px 0 0">
  49. Tip: Enabling the "Open Seat Selection" allows for free entry and exit from the group.
  50. </div>
  51. <div class="group_switch">
  52. <span>Open Seat Selection</span>
  53. <el-switch v-model="islock" active-text="" class="switchCss" @change="lockChair" disabled></el-switch>
  54. </div>
  55. </div>
  56. </div>
  57. <div style="min-height: 250px;">
  58. <div class="g_d_box" v-if="groupJson.group.length && isopen">
  59. <div class="g_d_group" v-for="(g, gindex) in groupJson.group" :key="gindex">
  60. <div class="g_d_group_chair">
  61. <div v-if="groupJson.number > 1">
  62. <span :class="{
  63. isChair:
  64. groupStudent[g.id] &&
  65. groupStudent[g.id][0],
  66. updateChair:
  67. courseDetail.userid == userid &&
  68. groupStudent[g.id] &&
  69. groupStudent[g.id][0] &&
  70. groupJson.islock == 2,
  71. }"><span class="updateChairBtn"
  72. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][0])">update</span></span><span>{{
  73. groupStudent[g.id] &&
  74. groupStudent[g.id][0]
  75. ? groupStudent[g.id] &&
  76. groupStudent[g.id][0].name
  77. : "Empty" }}</span>
  78. </div>
  79. <div v-if="groupJson.number > 4">
  80. <span :class="{
  81. isChair:
  82. groupStudent[g.id] &&
  83. groupStudent[g.id][4],
  84. updateChair:
  85. courseDetail.userid == userid &&
  86. groupStudent[g.id] &&
  87. groupStudent[g.id][4] &&
  88. groupJson.islock == 2,
  89. }"><span class="updateChairBtn"
  90. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][4])">update</span></span><span>{{
  91. groupStudent[g.id] &&
  92. groupStudent[g.id][4]
  93. ? groupStudent[g.id] &&
  94. groupStudent[g.id][4].name
  95. : "Empty" }}</span>
  96. </div>
  97. <div v-if="groupJson.number > 8">
  98. <span :class="{
  99. isChair:
  100. groupStudent[g.id] &&
  101. groupStudent[g.id][8],
  102. updateChair:
  103. courseDetail.userid == userid &&
  104. groupStudent[g.id] &&
  105. groupStudent[g.id][8] &&
  106. groupJson.islock == 2,
  107. }"><span class="updateChairBtn"
  108. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][8])">update</span></span><span>{{
  109. groupStudent[g.id] &&
  110. groupStudent[g.id][8]
  111. ? groupStudent[g.id] &&
  112. groupStudent[g.id][8].name
  113. : "Empty" }}</span>
  114. </div>
  115. </div>
  116. <div class="g_d_group_tableBox">
  117. <div class="g_d_group_chair2">
  118. <div v-if="groupJson.number > 2">
  119. <span :class="{
  120. isChair:
  121. groupStudent[g.id] &&
  122. groupStudent[g.id][2],
  123. updateChair:
  124. courseDetail.userid == userid &&
  125. groupStudent[g.id] &&
  126. groupStudent[g.id][2] &&
  127. groupJson.islock == 2,
  128. }"><span class="updateChairBtn"
  129. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][2])">update</span></span><span>{{
  130. groupStudent[g.id] &&
  131. groupStudent[g.id][2]
  132. ? groupStudent[g.id] &&
  133. groupStudent[g.id][2].name
  134. : "Empty" }}</span>
  135. </div>
  136. <div v-if="groupJson.number > 6">
  137. <span :class="{
  138. isChair:
  139. groupStudent[g.id] &&
  140. groupStudent[g.id][6],
  141. updateChair:
  142. courseDetail.userid == userid &&
  143. groupStudent[g.id] &&
  144. groupStudent[g.id][6] &&
  145. groupJson.islock == 2,
  146. }"><span class="updateChairBtn"
  147. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][6])">update</span></span><span>{{
  148. groupStudent[g.id] &&
  149. groupStudent[g.id][6]
  150. ? groupStudent[g.id] &&
  151. groupStudent[g.id][6].name
  152. : "Empty" }}</span>
  153. </div>
  154. </div>
  155. <div class="g_d_group_table">
  156. <div>
  157. {{ g.name }}
  158. </div>
  159. <div>
  160. <!-- && groupJson.islock == 2 -->
  161. <div v-if="courseDetail.userid == userid"
  162. @click="deleteGroupChair(g.id, gindex)">
  163. Remove Group Member
  164. </div>
  165. <div @click="selectGroup(g.id)"
  166. v-if="groupStudentUid && groupStudentUid[g.id].indexOf(userid) == -1 && courseDetail.userid !== userid">
  167. Join group
  168. </div>
  169. <div @click="
  170. exitGroup(groupStudent[g.id] &&
  171. groupStudent[g.id][
  172. groupStudentUid[g.id].indexOf(userid)
  173. ].id)
  174. "
  175. v-else-if="groupStudentUid && groupStudentUid[g.id].indexOf(userid) != -1">
  176. Leave Group
  177. </div>
  178. <div style="margin-top:10px"
  179. v-if="(courseDetail.userid == userid ) && groupStudent[g.id].length < groupJson.number"
  180. @click="addGroupStudent(g.id)">
  181. Add Group Member
  182. <!-- || (courseDetail.course_teacher && courseDetail.course_teacher.indexOf(userid) != -1) -->
  183. </div>
  184. </div>
  185. </div>
  186. <div class="g_d_group_chair2">
  187. <div v-if="groupJson.number > 3">
  188. <span :class="{
  189. isChair:
  190. groupStudent[g.id] &&
  191. groupStudent[g.id][3],
  192. updateChair:
  193. courseDetail.userid == userid &&
  194. groupStudent[g.id] &&
  195. groupStudent[g.id][3] &&
  196. groupJson.islock == 2,
  197. }"><span class="updateChairBtn"
  198. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][3])">update</span></span><span>{{
  199. groupStudent[g.id] &&
  200. groupStudent[g.id][3]
  201. ? groupStudent[g.id] &&
  202. groupStudent[g.id][3].name
  203. : "Empty" }}</span>
  204. </div>
  205. <div v-if="groupJson.number > 7">
  206. <span :class="{
  207. isChair:
  208. groupStudent[g.id] &&
  209. groupStudent[g.id][7],
  210. updateChair:
  211. courseDetail.userid == userid &&
  212. groupStudent[g.id] &&
  213. groupStudent[g.id][7] &&
  214. groupJson.islock == 2,
  215. }"><span class="updateChairBtn"
  216. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][7])">update</span></span><span>{{
  217. groupStudent[g.id] &&
  218. groupStudent[g.id][7]
  219. ? groupStudent[g.id] &&
  220. groupStudent[g.id][7].name
  221. : "Empty" }}</span>
  222. </div>
  223. </div>
  224. </div>
  225. <div class="g_d_group_chair">
  226. <div v-if="groupJson.number > 1">
  227. <span :class="{
  228. isChair:
  229. groupStudent[g.id] &&
  230. groupStudent[g.id][1],
  231. updateChair:
  232. courseDetail.userid == userid &&
  233. groupStudent[g.id] &&
  234. groupStudent[g.id][1] &&
  235. groupJson.islock == 2,
  236. }"><span class="updateChairBtn"
  237. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][1])">update</span></span><span>{{
  238. groupStudent[g.id] &&
  239. groupStudent[g.id][1]
  240. ? groupStudent[g.id] &&
  241. groupStudent[g.id][1].name
  242. : "Empty" }}</span>
  243. </div>
  244. <div v-if="groupJson.number > 5">
  245. <span :class="{
  246. isChair:
  247. groupStudent[g.id] &&
  248. groupStudent[g.id][5],
  249. updateChair:
  250. courseDetail.userid == userid &&
  251. groupStudent[g.id] &&
  252. groupStudent[g.id][5] &&
  253. groupJson.islock == 2,
  254. }"><span class="updateChairBtn"
  255. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][5])">update</span></span><span>{{
  256. groupStudent[g.id] &&
  257. groupStudent[g.id][5]
  258. ? groupStudent[g.id] &&
  259. groupStudent[g.id][5].name
  260. : "Empty" }}</span>
  261. </div>
  262. <div v-if="groupJson.number > 9">
  263. <span :class="{
  264. isChair:
  265. groupStudent[g.id] &&
  266. groupStudent[g.id][9],
  267. updateChair:
  268. courseDetail.userid == userid &&
  269. groupStudent[g.id] &&
  270. groupStudent[g.id][9] &&
  271. groupJson.islock == 2,
  272. }"><span class="updateChairBtn"
  273. @click="updateGroupChair(groupStudent[g.id] && groupStudent[g.id][9])">update</span></span><span>{{
  274. groupStudent[g.id] &&
  275. groupStudent[g.id][9]
  276. ? groupStudent[g.id] &&
  277. groupStudent[g.id][9].name
  278. : "Empty" }}</span>
  279. </div>
  280. </div>
  281. </div>
  282. </div>
  283. <div v-else-if="!groupJson.group.length" style="text-align: center;">{{ courseDetail.userid == userid ?
  284. "No groups available at the moment. Click the 'Create Group' button to set up groups" :
  285. "The teacher has not added groups yet" }}</div>
  286. <div v-else-if="!isopen" style="text-align: center;">{{ "Groups have been closed" }}</div>
  287. </div>
  288. </div>
  289. <el-dialog title="Group Settings" :visible.sync="dialogVisibleGroup2" :append-to-body="true" width="650px"
  290. :before-close="handleClose" class="dialog_diy">
  291. <div class="groupBox">
  292. <div v-if="groupJson2.group" class="groupContent">
  293. <div class="groupTitle">Group Names</div>
  294. <div v-for="(item, index) in groupJson2.group" :key="index" class="groupName">
  295. <span class="groupn">{{ index + 1 }}st Group Name:</span>
  296. <el-input v-model="item.name" placeholder="请输入名称..." style="width: 250px"></el-input>
  297. <div class="groupBtn">
  298. <el-button type="primary" size="small" @click="addGroup(index)"
  299. v-if="(groupJson2.group.length - 1) == index">
  300. Add</el-button>
  301. <el-button type="primary" size="small" @click="deleteGroup(index)"
  302. v-if="groupJson2.group && groupJson2.group.length > 1">delete</el-button>
  303. </div>
  304. </div>
  305. </div>
  306. <div class="groupContent">
  307. <div class="groupTitle">Group size</div>
  308. <el-input v-model="groupJson2.number" style="width:150px" placeholder="Enter an integer between 2 to 10"
  309. @change="numberPan"></el-input>
  310. </div>
  311. </div>
  312. <span slot="footer" class="dialog-footer">
  313. <el-button @click="dialogVisibleGroup2 = false">Cancel</el-button>
  314. <el-button type="primary" @click="updateGroupJson(2)">Save</el-button>
  315. </span>
  316. </el-dialog>
  317. <el-dialog title="Remove Group Member" :visible.sync="dialogVisibleDeleteGroup" :append-to-body="true" width="350px"
  318. :before-close="handleClose" class="dialog_diy">
  319. <div>
  320. <h2>
  321. {{ this.deleteGroupArray.name }}
  322. </h2>
  323. <div style="color: rgb(171 171 171); margin-top: 10px">
  324. Select member
  325. </div>
  326. <el-checkbox-group v-model="checkDeleteGroup">
  327. <el-checkbox style="display: flex; margin-top: 20px" v-for="(item, index) in deleteGroupUser"
  328. :label="item.userid" :key="index">{{ item.name }}</el-checkbox>
  329. </el-checkbox-group>
  330. </div>
  331. <span slot="footer" class="dialog-footer">
  332. <el-button @click="dialogVisibleDeleteGroup = false">Cancel</el-button>
  333. <el-button type="primary" @click="deleteChair">Save</el-button>
  334. </span>
  335. </el-dialog>
  336. <el-dialog title="update group" :visible.sync="dialogVisibleUpdateGroup" :append-to-body="true" width="350px"
  337. :before-close="handleClose" class="dialog_diy">
  338. <div>
  339. <h2>
  340. {{ this.updateGroupUser.name }}
  341. </h2>
  342. <div style="color: rgb(171 171 171); margin-top: 10px">
  343. Please select the group to enter
  344. </div>
  345. <el-radio-group v-model="checkChair">
  346. <el-radio style="display: block; margin-top: 20px" v-for="(item, index) in updateGroupArray"
  347. :label="item.id" :key="index">{{ item.name }}</el-radio>
  348. </el-radio-group>
  349. </div>
  350. <span slot="footer" class="dialog-footer">
  351. <el-button @click="dialogVisibleUpdateGroup = false">Cancel</el-button>
  352. <el-button type="primary" @click="updateChair">Save</el-button>
  353. </span>
  354. </el-dialog>
  355. <el-dialog title="Add Group Member" :visible.sync="dialogVisibleMember" :append-to-body="true" width="540px" height="80%"
  356. :before-close="handleClose" class="addNewPP" v-loading="loading">
  357. <div class="people">
  358. <div class="people_top">
  359. <div class="people_top_right">
  360. <div class="people_search">
  361. <el-input placeholder="Search for name" v-model="searchTN" @keyup.enter.native="getStudent"></el-input>
  362. <div class="search_img" @click="getStudent">
  363. <img src="../../../../assets/icon/search.png" alt />
  364. </div>
  365. </div>
  366. </div>
  367. <div class="people_nav">Select member</div>
  368. </div>
  369. <!-- <div class="t_j_box" style="
  370. padding: 20px 0 0 25px;
  371. width: calc(100% - 55px);
  372. margin-left: 25px;
  373. ">
  374. <span>姓名</span>
  375. <span>账号</span>
  376. </div> -->
  377. <!-- <el-checkbox-group v-model="checkboxList3" class="people_name" v-if="classJuri.length">
  378. <el-checkbox v-for="item in classJuri" :key="item.userid" :label="item.userid">
  379. <div class="t_j_box">
  380. <el-tooltip placement="top" :content="item.name ? item.name : '暂无姓名'">
  381. <span>{{ item.name ? item.name : "暂无姓名" }}</span>
  382. </el-tooltip>
  383. <el-tooltip placement="top" :content="item.username">
  384. <span>{{ item.username }}</span>
  385. </el-tooltip>
  386. </div>
  387. </el-checkbox>
  388. </el-checkbox-group> -->
  389. <div class="i_box_login2" v-if="classJuri.length">
  390. <div :class="{ active: checkboxList3.indexOf(item.userid) != -1 }" v-for="item in classJuri"
  391. :key="item.userid" :label="item.userid" @click="addGroupUser(item.userid)">
  392. <el-tooltip placement="top" :content="item.name ? item.name : 'No Name'">
  393. <span>{{ item.name ? item.name : "No Name" }}</span>
  394. </el-tooltip>
  395. </div>
  396. </div>
  397. <div style="text-align: center; margin-top: 10px" v-else>No data</div>
  398. </div>
  399. <!-- <div style="margin-top: 10px;">
  400. <el-pagination background layout="prev, pager, next" :page-size="pageSize" :total="total"
  401. v-if="page && classJuri.length" style="padding-bottom: 20px"
  402. @current-change="handleCurrentChange"></el-pagination>
  403. </div> -->
  404. <span slot="footer" class="dialog-footer">
  405. <el-button @click="dialogVisibleMember = false">Cancel</el-button>
  406. <el-button type="primary" @click="joinGroup2">Save</el-button>
  407. </span>
  408. </el-dialog>
  409. </div>
  410. </template>
  411. <script>
  412. export default {
  413. props: ['cid', 'classList', 'courseDetail', 'userid', "type", "classId", "oid", "people"],
  414. data() {
  415. return {
  416. groupJson2: {},
  417. classid: "1",
  418. groupid: "",
  419. gid: "",
  420. groupJson: {
  421. group: [],
  422. number: undefined,
  423. islock: 1,
  424. },
  425. islock: false,
  426. isopen: true,
  427. timer: null,
  428. groupStudent: {},
  429. groupStudentUid: {},
  430. allGroupStudentUid: [],
  431. dialogVisibleGroup2: false,
  432. checkDeleteGroup: [],
  433. deleteGroupUser: [],
  434. deleteGroupArray: [],
  435. dialogVisibleDeleteGroup: false,
  436. checkChair: "",
  437. updateGroupArray: [],
  438. updateGroupUser: {},
  439. dialogVisibleUpdateGroup: false,
  440. classJuri: [],
  441. checkboxList3: [],
  442. pageSize: 20,
  443. total: 0,
  444. page: 1,
  445. dialogVisibleMember: false,
  446. searchTN: "",
  447. loading: false,
  448. }
  449. },
  450. methods: {
  451. handleClose2(done) {
  452. this.$emit('update:dialogVisibleGroup', false)
  453. done();
  454. },
  455. handleClose(done) {
  456. done();
  457. },
  458. getStudent() {
  459. this.page = 1
  460. this.selectCStudent();
  461. },
  462. handleCurrentChange(val) {
  463. this.page = val;
  464. this.selectCStudent();
  465. },
  466. selectCStudent() {
  467. // let params = {
  468. // cid: this.classid,
  469. // oid: this.oid,
  470. // cn: this.searchTN,
  471. // };
  472. // this.ajax
  473. // .get(this.$store.state.api + "selectSnameByCidGroup", params)
  474. // .then((res) => {
  475. // if (res.data && res.data[0].length) {
  476. // this.classJuri = res.data[0].filter((el) => {
  477. // return this.allGroupStudentUid.indexOf(el.userid) == -1
  478. // });
  479. // }
  480. // })
  481. // .catch((err) => {
  482. // console.error(err);
  483. // });
  484. this.loading = true
  485. let _user = JSON.parse(JSON.stringify(this.people));
  486. if (_user.indexOf(this.userid) == -1) {
  487. _user.push(this.userid);
  488. }
  489. // if(_user.indexOf(this.courseDetail.userid) == -1){
  490. // _user.push(this.courseDetail.userid);
  491. // }
  492. if(_user.indexOf(this.courseDetail.userid) !== -1){
  493. _user.splice(_user.indexOf(this.courseDetail.userid), 1);
  494. }
  495. let params = {
  496. uid: _user.join(","),
  497. };
  498. this.ajax
  499. .get(this.$store.state.api + "getAllUserById", params)
  500. .then((res) => {
  501. this.loading = false
  502. if (res.data && res.data[0].length) {
  503. this.classJuri = res.data[0].filter((el) => {
  504. return this.allGroupStudentUid.indexOf(el.userid) == -1
  505. });
  506. }
  507. })
  508. .catch((err) => {
  509. this.loading = false
  510. console.error(err);
  511. });
  512. },
  513. setClassid(cid) {
  514. this.classid = cid
  515. this.groupid = ''
  516. this.groupJson = {
  517. group: [],
  518. number: undefined,
  519. islock: 1,
  520. }
  521. this.islock = false
  522. this.isopen = true
  523. this.getCourseGroup();
  524. },
  525. guid() {
  526. var _num,
  527. i,
  528. _guid = "";
  529. for (i = 0; i < 32; i++) {
  530. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  531. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  532. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  533. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  534. _guid += "-";
  535. }
  536. }
  537. return _guid;
  538. },
  539. updateGroup() {
  540. this.groupJson2 = JSON.parse(JSON.stringify(this.groupJson));
  541. if (!this.groupJson2.group.length) {
  542. this.groupJson2.group.push({
  543. name: "Group" + (this.groupJson2.group.length + 1),
  544. id: this.guid()
  545. });
  546. }
  547. this.dialogVisibleGroup2 = true;
  548. },
  549. deleteCourseGroup() {
  550. this.$confirm(
  551. // "您确定要删除该分组吗? 分组删除后将被清空并且无法恢复。",
  552. "Are you sure to delete the existing group? The group data will be cleared after deletion!",
  553. "Notification",
  554. {
  555. confirmButtonText: "Save",
  556. cancelButtonText: "Cancel",
  557. type: "warning",
  558. }
  559. )
  560. .then(() => {
  561. let params = [{
  562. gid: this.groupid,
  563. }];
  564. this.ajax
  565. .post(this.$store.state.api + "deleteCourseGroup", params)
  566. .then((res) => {
  567. this.groupJson = {
  568. group: [],
  569. number: undefined,
  570. islock: 1,
  571. }
  572. this.islock = false
  573. this.isopen = true
  574. this.$message.success("Operation successful");
  575. this.getCourseGroup();
  576. this.$forceUpdate()
  577. })
  578. .catch((err) => {
  579. console.error(err);
  580. });
  581. })
  582. .catch(() => { });
  583. },
  584. addGroup() {
  585. this.groupJson2.group.push({
  586. name: "Group" + (this.groupJson2.group.length + 1),
  587. id: this.guid()
  588. });
  589. },
  590. deleteGroup(i) {
  591. this.groupJson2.group.splice(i, 1);
  592. },
  593. lockChair() {
  594. this.groupJson2 = JSON.parse(JSON.stringify(this.groupJson));
  595. if (this.groupJson2.isopen == 2) {
  596. this.$message.error("Please enable the group before opening the seat selection")
  597. this.islock = false
  598. return
  599. } else {
  600. this.groupJson2.islock = this.groupJson2.islock == 1 ? 2 : 1;
  601. }
  602. this.updateGroupJson();
  603. },
  604. numberPan() {
  605. if (/[^\d]/.test(this.groupJson2.number) || this.groupJson2.number < 2 || this.groupJson2.number > 10) {
  606. this.$message.error('Please enter a number between 2 and 10')
  607. this.groupJson2.number = ''
  608. }
  609. },
  610. openChair() {
  611. this.groupJson2 = JSON.parse(JSON.stringify(this.groupJson));
  612. if (!this.groupJson2.isopen) {
  613. this.groupJson2.isopen = 2;
  614. } else {
  615. this.groupJson2.isopen = this.groupJson2.isopen == 1 ? 2 : 1;
  616. }
  617. if (this.groupJson2.isopen == 2) {
  618. this.groupJson2.islock = 2
  619. } else {
  620. this.groupJson2.islock = 1
  621. }
  622. this.updateGroupJson();
  623. },
  624. updateGroupJson(type) {
  625. for (var i = 0; i < this.groupJson2.group.length; i++) {
  626. if (!this.groupJson2.group[i].name) {
  627. this.$message.error("Please fill in all the blanks.");
  628. return;
  629. }
  630. }
  631. if (!this.groupJson2.number) {
  632. this.$message.error("Please fill in all the blanks.");
  633. return;
  634. }
  635. for (var i = 0; i < this.groupJson2.group.length; i++) {
  636. if (
  637. this.groupStudentUid[this.groupJson2.group[i].id] && this.groupStudentUid[this.groupJson2.group[i].id].length >
  638. this.groupJson2.number
  639. ) {
  640. this.$message.error("There are already groups with more people than you set, please reset");
  641. return;
  642. }
  643. }
  644. let params = [
  645. {
  646. cid: this.cid,
  647. group: JSON.stringify(this.groupJson2).replaceAll(/%/g, "%25"),
  648. classid: this.classid,
  649. },
  650. ];
  651. this.ajax
  652. .post(this.$store.state.api + "setCourseGroup", params)
  653. .then((res) => {
  654. if (this.groupJson2.isopen == 1) {
  655. if (type == 2) {
  656. this.$message.success("设置成功");
  657. } else {
  658. this.$message.success("开启分组成功");
  659. }
  660. } else if (this.groupJson2.isopen == 2) {
  661. this.$message.success("关闭分组成功");
  662. }
  663. // 开启分组成功/关闭分组成功
  664. this.dialogVisibleGroup2 = false;
  665. this.groupJson2 = {};
  666. this.getCourseGroup();
  667. this.$forceUpdate();
  668. })
  669. .catch((err) => {
  670. this.$message.error("网络不佳");
  671. console.error(err);
  672. });
  673. },
  674. getCourseGroup(gid) {
  675. let params = {
  676. cid: this.cid,
  677. classid: this.classid,
  678. };
  679. this.ajax
  680. .get(this.$store.state.api + "getCourseGroup", params)
  681. .then((res) => {
  682. if (res.data && res.data[0].length) {
  683. this.groupJson = JSON.parse(res.data[0][0].group);
  684. this.islock = this.groupJson.islock == 1 ? true : false;
  685. if (!this.groupJson.isopen) {
  686. this.isopen = true
  687. } else {
  688. this.isopen = this.groupJson.isopen == 1 ? true : false;
  689. }
  690. this.groupid = res.data[0][0].id;
  691. let groupPerson = res.data[1]
  692. let group = JSON.parse(res.data[0][0].group).group
  693. let groupStudent = {}
  694. let groupStudentUid = {}
  695. for (var i = 0; i < group.length; i++) {
  696. groupStudent[group[i].id] = []
  697. groupStudentUid[group[i].id] = []
  698. for (var j = 0; j < groupPerson.length; j++) {
  699. if (groupPerson[j].groupCid == group[i].id) {
  700. groupStudent[group[i].id].push(groupPerson[j])
  701. groupStudentUid[group[i].id].push(groupPerson[j].userid)
  702. }
  703. }
  704. }
  705. this.allGroupStudentUid = []
  706. for (var j = 0; j < groupPerson.length; j++) {
  707. this.allGroupStudentUid.push(groupPerson[j].userid)
  708. }
  709. this.groupStudent = groupStudent
  710. this.groupStudentUid = groupStudentUid
  711. this.$forceUpdate();
  712. if (gid) {
  713. this.joinGroup(gid)
  714. }
  715. }
  716. })
  717. .catch((err) => {
  718. this.$message.error("网络不佳");
  719. console.error(err);
  720. });
  721. },
  722. updateGroupChair(user) {
  723. this.updateGroupArray = this.groupJson.group.filter((el, index) => {
  724. el.label = index;
  725. return el.id != user.groupCid;
  726. });
  727. this.updateGroupUser = user;
  728. this.dialogVisibleUpdateGroup = true;
  729. },
  730. updateChair() {
  731. if (
  732. this.groupStudent[this.checkChair].length >
  733. this.groupJson.number ||
  734. this.groupStudent[this.checkChair].length ==
  735. this.groupJson.number
  736. ) {
  737. this.$message.error("The position is full and cannot be joined");
  738. return;
  739. }
  740. let params = [
  741. {
  742. gid: this.groupid,
  743. g: this.checkChair,
  744. uid: this.updateGroupUser.userid,
  745. },
  746. ];
  747. this.ajax
  748. .post(this.$store.state.api + "joinCourseGroup", params)
  749. .then((res) => {
  750. this.$message.success("Modification successful");
  751. this.updateGroupUser = {};
  752. this.checkChair = "";
  753. this.updateGroupArray = {};
  754. this.dialogVisibleUpdateGroup = false;
  755. this.getCourseGroup();
  756. })
  757. .catch((err) => {
  758. this.$message.error("网络不佳");
  759. console.error(err);
  760. });
  761. },
  762. deleteGroupChair(gid, gindex) {
  763. this.checkDeleteGroup = [];
  764. this.deleteGroupUser = JSON.parse(
  765. JSON.stringify(this.groupStudent[gid])
  766. );
  767. this.deleteGroupArray = this.groupJson.group[gindex];
  768. this.gid = gid;
  769. this.dialogVisibleDeleteGroup = true;
  770. },
  771. async deleteChair() {
  772. for (let i = 0; i < this.checkDeleteGroup.length; i++) {
  773. const gid =
  774. this.groupStudent[this.gid][
  775. this.groupStudentUid[this.gid].indexOf(
  776. this.checkDeleteGroup[i]
  777. )
  778. ];
  779. let params = [
  780. {
  781. gid: gid.id,
  782. },
  783. ];
  784. var a = await this.deleteChairA(params);
  785. if (i == this.checkDeleteGroup.length - 1) {
  786. this.$message.success("退出成功");
  787. this.dialogVisibleDeleteGroup = false;
  788. this.deleteGroupUser = [];
  789. this.deleteGroupArray = {};
  790. this.gid = "";
  791. this.checkDeleteGroup = [];
  792. this.getCourseGroup();
  793. }
  794. }
  795. },
  796. deleteChairA(params) {
  797. return new Promise((resolve, reject) => {
  798. this.ajax
  799. .post(this.$store.state.api + "exitCourseGroup", params)
  800. .then((res) => {
  801. resolve(1);
  802. })
  803. .catch((err) => {
  804. this.$message.error("网络不佳");
  805. console.error(err);
  806. });
  807. });
  808. },
  809. selectGroup(gid) {
  810. this.getCourseGroup(gid)
  811. },
  812. joinGroup(gid) {
  813. if (this.groupJson.islock == 2) {
  814. this.$message.error("位置已被锁定,无法加入");
  815. return;
  816. }
  817. if (
  818. this.groupStudent[gid].length >
  819. this.groupJson.number ||
  820. this.groupStudent[gid].length == this.groupJson.number
  821. ) {
  822. this.$message.error("位置已满,无法加入");
  823. return;
  824. }
  825. let params = [
  826. {
  827. gid: this.groupid,
  828. g: gid,
  829. uid: this.userid,
  830. },
  831. ];
  832. this.ajax
  833. .post(this.$store.state.api + "joinCourseGroup", params)
  834. .then((res) => {
  835. this.$message.success("加入成功");
  836. this.$emit('getGroup')
  837. this.getCourseGroup();
  838. })
  839. .catch((err) => {
  840. this.$message.error("网络不佳");
  841. console.error(err);
  842. });
  843. },
  844. addGroupUser(uid) {
  845. if (this.checkboxList3.indexOf(uid) == -1) {
  846. this.checkboxList3.push(uid)
  847. } else {
  848. this.checkboxList3.splice(this.checkboxList3.indexOf(uid), 1)
  849. }
  850. },
  851. async joinGroup2() {
  852. if (
  853. this.groupStudent[this.gid].length + this.checkboxList3.length >
  854. this.groupJson.number
  855. ) {
  856. this.$message.error("位置已满,无法加入");
  857. return;
  858. }
  859. for (let i = 0; i < this.checkboxList3.length; i++) {
  860. let params = [
  861. {
  862. gid: this.groupid,
  863. g: this.gid,
  864. uid: this.checkboxList3[i],
  865. },
  866. ];
  867. const res = await this.ajax.post(this.$store.state.api + "joinCourseGroup", params)
  868. if (i == this.checkboxList3.length - 1) {
  869. this.$message.success("加入成功");
  870. this.dialogVisibleMember = false
  871. this.getCourseGroup();
  872. }
  873. }
  874. },
  875. exitGroup(id) {
  876. if (this.groupJson.islock == 2) {
  877. this.$message.error("位置已被锁定,无法退出");
  878. return;
  879. }
  880. let params = [
  881. {
  882. gid: id,
  883. },
  884. ];
  885. this.ajax
  886. .post(this.$store.state.api + "exitCourseGroup", params)
  887. .then((res) => {
  888. this.$message.success("退出成功");
  889. this.$emit('getGroup')
  890. this.getCourseGroup();
  891. })
  892. .catch((err) => {
  893. this.$message.error("网络不佳"); s
  894. console.error(err);
  895. });
  896. },
  897. addGroupStudent(groupid) {
  898. this.gid = groupid
  899. this.page = 1
  900. this.searchTN = ""
  901. this.checkboxList3 = []
  902. this.selectCStudent()
  903. this.getCourseGroup();
  904. this.dialogVisibleMember = true
  905. }
  906. },
  907. watch: {
  908. },
  909. beforeDestory() {
  910. clearInterval(this.timer)
  911. this.timer = null
  912. },
  913. mounted() {
  914. if (this.classList.length) {
  915. if (this.type == 2) {
  916. this.classList = this.classList.filter(el => {
  917. return this.classId.indexOf(el.id) != -1
  918. })
  919. this.classid = this.classList[0].id
  920. } else {
  921. this.classid = this.classList[0].id
  922. }
  923. } else {
  924. this.classid = '1'
  925. }
  926. this.setClassid(this.classid)
  927. this.getCourseGroup();
  928. // if (this.dialogVisibleGroup) {
  929. // this.getCourseGroup();
  930. this.timer = setInterval(() => {
  931. this.getCourseGroup();
  932. }, 5000)
  933. // } else {
  934. // clearInterval(this.timer)
  935. // this.timer = null
  936. // }
  937. }
  938. }
  939. </script>
  940. <style scoped>
  941. .dialog_diy>>>.el-dialog {
  942. margin-top: 10vh !important;
  943. }
  944. .dialog_diy>>>.el-dialog__header {
  945. background: #454545 !important;
  946. padding: 15px 20px;
  947. }
  948. .dialog_diy>>>.el-dialog__title {
  949. color: #fff;
  950. }
  951. .dialog_diy>>>.el-dialog__headerbtn {
  952. top: 19px;
  953. }
  954. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  955. color: #fff;
  956. }
  957. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  958. color: #fff;
  959. }
  960. .dialog_diy>>>.el-dialog__body,
  961. .dialog_diy>>>.el-dialog__footer {
  962. background: #fafafa;
  963. }
  964. .group_workBox {}
  965. .group_workBox+.group_workBox {
  966. margin-top: 20px;
  967. }
  968. .group_box {
  969. padding-bottom: 20px;
  970. border-bottom: 2px solid #f0f0f0;
  971. }
  972. .group_title {
  973. display: flex;
  974. align-items: center;
  975. justify-content: space-between;
  976. }
  977. .group_name {
  978. background-image: url(../../../../assets/icon/groupN.png);
  979. width: 220px;
  980. background-size: 100% 100%;
  981. height: 67px;
  982. padding: 0 20px 0 43px;
  983. box-sizing: border-box;
  984. line-height: 63px;
  985. color: #fff;
  986. overflow: hidden;
  987. white-space: nowrap;
  988. text-overflow: ellipsis;
  989. }
  990. .group_work {
  991. width: 100%;
  992. padding: 0 10px;
  993. box-sizing: border-box;
  994. display: flex;
  995. flex-wrap: wrap;
  996. }
  997. .g_d_box {
  998. display: flex;
  999. flex-flow: wrap;
  1000. justify-content: space-around;
  1001. }
  1002. .g_d_box .isChair {
  1003. background-image: url(../../../../assets/avatar.png) !important;
  1004. }
  1005. .g_d_group {
  1006. width: 500px;
  1007. margin-bottom: 80px;
  1008. }
  1009. .g_d_group_chair {
  1010. display: flex;
  1011. align-items: center;
  1012. justify-content: center;
  1013. }
  1014. .g_d_group_chair>div+div {
  1015. margin-left: 30px;
  1016. }
  1017. .g_d_group_chair>div,
  1018. .g_d_group_chair2>div {
  1019. display: flex;
  1020. flex-direction: column;
  1021. align-items: center;
  1022. }
  1023. .g_d_group_chair>div>span:nth-child(1),
  1024. .g_d_group_chair2>div>span:nth-child(1) {
  1025. background-image: url(../../../../assets/icon/chair.png);
  1026. width: 50px;
  1027. height: 50px;
  1028. display: block;
  1029. background-size: 100% 100%;
  1030. }
  1031. .g_d_group_tableBox {
  1032. display: flex;
  1033. align-items: center;
  1034. justify-content: center;
  1035. }
  1036. .g_d_group_chair2 {
  1037. display: flex;
  1038. flex-direction: column;
  1039. align-items: center;
  1040. justify-content: center;
  1041. }
  1042. .g_d_group_chair2>div+div {
  1043. margin-top: 10px;
  1044. }
  1045. .g_d_group_table {
  1046. background-image: url(../../../../assets/icon/groupBg.png);
  1047. width: 354px;
  1048. height: 196px;
  1049. background-size: 100% 100%;
  1050. display: flex;
  1051. align-items: center;
  1052. justify-content: center;
  1053. flex-direction: column;
  1054. color: #fff;
  1055. }
  1056. .g_d_group_table>div:nth-child(1) {
  1057. font-size: 24px;
  1058. margin-bottom: 5px;
  1059. }
  1060. .g_d_group_table>div:nth-child(2) div {
  1061. cursor: pointer;
  1062. background: #2e77bf;
  1063. padding: 4px 10px;
  1064. border-radius: 5px;
  1065. }
  1066. .groupBox {}
  1067. .groupContent+.groupContent {
  1068. margin-top: 30px;
  1069. }
  1070. .groupTitle {
  1071. font-size: 24px;
  1072. color: rgb(80, 80, 80);
  1073. margin-bottom: 20px;
  1074. }
  1075. .groupName {
  1076. display: flex;
  1077. align-items: center;
  1078. }
  1079. .groupn {
  1080. font-size: 15px;
  1081. margin-right: 10px;
  1082. }
  1083. .groupName+.groupName {
  1084. margin-top: 15px;
  1085. }
  1086. .groupBtn {
  1087. margin-left: 10px;
  1088. }
  1089. .groupContent>>>.el-input-number.is-without-controls .el-input__inner {
  1090. text-align: left;
  1091. }
  1092. .g_d_btnBox {
  1093. display: flex;
  1094. justify-content: space-between;
  1095. align-items: flex-end;
  1096. margin: 20px 0;
  1097. }
  1098. .btn_left {
  1099. display: flex;
  1100. margin-top: 20px;
  1101. padding: 0px 0 0 30px;
  1102. }
  1103. .btn_left>div {
  1104. cursor: pointer;
  1105. }
  1106. .btn_left>div+div {
  1107. margin-left: 10px;
  1108. }
  1109. .btn_left .active {
  1110. color: #3e88f4;
  1111. border-bottom: 2px solid #2f80f3;
  1112. padding: 0 0 5px;
  1113. }
  1114. .btn_right {
  1115. display: flex;
  1116. align-items: center;
  1117. }
  1118. .updateChair {
  1119. position: relative;
  1120. }
  1121. .updateChairBtn {
  1122. position: absolute;
  1123. width: 50px;
  1124. height: 50px;
  1125. overflow: hidden;
  1126. /* display: flex; */
  1127. align-items: center;
  1128. justify-content: center;
  1129. background: #00000087;
  1130. color: #fff;
  1131. border-radius: 50px;
  1132. display: none;
  1133. cursor: pointer;
  1134. }
  1135. .updateChair:hover .updateChairBtn {
  1136. display: flex;
  1137. }
  1138. .returnBtn {
  1139. background: #499eef;
  1140. width: 65px;
  1141. height: 30px;
  1142. color: #fff;
  1143. text-align: center;
  1144. line-height: 32px;
  1145. margin-right: 20px;
  1146. cursor: pointer;
  1147. border-radius: 5px;
  1148. font-size: 14px;
  1149. }
  1150. .addNewPP>>>.el-dialog__body {
  1151. padding: 5px 20px;
  1152. }
  1153. .people {
  1154. border: 1px solid rgb(229 229 229);
  1155. height: 495px;
  1156. border-radius: 5px;
  1157. width: 100%;
  1158. overflow: auto;
  1159. }
  1160. .people_top {
  1161. display: flex;
  1162. width: 100%;
  1163. /* justify-content: space-between; */
  1164. /* align-items: center; */
  1165. flex-direction: column;
  1166. padding: 10px 25px 0;
  1167. box-sizing: border-box;
  1168. }
  1169. .people_nav,
  1170. .people_top_right {
  1171. /* padding: 20px 0 0 20px; */
  1172. }
  1173. .people_top_right {
  1174. height: 40px;
  1175. margin-bottom: 10px;
  1176. }
  1177. .people_search {
  1178. display: flex;
  1179. position: relative;
  1180. }
  1181. .people_search>>>.el-input__inner {
  1182. /* height: 25px; */
  1183. width: 100%;
  1184. }
  1185. .search_img {
  1186. width: 20px;
  1187. height: 20px;
  1188. position: absolute;
  1189. right: 10px;
  1190. top: 50%;
  1191. transform: translateY(-50%);
  1192. }
  1193. .search_img>img {
  1194. width: 100%;
  1195. height: 100%;
  1196. }
  1197. .people_name {
  1198. display: flex;
  1199. justify-content: flex-start;
  1200. padding: 10px 0 0 25px;
  1201. flex-direction: column;
  1202. flex-wrap: nowrap;
  1203. height: calc(100% - 140px);
  1204. overflow-y: auto;
  1205. overflow-x: hidden;
  1206. flex-direction: column;
  1207. }
  1208. .people_name>>>.el-checkbox {
  1209. width: 100%;
  1210. display: flex;
  1211. align-items: center;
  1212. margin-bottom: 10px;
  1213. }
  1214. .people_name>>>.el-checkbox__label {
  1215. text-overflow: ellipsis;
  1216. overflow: hidden;
  1217. width: 100%;
  1218. }
  1219. .t_j_box {
  1220. display: flex;
  1221. }
  1222. .t_j_box span:nth-child(1) {
  1223. width: 50%;
  1224. overflow: hidden;
  1225. margin-right: 10px;
  1226. text-overflow: ellipsis;
  1227. white-space: nowrap;
  1228. }
  1229. .t_j_box span:nth-child(2) {
  1230. width: 50%;
  1231. overflow: hidden;
  1232. margin-right: 10px;
  1233. text-overflow: ellipsis;
  1234. white-space: nowrap;
  1235. }
  1236. .i_box_login2 {
  1237. height: calc(100% - 80px);
  1238. width: 100%;
  1239. display: flex;
  1240. flex-wrap: wrap;
  1241. overflow: auto;
  1242. padding-bottom: 10px;
  1243. box-sizing: border-box;
  1244. align-content: flex-start;
  1245. padding: 10px 25px 0;
  1246. }
  1247. .i_box_login2>div {
  1248. cursor: pointer;
  1249. width: 80px;
  1250. text-align: center;
  1251. height: 30px;
  1252. line-height: 30px;
  1253. padding: 0 5px;
  1254. overflow: hidden;
  1255. background: rgb(225, 237, 255);
  1256. margin: 10px calc((100% - (80px*5)) / 4) 0 0;
  1257. color: rgb(37 124 255);
  1258. border-radius: 5px;
  1259. box-sizing: border-box;
  1260. }
  1261. .i_box_login2>div:nth-child(5n) {
  1262. margin: 10px 0 0 0;
  1263. }
  1264. .i_box_login2>.active {
  1265. background: rgb(92, 157, 255);
  1266. color: #fff;
  1267. }
  1268. .i_box_login2>div>span {
  1269. width: 100%;
  1270. overflow: hidden;
  1271. white-space: nowrap;
  1272. text-overflow: ellipsis;
  1273. display: block;
  1274. }
  1275. .group_switch {
  1276. margin-right: 10px;
  1277. height: 30px;
  1278. display: flex;
  1279. align-items: center;
  1280. }
  1281. .group_switch>span {
  1282. margin-right: 5px;
  1283. }
  1284. </style>