signForm.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <template>
  2. <view class="content">
  3. <u-card :title="'总数(' + studentNum + ')人'" title-size="32" margin="0px 0px 10px 0px" :head-style="cardStyle">
  4. <u-grid :col="3" slot="body" :border="false">
  5. <u-grid-item v-for="(item, index) in studentList" :key="index" :custom-style="gridCustomStyle" @click.native.stop="setSignCheck(item)">
  6. <view class="avatar-box">
  7. <u-avatar :src="item.url" mode="circle" size="160" v-if="item.hasHead == 1"></u-avatar>
  8. <u-upload :custom-btn="true" :max-count="1" :index="index" :multiple="false" :show-progress="false"
  9. :preview-full-image="false" :action="uploadUrl" :header="uploadHeader" @on-success="uploadSuccess" @on-error="uploadError"
  10. @on-remove="uploadRemove" @on-preview-error="uploadPreview" v-else>
  11. <view slot="addBtn" class="slot-btn">
  12. <u-icon name="camera-fill" size="60" color="#999999"></u-icon>
  13. </view>
  14. </u-upload>
  15. <u-icon name="checkmark-circle-fill" v-if="item.state == 1 || item.checked" class="check-icon"></u-icon>
  16. <view class="grid-text">{{item.name}}</view>
  17. </view>
  18. </u-grid-item>
  19. <u-grid-item :custom-style="gridCustomStyle" @click="goToSelectStudent()">
  20. <view class="slot-btn">
  21. <u-icon name="plus" size="60" color="#999999"></u-icon>
  22. </view>
  23. </u-grid-item>
  24. </u-grid>
  25. </u-card>
  26. <view class="handle-fix-box">
  27. <u-button type="warning" shape="circle" :ripple="true" :custom-style="customStyle" @click="submitForm()">
  28. {{status == 0 ? '签到确认' : '今日已签到'}}
  29. <!-- :disabled="status != 0" -->
  30. </u-button>
  31. </view>
  32. <u-top-tips ref="uTips"></u-top-tips>
  33. </view>
  34. </template>
  35. <script>
  36. import {
  37. mapGetters
  38. } from 'vuex'
  39. const NET = require('@/utils/request')
  40. const API = require('@/config/api')
  41. export default {
  42. computed: {
  43. ...mapGetters([
  44. 'mainColor',
  45. 'customStyle',
  46. ])
  47. },
  48. data() {
  49. return {
  50. classId: '',
  51. venueId:'',
  52. status: '',
  53. uploadUrl: API.uploadFile,
  54. uploadHeader: {
  55. Authorization: uni.getStorageSync('token')
  56. },
  57. studentList: [],
  58. cardStyle: {
  59. fontWeight: 'bold'
  60. },
  61. gridCustomStyle: {
  62. padding: '0 2px'
  63. },
  64. studentNum: 0
  65. }
  66. },
  67. onLoad(options) {
  68. this.classId = options.id
  69. this.status = options.status
  70. this.venueId = options.venueId
  71. },
  72. onShow() {
  73. this.initialize()
  74. },
  75. methods: {
  76. // 获取初始化数据
  77. initialize() {
  78. NET.request(API.getSignStudentList, {
  79. id: this.classId
  80. }, 'POST').then(res => {
  81. res.data.forEach(site => site.checked = false)
  82. this.studentList = res.data
  83. const checkedList = uni.getStorageSync('signUserList').length ? uni.getStorageSync('signUserList') : []
  84. checkedList.forEach(
  85. checkedItem => {
  86. if(this.studentList.filter(item=>checkedItem.id==item.id).length==0){
  87. this.studentList.push(checkedItem)
  88. }
  89. }
  90. )
  91. this.studentNum = this.studentList.length
  92. }).catch(error => {
  93. this.$refs.uTips.show({
  94. title: error.message,
  95. type: 'warning',
  96. })
  97. })
  98. },
  99. // 文件上传成功回调
  100. uploadSuccess(res, index, lists, name) {
  101. this.studentList[name].url = res.data.url
  102. this.studentList[name].fileId = res.data.id
  103. this.$refs.uTips.show({
  104. title: '文件上传成功',
  105. type: 'success',
  106. })
  107. return true
  108. },
  109. // 文件上传失败回调
  110. uploadError(res, index, lists, name) {
  111. this.$refs.uTips.show({
  112. title: '文件上传失败',
  113. type: 'warning',
  114. })
  115. },
  116. // 移除文件回调
  117. uploadRemove(index, lists, name) {
  118. this.studentList[name].url = ''
  119. this.studentList[name].fileId = ''
  120. },
  121. // 预览文件回调
  122. uploadPreview(url, lists, name) {
  123. if (this.status == 0) {
  124. this.studentList[name].checked = this.studentList[name].checked ? false : true
  125. }
  126. },
  127. // 设置是否签到
  128. setSignCheck(item) {
  129. if (this.status == 0) {
  130. item.checked = item.checked ? false : true
  131. }
  132. },
  133. // 跳转选择学生页面
  134. goToSelectStudent() {
  135. uni.navigateTo({
  136. url: '/pagesClass/signStudentList?venueId='+this.venueId
  137. });
  138. },
  139. // 跳转签到表单
  140. goToSignForm() {
  141. uni.navigateTo({
  142. url: '/pagesMember/signForm?id=' + this.classId
  143. });
  144. },
  145. // 提交表单
  146. submitForm() {
  147. NET.request(API.submitSignForm, {
  148. classId: this.classId,
  149. signStudentIdList: this.studentList.filter(site => site.state == 0 && site.checked).map(site => {
  150. if (site.fileId) {
  151. return {
  152. id: site.id,
  153. fileId: site.fileId,
  154. }
  155. } else {
  156. return {
  157. id: site.id,
  158. }
  159. }
  160. })
  161. }, 'POST').then(res => {
  162. this.$refs.uTips.show({
  163. title: '签到成功',
  164. type: 'success',
  165. })
  166. setTimeout(() => {
  167. uni.navigateBack()
  168. }, 1000)
  169. }).catch(error => {
  170. this.$refs.uTips.show({
  171. title: error.message,
  172. type: 'warning',
  173. })
  174. })
  175. },
  176. },
  177. }
  178. </script>
  179. <style>
  180. page {
  181. width: 100%;
  182. height: 100%;
  183. position: relative;
  184. }
  185. </style>
  186. <style lang="scss" scoped>
  187. @import "@/static/css/themes.scss";
  188. .content {
  189. width: 100%;
  190. float: left;
  191. padding-bottom: 60px;
  192. /deep/.u-list-item {
  193. width: 160rpx !important;
  194. height: 160rpx !important;
  195. border-radius: 50% !important;
  196. margin: 0 !important;
  197. }
  198. /deep/.u-avatar__level {
  199. left: 50%;
  200. transform: translateX(-50%);
  201. bottom: -6px !important;
  202. }
  203. /deep/.u-upload {
  204. height: 160rpx !important;
  205. }
  206. .check-icon {
  207. color: $mainColor;
  208. font-size: 20px;
  209. color: #ff6e3e;
  210. font-size: 26px;
  211. position: absolute;
  212. top: 120rpx;
  213. left: 50%;
  214. transform: translateX(-50%);
  215. background: #ffffff;
  216. border-radius: 50%;
  217. }
  218. .avatar-box {
  219. height: 200rpx;
  220. position: relative;
  221. }
  222. .grid-text {
  223. line-height: 40rpx;
  224. text-align: center;
  225. margin-top: 10rpx;
  226. }
  227. .slot-btn {
  228. width: 160rpx;
  229. height: 160rpx;
  230. border-radius: 50%;
  231. border: 1px solid #999999;
  232. display: flex;
  233. justify-content: center;
  234. align-items: center;
  235. }
  236. }
  237. </style>