classDetail.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. <template>
  2. <view class="content">
  3. <u-card :title="classInfo.name" :sub-title="classInfo.useLessonsType == 1 ? '体验班' : ''" :show-foot="false" title-size="32" margin="0px 0px 10px 0px" :head-style="cardStyle">
  4. <view slot="body">
  5. <view class="class-info-text">
  6. <u-icon name="clock"></u-icon>
  7. {{classInfo.classStartDate}}&nbsp;~&nbsp;{{classInfo.classEndDate}}
  8. </view>
  9. <view class="class-info-text" v-for="(item, index) in classInfo.classExtrasList" :key="index">
  10. <u-icon name="calendar" style="visibility: hidden;"></u-icon>
  11. <text>{{item.week}}&nbsp;{{item.startTime}}-{{item.endTime}}</text>
  12. </view>
  13. <view class="class-info-text">
  14. <u-icon name="map"></u-icon>
  15. {{classInfo.address}}
  16. </view>
  17. <view style="display: flex;justify-content: flex-end;" v-if="classInfo.state != 0">
  18. <u-button type="warning" :custom-style="{background: mainColor}" size="mini" shape="circle" :ripple="true" @click="handleUpdateClassClick">修改</u-button>
  19. <u-button v-if="!classInfo.studentSignList.length" type="warning" :custom-style="{background: mainColor,marginLeft: '5px'}" size="mini" shape="circle" :ripple="true" @click="handleDeleteClick">删除</u-button>
  20. </view>
  21. </view>
  22. </u-card>
  23. <u-card :title="'学员信息(' + getStudentsNumber(1) + ')'" title-size="32" margin="0px 0px 10px 0px" :head-style="cardStyle">
  24. <u-grid :col="3" slot="body" :border="false">
  25. <u-grid-item v-for="(item, index) in classInfo.studentSignList" :key="index" :custom-style="gridCustomStyle" @click="goToStudentInfo(item)">
  26. <view class="class-student-col" :class="item.state ? 'student-active' : ''">
  27. {{item.name}}
  28. <u-icon name="bookmark" :color="mainColor" size="48"></u-icon>
  29. </view>
  30. </u-grid-item>
  31. </u-grid>
  32. </u-card>
  33. <u-card margin="0px 0px 10px 0px" :head-style="cardStyle" :show-head="false" @click="handleScanClick">
  34. <view slot="body" style="display: flex;justify-content: space-between;">
  35. <view style="font-size: 32rpx;font-weight: bold;color:#000000;">扫码</view>
  36. <u-icon name="scan" size="32"></u-icon>
  37. </view>
  38. </u-card>
  39. <u-card :title="'事假(' + getStudentsNumber(2) + ')'" title-size="32" margin="0px 0px 10px 0px" :head-style="cardStyle">
  40. <u-grid :col="3" slot="body" :border="false" v-if="classInfo.studentLeaveRecordList.length">
  41. <u-grid-item v-for="(item, index) in classInfo.studentLeaveRecordList" :key="index" :custom-style="gridCustomStyle">
  42. <view class="class-student-col" @click="handleleaveClick(item)">
  43. {{item.name}}
  44. <u-icon :name="item.agreeType == 1 ? 'bookmark-fill' : 'bookmark'" :color="mainColor" size="48"></u-icon>
  45. </view>
  46. </u-grid-item>
  47. </u-grid>
  48. </u-card>
  49. <u-card :title="'病假结束确认(' + getStudentsNumber(3) + ')'" title-size="32" margin="0px 0px 10px 0px" :head-style="cardStyle">
  50. <u-grid :col="3" slot="body" :border="false" v-if="classInfo.studentLeaveList.length">
  51. <u-grid-item v-for="(item, index) in classInfo.studentLeaveList" :key="index" :custom-style="gridCustomStyle">
  52. <view class="class-student-col" @click="handleOtherClick(item)">
  53. {{item.name}}
  54. <u-icon :name="item.agreeType == 1 ? 'bookmark-fill' : 'bookmark'" :color="mainColor" size="48"></u-icon>
  55. </view>
  56. </u-grid-item>
  57. </u-grid>
  58. </u-card>
  59. <u-card :title="'续费卡(' + getStudentsNumber(4) + ')'" title-size="32" margin="0px 0px 10px 0px" :head-style="cardStyle">
  60. <u-grid :col="3" slot="body" :border="false" v-if="classInfo.studentRenewList.length">
  61. <u-grid-item v-for="(item, index) in classInfo.studentRenewList" :key="index" :custom-style="gridCustomStyle">
  62. <view class="class-student-col" :class="item.state ? 'student-active' : ''" @click="handleVtCardClick(item)">
  63. {{item.name}}
  64. <u-icon name="bookmark" :color="mainColor" size="48"></u-icon>
  65. </view>
  66. </u-grid-item>
  67. </u-grid>
  68. </u-card>
  69. <u-card title="班级近况" :sub-title="imgEdit ? '完成' : '管理'" :sub-title-color="imgEdit ? '#19be6b' : '#909399'" :show-foot="false"
  70. title-size="32" margin="0px" :head-style="cardStyle" @sub-click="imgEdit = !imgEdit">
  71. <view class="class-show-box" slot="body">
  72. <view v-for="(item, index) in classShowList" :key="index" class="class-show-card">
  73. <u-image :src="item.url" mode="aspectFill" height="30vw" border-radius="10px" v-if="item.type == 0"></u-image>
  74. <view class="video-col" v-if="item.type == 1">
  75. <video :src="item.url" object-fit="cover" controls :id="'video' + index"></video>
  76. </view>
  77. <view class="class-show-name">{{item.name}}</view>
  78. <u-icon name="close-circle-fill" color="#fa3534" size="48" v-if="imgEdit" class="delete-icon" @click="deleteClassShow(item)"></u-icon>
  79. </view>
  80. <view class="class-show-card" style="width: calc(100% - 16px);text-align: center;" v-if="imgEdit">
  81. <u-icon name="plus-circle-fill" size="100" :color="mainColor" @click="uploadTypeShow = true"></u-icon>
  82. </view>
  83. </view>
  84. </u-card>
  85. <view class="handle-fix-box">
  86. <u-button type="warning" shape="circle" :ripple="true" :custom-style="customStyle" @click="goToSignForm">立即签到</u-button>
  87. </view>
  88. <u-action-sheet :list="uploadTypeList" v-model="uploadTypeShow" @click="selectUploadType"></u-action-sheet>
  89. <!-- 事假 -->
  90. <u-popup v-model="leaveShow" mode="center" border-radius="30" width="600rpx">
  91. <view class="common-title">事假</view>
  92. <view class="menber-box">
  93. <u-form :model="leaveForm" ref="leaveFormRef" label-width="140">
  94. <u-form-item label="请假时间" prop="time">
  95. <u-input v-model="leaveForm.time" disabled type="text" />
  96. </u-form-item>
  97. <u-form-item label="请假理由" prop="leaveReason">
  98. <u-input v-model="leaveForm.leaveReason" disabled type="text" />
  99. </u-form-item>
  100. </u-form>
  101. <view style="height:20px;"></view>
  102. <u-button type="warning" shape="circle" :ripple="true" :custom-style="customStyle" @click="handleAgreeClick">同意</u-button>
  103. </view>
  104. </u-popup>
  105. <!-- 病假确认 -->
  106. <u-modal v-model="leaveOtherShow" content="提示" show-cancel-button @confirm="handleEndClick">
  107. <view style="text-align: center;margin: 10px 0;">
  108. 是否确认{{ studentName }}的病假结束?
  109. </view>
  110. </u-modal>
  111. <!-- 续费卡 -->
  112. <u-popup v-model="vtCardShow" mode="center" border-radius="30" width="600rpx">
  113. <view class="common-title">续费卡</view>
  114. <view class="menber-box">
  115. <u-radio-group v-model="vtCardValue" @change="handleRadioChange">
  116. <u-radio class="menber-col" v-for="(item,index) in vtCardList" :key="index" :name="item.cardName">
  117. <view class="menber-label">卡名:{{ item.cardName }}</view>
  118. <!-- <view class="menber-label">售价: ¥ 1111</view> -->
  119. <!-- <view class="menber-label">使用时间: 11111</view> -->
  120. <!-- <u-checkbox v-model="true" active-color="#ff6e3e">选择</u-checkbox> -->
  121. <!-- <view class="menber-icon iconfont iconzu4931"></view> -->
  122. </u-radio>
  123. </u-radio-group>
  124. <view style="height:20px;"></view>
  125. <u-button type="warning" shape="circle" :ripple="true" :custom-style="customStyle" @click="handleAffirmClick">确认</u-button>
  126. </view>
  127. </u-popup>
  128. <u-top-tips ref="uTips"></u-top-tips>
  129. </view>
  130. </template>
  131. <script>
  132. import {
  133. mapGetters
  134. } from 'vuex'
  135. const NET = require('@/utils/request')
  136. const API = require('@/config/api')
  137. export default {
  138. computed: {
  139. ...mapGetters([
  140. 'mainColor',
  141. 'customStyle',
  142. ])
  143. },
  144. data() {
  145. return {
  146. classId: '',
  147. studentId: '',
  148. studentName: '',
  149. classInfo: {
  150. name: '',
  151. classStartDate: '',
  152. classStartHours: '',
  153. classEndDate: '',
  154. classEndHours: '',
  155. residue: '',
  156. address: '',
  157. classExtrasList: [],
  158. studentSignList: [],
  159. showList: [],
  160. studentLeaveRecordList: [],
  161. studentRenewList: []
  162. },
  163. classShowList: [],
  164. uploadTypeShow: false,
  165. uploadTypeList: [{
  166. text: '图片'
  167. },
  168. {
  169. text: '视频'
  170. }
  171. ],
  172. imgEdit: false,
  173. cardStyle: {
  174. fontWeight: 'bold'
  175. },
  176. gridCustomStyle: {
  177. padding: '0 2px'
  178. },
  179. leaveShow: false,
  180. leaveForm: {},
  181. leaveOtherShow: false,
  182. vtCardShow: false,
  183. vtCardId: '',
  184. vtCardValue: '',
  185. vtCardList: [],
  186. }
  187. },
  188. onLoad(options) {
  189. this.classId = options.id
  190. },
  191. onShow() {
  192. this.initialize()
  193. this.getClassShow()
  194. },
  195. onPullDownRefresh() {
  196. this.initialize()
  197. this.getClassShow()
  198. },
  199. methods: {
  200. // 获取初始化数据
  201. initialize() {
  202. NET.request(API.getClassDetail, {
  203. id: this.classId
  204. }, 'POST').then(res => {
  205. this.classInfo = res.data
  206. uni.stopPullDownRefresh();
  207. }).catch(error => {
  208. this.$refs.uTips.show({
  209. title: error.message,
  210. type: 'warning',
  211. })
  212. })
  213. },
  214. // 扫码
  215. handleScanClick() {
  216. try {
  217. let that = this
  218. uni.scanCode({
  219. onlyFromCamera: true,
  220. success: function (res) {
  221. // const studentId = parseInt(res.result)
  222. const studentId = 8999
  223. const classId = parseInt(that.classId)
  224. NET.request(API.classCourseWriteOff, {
  225. studentId,classId
  226. }, 'POST').then(res => {
  227. if(res.status == 10000) {
  228. that.$refs.uTips.show({
  229. title: res.message,
  230. type: 'success',
  231. })
  232. } else {
  233. that.$refs.uTips.show({
  234. title: res.message,
  235. type: 'warning',
  236. })
  237. }
  238. })
  239. },
  240. fail: function (res) {
  241. that.$refs.uTips.show({
  242. title: "调用摄像头失败",
  243. type: 'warning',
  244. })
  245. },
  246. });
  247. } catch {
  248. this.$refs.uTips.show({
  249. title: "调用摄像头失败",
  250. type: 'warning',
  251. })
  252. }
  253. },
  254. // 班级近况
  255. getClassShow() {
  256. NET.request(API.getClassDetailShowList, {
  257. id: this.classId,
  258. page: 0,
  259. size: 1000
  260. }, 'POST').then(res => {
  261. this.classShowList = res.data.row
  262. }).catch(error => {
  263. this.$refs.uTips.show({
  264. title: error.message,
  265. type: 'warning',
  266. })
  267. })
  268. },
  269. // 删除班级(班级内无学员)
  270. handleDeleteClick() {
  271. NET.request(API.deleteById, {
  272. id: parseInt(this.classId)
  273. }, 'POST').then( res=> {
  274. if(res.status == 10000) {
  275. uni.navigateBack({})
  276. }
  277. })
  278. },
  279. // 获取学生数量
  280. getStudentsNumber(num) {
  281. // 1 学生数晾 2 事假数量 3 续费卡数量
  282. switch (num){
  283. case 1:
  284. return this.classInfo.studentSignList.length
  285. case 2:
  286. return this.classInfo.studentLeaveRecordList.length
  287. case 3:
  288. return this.classInfo.studentLeaveList.length
  289. case 4:
  290. return this.classInfo.studentRenewList.length
  291. }
  292. },
  293. handleOtherClick(item) {
  294. this.studentId = item.id
  295. this.studentName = item.name
  296. this.leaveOtherShow = true
  297. },
  298. // 病假知晓
  299. handleEndClick() {
  300. NET.request(API.leaveLessonsEndOk,{
  301. classId:parseInt(this.classId), studentId:parseInt(this.studentId)
  302. },'POST').then(res=> {
  303. if(res.status == 10000) {
  304. this.$refs.uTips.show({
  305. title: res.message,
  306. type: 'success',
  307. })
  308. this.initialize()
  309. this.getClassShow()
  310. } else {
  311. this.$refs.uTips.show({
  312. title: res.message,
  313. type: 'warning',
  314. })
  315. }
  316. })
  317. },
  318. // 事假信息
  319. handleleaveClick(item) {
  320. if(item.agreeType == 1) return
  321. NET.request(API.leaveLessonsInfo,{
  322. id: parseInt(item.leaveRecordId)
  323. },'POST').then(res=> {
  324. if(res.status == 10000) {
  325. this.leaveForm = { ...res.data }
  326. this.leaveShow = true
  327. } else {
  328. this.$refs.uTips.show({
  329. title: res.message,
  330. type: 'warning',
  331. })
  332. }
  333. })
  334. },
  335. // 事假信息->同意
  336. handleAgreeClick() {
  337. NET.request(API.leaveLessonsOk, {
  338. leaveId: parseInt(this.leaveForm.leaveId)
  339. }, 'POST').then(res => {
  340. if(res.status == 10000) {
  341. this.leaveShow = false
  342. this.leaveForm = {}
  343. this.initialize()
  344. } else {
  345. this.leaveShow = false
  346. this.$refs.uTips.show({
  347. title: res.message,
  348. type: 'warning',
  349. })
  350. }
  351. })
  352. },
  353. // 续费卡列表
  354. handleVtCardClick(item) {
  355. this.studentId = parseInt(item.id)
  356. const data = {
  357. studentId: parseInt(this.studentId),
  358. classId: parseInt(this.classId)
  359. }
  360. NET.request(API.stuRenewalCardList, data, 'POST').then(res=> {
  361. if(res.status == 10000) {
  362. this.vtCardList = res.data
  363. this.vtCardShow = true
  364. } else {
  365. this.$refs.uTips.show({
  366. title: res.message,
  367. type: 'warning',
  368. })
  369. this.vtCardShow = false
  370. }
  371. })
  372. },
  373. // 续费卡切换
  374. handleRadioChange(cardName) {
  375. this.vtCardId = this.vtCardList.find( item => item.cardName = cardName).id
  376. this.vtCardValue = cardName
  377. },
  378. // 续费卡确认
  379. handleAffirmClick() {
  380. const data = {
  381. cardId: parseInt(this.vtCardId),
  382. studentId: parseInt(this.studentId),
  383. classId: parseInt(this.classId)
  384. }
  385. NET.request(API.openRenewalCard, data,'POST').then(res=> {
  386. if(res.status == 10000) {
  387. this.vtCardShow = false
  388. this.$refs.uTips.show({
  389. title: res.message,
  390. type: 'success',
  391. })
  392. this.initialize()
  393. } else {
  394. this.$refs.uTips.show({
  395. title: res.message,
  396. type: 'warning',
  397. })
  398. this.vtCardShow = false
  399. }
  400. })
  401. },
  402. // 选择上传文件类型
  403. selectUploadType(index) {
  404. if (index == 0) {
  405. uni.chooseImage({
  406. count: 1,
  407. success: (res) => {
  408. this.uploadFile(res.tempFilePaths[0])
  409. },
  410. fail: (error) => {
  411. }
  412. });
  413. } else if (index) {
  414. uni.chooseVideo({
  415. count: 1,
  416. success: (res) => {
  417. this.uploadFile(res.tempFilePath)
  418. },
  419. fail: (error) => {
  420. }
  421. });
  422. }
  423. },
  424. // 上传文件
  425. uploadFile(path) {
  426. let that = this
  427. uni.uploadFile({
  428. url: API.uploadFile,
  429. filePath: path,
  430. name: 'file',
  431. header: {
  432. Authorization: uni.getStorageSync('token')
  433. },
  434. success: (uploadFileRes) => {
  435. that.uploadSuccess(JSON.parse(uploadFileRes.data).data.id)
  436. }
  437. });
  438. },
  439. // 文件上传成功回调
  440. uploadSuccess(id) {
  441. NET.request(API.insertClassShow, {
  442. fileId: [id],
  443. id: this.classId,
  444. }, 'POST').then(res => {
  445. this.getClassShow()
  446. this.$refs.uTips.show({
  447. title: '班级近况发布成功',
  448. type: 'success',
  449. })
  450. }).catch(error => {
  451. this.$refs.uTips.show({
  452. title: error.message,
  453. type: 'warning',
  454. })
  455. })
  456. },
  457. // 删除班级近况
  458. deleteClassShow(site) {
  459. NET.request(API.deleteClassShow, {
  460. id: site.id,
  461. }, 'POST').then(res => {
  462. this.getClassShow()
  463. this.$refs.uTips.show({
  464. title: '删除成功',
  465. type: 'success',
  466. })
  467. }).catch(error => {
  468. this.$refs.uTips.show({
  469. title: error.message,
  470. type: 'warning',
  471. })
  472. })
  473. },
  474. // 跳转修改班级
  475. handleUpdateClassClick() {
  476. const form = {
  477. classId: this.classId,
  478. name: this.classInfo.name,
  479. startDate: this.classInfo.classStartDate,
  480. endDate: this.classInfo.classEndDate,
  481. timeReqList: this.classInfo.classExtrasList,
  482. maxStudentCount: this.classInfo.maxStudentCount
  483. }
  484. uni.navigateTo({
  485. url: '/pagesClass/updateClassForm?form=' + encodeURIComponent(JSON.stringify(form))
  486. });
  487. },
  488. // 跳转学生详情
  489. goToStudentInfo(item) {
  490. uni.navigateTo({
  491. url: '/pagesMain/studentInfo?type=1&id=' + item.id + '&classId=' + this.classId
  492. });
  493. },
  494. // 跳转签到表单
  495. goToSignForm() {
  496. uni.removeStorageSync('signUserList')
  497. uni.navigateTo({
  498. url: '/pagesClass/signForm?id=' + this.classId + '&status=' + this.classInfo.signStatus
  499. });
  500. },
  501. // 跳转续费卡详情
  502. jumpVtCardPage(id) {
  503. uni.navigateTo({
  504. url: `/pagesClass/vtCardInfo?id=${id}`
  505. })
  506. }
  507. },
  508. }
  509. </script>
  510. <style>
  511. page {
  512. width: 100%;
  513. height: 100%;
  514. background-color: #f7f7f7;
  515. position: relative;
  516. }
  517. </style>
  518. <style lang="scss" scoped>
  519. @import "@/static/css/themes.scss";
  520. .content {
  521. width: 100%;
  522. float: left;
  523. padding-bottom: 60px;
  524. .class-info-text {
  525. color: #999999;
  526. line-height: 18px;
  527. u-icon {
  528. margin-right: 4px;
  529. }
  530. }
  531. .class-student-col {
  532. height: 28px;
  533. display: flex;
  534. padding: 0 10px;
  535. line-height: 28px;
  536. color: $mainColor;
  537. white-space: nowrap;
  538. border: 1px solid $mainColor;
  539. border-radius: 5px;
  540. /deep/u-icon {
  541. margin-left: 5px;
  542. }
  543. }
  544. .student-active {
  545. background-color: $mainColor;
  546. color: #FFFFFF;
  547. }
  548. .class-student-box {
  549. display: flex;
  550. justify-content: space-around;
  551. }
  552. .class-show-box {
  553. width: 100%;
  554. float: left;
  555. .class-show-card {
  556. width: calc(50% - 16px);
  557. margin: 0 8px 16px 8px;
  558. float: left;
  559. position: relative;
  560. .class-show-name {
  561. width: 100%;
  562. text-align: center;
  563. line-height: 20px;
  564. font-size: 14px;
  565. margin-top: 5px;
  566. }
  567. .delete-icon {
  568. position: absolute;
  569. right: -5px;
  570. top: -5px;
  571. }
  572. .video-col {
  573. width: 100%;
  574. height: 30vw;
  575. border-radius: 10px;
  576. video {
  577. width: 100%;
  578. height: 30vw;
  579. }
  580. }
  581. }
  582. }
  583. .menber-box {
  584. width: 100%;
  585. // float: left;
  586. padding: 10px 15px;
  587. margin-bottom: 10px;
  588. .menber-col {
  589. width: 100%;
  590. padding: 15px;
  591. margin-bottom: 10px;
  592. display: inline-block;
  593. background-color: #FFFFFF;
  594. border-radius: 15px;
  595. box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  596. position: relative;
  597. overflow: hidden;
  598. box-sizing: border-box;
  599. .menber-label {
  600. width: 100%;
  601. margin-bottom: 5px;
  602. float: left;
  603. font-size: 14px;
  604. // line-height: 20px;
  605. }
  606. .menber-num {
  607. width: 100%;
  608. float: left;
  609. font-size: 26px;
  610. line-height: 28px;
  611. color: $mainColor;
  612. }
  613. .menber-icon {
  614. font-size: 100px;
  615. color: $mainColor;
  616. position: absolute;
  617. right: -5px;
  618. bottom: -30px;
  619. opacity: 0.5;
  620. }
  621. }
  622. }
  623. .common-title {
  624. width:100%;
  625. text-align: center;
  626. font-size: 20px;
  627. margin: 10px 0;
  628. }
  629. }
  630. </style>