classDetail.vue 16 KB

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