classDetail.vue 18 KB

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