classDetail.vue 16 KB

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