classDetail.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  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" v-if="classInfo.useLessonsType==1">
  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="'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="orderId">
  117. <u-radio class="menber-col" v-for="(item,index) in vtCardList" :key="index" :name="item.orderId">
  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. orderId:'',
  187. cardId:'',
  188. vtCardList: [],
  189. }
  190. },
  191. onLoad(options) {
  192. this.classId = options.id
  193. },
  194. onShow() {
  195. this.initialize()
  196. this.getClassShow()
  197. },
  198. onPullDownRefresh() {
  199. this.initialize()
  200. this.getClassShow()
  201. },
  202. methods: {
  203. // 获取初始化数据
  204. initialize() {
  205. NET.request(API.getClassDetail, {
  206. id: this.classId
  207. }, 'POST').then(res => {
  208. this.classInfo = res.data
  209. console.log(this.classInfo.venueId)
  210. uni.stopPullDownRefresh();
  211. }).catch(error => {
  212. this.$refs.uTips.show({
  213. title: error.message,
  214. type: 'warning',
  215. })
  216. })
  217. },
  218. // 扫码
  219. handleScanClick() {
  220. try {
  221. let that = this
  222. uni.scanCode({
  223. onlyFromCamera: true,
  224. success: function (res) {
  225. console.log(res)
  226. // const studentId = parseInt(res.result)
  227. if(res.result.indexOf("xinghuoclass66889955224477")==-1){
  228. that.$refs.uTips.show({
  229. title: "二维码错误",
  230. type: 'success',
  231. })
  232. return false;
  233. }
  234. const studentId = res.result.replace("xinghuoclass66889955224477",'')
  235. const classId = parseInt(that.classId)
  236. NET.request(API.classCourseWriteOff, {
  237. studentId,classId
  238. }, 'POST').then(res => {
  239. if(res.status == 10000) {
  240. that.initialize()
  241. that.$refs.uTips.show({
  242. title: res.message,
  243. type: 'success',
  244. })
  245. } else {
  246. that.$refs.uTips.show({
  247. title: res.message,
  248. type: 'warning',
  249. })
  250. }
  251. }).catch(error => {
  252. that.$refs.uTips.show({
  253. title: error.message,
  254. type: 'warning',
  255. })
  256. })
  257. },
  258. fail: function (res) {
  259. that.$refs.uTips.show({
  260. title: "调用摄像头失败",
  261. type: 'warning',
  262. })
  263. },
  264. });
  265. } catch {
  266. this.$refs.uTips.show({
  267. title: "调用摄像头失败",
  268. type: 'warning',
  269. })
  270. }
  271. },
  272. // 班级近况
  273. getClassShow() {
  274. NET.request(API.getClassDetailShowList, {
  275. id: this.classId,
  276. page: 0,
  277. size: 1000
  278. }, 'POST').then(res => {
  279. this.classShowList = res.data.row
  280. }).catch(error => {
  281. this.$refs.uTips.show({
  282. title: error.message,
  283. type: 'warning',
  284. })
  285. })
  286. },
  287. // 删除班级(班级内无学员)
  288. handleDeleteClick() {
  289. NET.request(API.deleteById, {
  290. id: parseInt(this.classId)
  291. }, 'POST').then( res=> {
  292. if(res.status == 10000) {
  293. uni.navigateBack({})
  294. }
  295. })
  296. },
  297. // 获取学生数量
  298. getStudentsNumber(num) {
  299. // 1 学生数晾 2 事假数量 3 续费卡数量
  300. switch (num){
  301. case 1:
  302. return this.classInfo.studentSignList.length
  303. case 2:
  304. return this.classInfo.studentLeaveRecordList.length
  305. case 3:
  306. return this.classInfo.studentLeaveList.length
  307. case 4:
  308. return this.classInfo.studentRenewList.length
  309. }
  310. },
  311. handleOtherClick(item) {
  312. this.studentId = item.id
  313. this.studentName = item.name
  314. this.leaveOtherShow = true
  315. },
  316. // 病假知晓
  317. handleEndClick() {
  318. NET.request(API.leaveLessonsEndOk,{
  319. classId:parseInt(this.classId), studentId:parseInt(this.studentId)
  320. },'POST').then(res=> {
  321. if(res.status == 10000) {
  322. this.$refs.uTips.show({
  323. title: res.message,
  324. type: 'success',
  325. })
  326. this.initialize()
  327. this.getClassShow()
  328. } else {
  329. this.$refs.uTips.show({
  330. title: res.message,
  331. type: 'warning',
  332. })
  333. }
  334. })
  335. },
  336. // 事假信息
  337. handleleaveClick(item) {
  338. if(item.agreeType == 1) return
  339. NET.request(API.leaveLessonsInfo,{
  340. id: parseInt(item.leaveRecordId)
  341. },'POST').then(res=> {
  342. if(res.status == 10000) {
  343. this.leaveForm = { ...res.data }
  344. this.leaveShow = true
  345. } else {
  346. this.$refs.uTips.show({
  347. title: res.message,
  348. type: 'warning',
  349. })
  350. }
  351. })
  352. },
  353. // 事假信息->同意
  354. handleAgreeClick() {
  355. NET.request(API.leaveLessonsOk, {
  356. leaveId: parseInt(this.leaveForm.leaveId)
  357. }, 'POST').then(res => {
  358. if(res.status == 10000) {
  359. this.leaveShow = false
  360. this.leaveForm = {}
  361. this.initialize()
  362. } else {
  363. this.leaveShow = false
  364. this.$refs.uTips.show({
  365. title: res.message,
  366. type: 'warning',
  367. })
  368. }
  369. })
  370. },
  371. // 续费卡列表
  372. handleVtCardClick(item) {
  373. this.studentId = parseInt(item.id)
  374. const data = {
  375. studentId: parseInt(this.studentId),
  376. classId: parseInt(this.classId)
  377. }
  378. NET.request(API.stuRenewalCardList, data, 'POST').then(res=> {
  379. if(res.status == 10000) {
  380. this.vtCardList = res.data
  381. this.vtCardShow = true
  382. } else {
  383. this.$refs.uTips.show({
  384. title: res.message,
  385. type: 'warning',
  386. })
  387. this.vtCardShow = false
  388. }
  389. })
  390. },
  391. // 续费卡切换
  392. handleRadioChange(orderId) {
  393. this.vtCardId = this.vtCardList.find( item => item.orderId = orderId).cardId
  394. this.vtCardValue = this.vtCardList.find( item => item.orderId = orderId).cardName
  395. this.orderId=orderId
  396. },
  397. // 续费卡确认
  398. handleAffirmClick() {
  399. const data = {
  400. cardId: this.vtCardList.find( item => item.orderId = this.orderId).cardId,
  401. studentId: parseInt(this.studentId),
  402. classId: parseInt(this.classId),
  403. orderId:parseInt(this.orderId)
  404. }
  405. NET.request(API.openRenewalCard, data,'POST').then(res=> {
  406. if(res.status == 10000) {
  407. this.vtCardShow = false
  408. this.$refs.uTips.show({
  409. title: res.message,
  410. type: 'success',
  411. })
  412. this.initialize()
  413. } else {
  414. this.$refs.uTips.show({
  415. title: res.message,
  416. type: 'warning',
  417. })
  418. this.vtCardShow = false
  419. }
  420. })
  421. },
  422. // 选择上传文件类型
  423. selectUploadType(index) {
  424. if (index == 0) {
  425. uni.chooseImage({
  426. count: 1,
  427. success: (res) => {
  428. this.uploadFile(res.tempFilePaths[0])
  429. },
  430. fail: (error) => {
  431. }
  432. });
  433. } else if (index) {
  434. uni.chooseVideo({
  435. count: 1,
  436. success: (res) => {
  437. this.uploadFile(res.tempFilePath)
  438. },
  439. fail: (error) => {
  440. }
  441. });
  442. }
  443. },
  444. // 上传文件
  445. uploadFile(path) {
  446. let that = this
  447. uni.uploadFile({
  448. url: API.uploadFile,
  449. filePath: path,
  450. name: 'file',
  451. header: {
  452. Authorization: uni.getStorageSync('token')
  453. },
  454. success: (uploadFileRes) => {
  455. that.uploadSuccess(JSON.parse(uploadFileRes.data).data.id)
  456. }
  457. });
  458. },
  459. // 文件上传成功回调
  460. uploadSuccess(id) {
  461. NET.request(API.insertClassShow, {
  462. fileId: [id],
  463. id: this.classId,
  464. }, 'POST').then(res => {
  465. this.getClassShow()
  466. this.$refs.uTips.show({
  467. title: '班级近况发布成功',
  468. type: 'success',
  469. })
  470. }).catch(error => {
  471. this.$refs.uTips.show({
  472. title: error.message,
  473. type: 'warning',
  474. })
  475. })
  476. },
  477. // 删除班级近况
  478. deleteClassShow(site) {
  479. NET.request(API.deleteClassShow, {
  480. id: site.id,
  481. }, 'POST').then(res => {
  482. this.getClassShow()
  483. this.$refs.uTips.show({
  484. title: '删除成功',
  485. type: 'success',
  486. })
  487. }).catch(error => {
  488. this.$refs.uTips.show({
  489. title: error.message,
  490. type: 'warning',
  491. })
  492. })
  493. },
  494. // 跳转修改班级
  495. handleUpdateClassClick() {
  496. const form = {
  497. classId: this.classId,
  498. name: this.classInfo.name,
  499. startDate: this.classInfo.classStartDate,
  500. endDate: this.classInfo.classEndDate,
  501. timeReqList: this.classInfo.classExtrasList,
  502. maxStudentCount: this.classInfo.maxStudentCount
  503. }
  504. uni.navigateTo({
  505. url: '/pagesClass/updateClassForm?form=' + encodeURIComponent(JSON.stringify(form))
  506. });
  507. },
  508. // 跳转学生详情
  509. goToStudentInfo(item) {
  510. uni.navigateTo({
  511. url: '/pagesMain/studentInfo?type=1&id=' + item.id + '&classId=' + this.classId
  512. });
  513. },
  514. // 跳转签到表单
  515. goToSignForm() {
  516. uni.removeStorageSync('signUserList')
  517. uni.navigateTo({
  518. url: '/pagesClass/signForm?id=' + this.classId + '&status=' + this.classInfo.signStatus+'&venueId=' + this.classInfo.venueId
  519. });
  520. },
  521. // 跳转续费卡详情
  522. jumpVtCardPage(id) {
  523. uni.navigateTo({
  524. url: `/pagesClass/vtCardInfo?id=${id}`
  525. })
  526. }
  527. },
  528. }
  529. </script>
  530. <style>
  531. page {
  532. width: 100%;
  533. height: 100%;
  534. background-color: #f7f7f7;
  535. position: relative;
  536. }
  537. </style>
  538. <style lang="scss" scoped>
  539. @import "@/static/css/themes.scss";
  540. .content {
  541. width: 100%;
  542. float: left;
  543. padding-bottom: 60px;
  544. .class-info-text {
  545. color: #999999;
  546. line-height: 18px;
  547. u-icon {
  548. margin-right: 4px;
  549. }
  550. }
  551. .class-student-col {
  552. height: 28px;
  553. display: flex;
  554. padding: 0 10px;
  555. line-height: 28px;
  556. color: $mainColor;
  557. white-space: nowrap;
  558. border: 1px solid $mainColor;
  559. border-radius: 5px;
  560. /deep/u-icon {
  561. margin-left: 5px;
  562. }
  563. }
  564. .student-active {
  565. background-color: $mainColor;
  566. color: #FFFFFF;
  567. }
  568. .class-student-box {
  569. display: flex;
  570. justify-content: space-around;
  571. }
  572. .class-show-box {
  573. width: 100%;
  574. float: left;
  575. .class-show-card {
  576. width: calc(50% - 16px);
  577. margin: 0 8px 16px 8px;
  578. float: left;
  579. position: relative;
  580. .class-show-name {
  581. width: 100%;
  582. text-align: center;
  583. line-height: 20px;
  584. font-size: 14px;
  585. margin-top: 5px;
  586. }
  587. .delete-icon {
  588. position: absolute;
  589. right: -5px;
  590. top: -5px;
  591. }
  592. .video-col {
  593. width: 100%;
  594. height: 30vw;
  595. border-radius: 10px;
  596. video {
  597. width: 100%;
  598. height: 30vw;
  599. }
  600. }
  601. }
  602. }
  603. .menber-box {
  604. width: 100%;
  605. // float: left;
  606. padding: 10px 15px;
  607. margin-bottom: 10px;
  608. .menber-col {
  609. width: 100%;
  610. padding: 15px;
  611. margin-bottom: 10px;
  612. display: inline-block;
  613. background-color: #FFFFFF;
  614. border-radius: 15px;
  615. box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  616. position: relative;
  617. overflow: hidden;
  618. box-sizing: border-box;
  619. .menber-label {
  620. width: 100%;
  621. margin-bottom: 5px;
  622. float: left;
  623. font-size: 14px;
  624. // line-height: 20px;
  625. }
  626. .menber-num {
  627. width: 100%;
  628. float: left;
  629. font-size: 26px;
  630. line-height: 28px;
  631. color: $mainColor;
  632. }
  633. .menber-icon {
  634. font-size: 100px;
  635. color: $mainColor;
  636. position: absolute;
  637. right: -5px;
  638. bottom: -30px;
  639. opacity: 0.5;
  640. }
  641. }
  642. }
  643. .common-title {
  644. width:100%;
  645. text-align: center;
  646. font-size: 20px;
  647. margin: 10px 0;
  648. }
  649. }
  650. </style>